instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: Who was the Race Winner of the Southern Illinois 100?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (race_winner VARCHAR, event_name VARCHAR)
SELECT race_winner FROM table_name_48 WHERE event_name = "southern illinois 100"
Write a SQL query that answers the following question: At which track did the event Daytona Arca 200 take place?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (track VARCHAR, event_name VARCHAR)
SELECT track FROM table_name_64 WHERE event_name = "daytona arca 200"
Write a SQL query that answers the following question: At which event was Ken Schrader the Race Winner at the Toledo Speedway?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (event_name VARCHAR, race_winner VARCHAR, track VARCHAR)
SELECT event_name FROM table_name_38 WHERE race_winner = "ken schrader" AND track = "toledo speedway"
Write a SQL query that answers the following question: At which track was Frank Kimmel the Pole Winner of the Pennsylvania 200?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (track VARCHAR, pole_winner VARCHAR, event_name VARCHAR)
SELECT track FROM table_name_80 WHERE pole_winner = "frank kimmel" AND event_name = "pennsylvania 200"
Write a SQL query that answers the following question: Steve Wallace was a Race Winner at the Kentucky Speedway on what date?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (date VARCHAR, race_winner VARCHAR, track VARCHAR)
SELECT date FROM table_name_75 WHERE race_winner = "steve wallace" AND track = "kentucky speedway"
Write a SQL query that answers the following question: What is the lowest number of silver owned by a nation that is not ranked number 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (silver INTEGER, rank INTEGER)
SELECT MIN(silver) FROM table_name_41 WHERE rank < 1
Write a SQL query that answers the following question: What is Driver Kimi Räikkönen's number on the grid?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (grid VARCHAR, driver VARCHAR)
SELECT grid FROM table_name_83 WHERE driver = "kimi räikkönen"
Write a SQL query that answers the following question: Which driver had a Part 1 time of 1:13.306?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (driver VARCHAR, part_1 VARCHAR)
SELECT driver FROM table_name_56 WHERE part_1 = "1:13.306"
Write a SQL query that answers the following question: What ride opened after 2011?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (current_name VARCHAR, year_first_opened INTEGER)
SELECT current_name FROM table_name_91 WHERE year_first_opened > 2011
Write a SQL query that answers the following question: Which stadium can hold 63,443 people?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (result VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_97 WHERE attendance = "63,443"
Write a SQL query that answers the following question: Tell me the number of weeks for bye
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (week VARCHAR, date VARCHAR)
SELECT COUNT(week) FROM table_name_5 WHERE date = "bye"
Write a SQL query that answers the following question: Tell me the number of weeks for december 5, 2005
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (week VARCHAR, date VARCHAR)
SELECT COUNT(week) FROM table_name_83 WHERE date = "december 5, 2005"
Write a SQL query that answers the following question: Tell me the start time for december 24, 2005
The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (start_time VARCHAR, date VARCHAR)
SELECT start_time FROM table_name_48 WHERE date = "december 24, 2005"
Write a SQL query that answers the following question: Tell me the result for lincoln financial field december 11, 2005
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (result VARCHAR, venue VARCHAR, date VARCHAR)
SELECT result FROM table_name_90 WHERE venue = "lincoln financial field" AND date = "december 11, 2005"
Write a SQL query that answers the following question: Tell me the total number of years for wins less than 2 and class of 50cc with points of 15
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (year VARCHAR, points VARCHAR, wins VARCHAR, class VARCHAR)
SELECT COUNT(year) FROM table_name_4 WHERE wins < 2 AND class = "50cc" AND points = 15
Write a SQL query that answers the following question: Tell me the year for class of 125cc
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (year VARCHAR, class VARCHAR)
SELECT year FROM table_name_55 WHERE class = "125cc"
Write a SQL query that answers the following question: Tell me the average wins for class of 50cc and rank of 8th
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (wins INTEGER, class VARCHAR, rank VARCHAR)
SELECT AVG(wins) FROM table_name_47 WHERE class = "50cc" AND rank = "8th"
Write a SQL query that answers the following question: Tell me the lowest wins for class of 50cc and team of tomos for year less than 1969
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (wins INTEGER, year VARCHAR, class VARCHAR, team VARCHAR)
SELECT MIN(wins) FROM table_name_9 WHERE class = "50cc" AND team = "tomos" AND year < 1969
Write a SQL query that answers the following question: Which country has the highest bronze amount and a silver amount bigger than 41?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (bronze INTEGER, silver INTEGER)
SELECT MAX(bronze) FROM table_name_65 WHERE silver > 41
Write a SQL query that answers the following question: What is the lowest amount of medals Russia has if they have more than 2 silver medals and less than 4 gold medals?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (total INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR)
SELECT MIN(total) FROM table_name_89 WHERE silver > 2 AND nation = "russia" AND gold < 4
Write a SQL query that answers the following question: How many points did the 2005 1st place team receive?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (points VARCHAR, year VARCHAR)
SELECT points FROM table_name_90 WHERE year = 2005
Write a SQL query that answers the following question: What engine was used by the teams that used a Lola b02/00 chassis and ranked 1st?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (engine VARCHAR, chassis VARCHAR, rank VARCHAR)
SELECT engine FROM table_name_45 WHERE chassis = "lola b02/00" AND rank = "1st"
Write a SQL query that answers the following question: How many years did Team Newman/Haas Racing receive a 1st place ranking?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (year VARCHAR, team VARCHAR, rank VARCHAR)
SELECT COUNT(year) FROM table_name_86 WHERE team = "newman/haas racing" AND rank = "1st"
Write a SQL query that answers the following question: What is the aggregate of place for points being 35?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (place INTEGER, points VARCHAR)
SELECT SUM(place) FROM table_name_52 WHERE points = 35
Write a SQL query that answers the following question: Name the fewest points of 5 place
The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (points INTEGER, place VARCHAR)
SELECT MIN(points) FROM table_name_86 WHERE place = 5
Write a SQL query that answers the following question: Name the total number of places for vicky gordon and points more than 23
The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (place VARCHAR, artist VARCHAR, points VARCHAR)
SELECT COUNT(place) FROM table_name_72 WHERE artist = "vicky gordon" AND points > 23
Write a SQL query that answers the following question: Tell me the opponent for attendance of 68,264
The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_74 WHERE attendance = "68,264"
Write a SQL query that answers the following question: Tell me the sum of week for result of l 24–21
The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (week INTEGER, result VARCHAR)
SELECT SUM(week) FROM table_name_15 WHERE result = "l 24–21"
Write a SQL query that answers the following question: Tell me the result for attendance of 54,462
The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (result VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_32 WHERE attendance = "54,462"
Write a SQL query that answers the following question: Tell me the opponent for attendance of 53,899
The relevant table was constructed using the following SQL : CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_49 WHERE attendance = "53,899"
Write a SQL query that answers the following question: What is the points that is more than 636 and has a value of 50?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_82 (pts_ VARCHAR, b_ VARCHAR, reb_ VARCHAR, no_ VARCHAR, a_ VARCHAR)
SELECT pts_[b_] FROM table_name_82 WHERE reb_[b_] > 636 AND no_[a_] = "50"
Write a SQL query that answers the following question: Which rebound was 8 and has and ast that was less than 57?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (b_ VARCHAR, reb_ INTEGER, no_ VARCHAR, a_ VARCHAR, ast_ VARCHAR)
SELECT AVG(reb_)[b_] FROM table_name_64 WHERE no_[a_] = "8" AND ast_[b_] < 57
Write a SQL query that answers the following question: Tell me the country for ICAO of tjig
The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (country VARCHAR, icao VARCHAR)
SELECT country FROM table_name_84 WHERE icao = "tjig"
Write a SQL query that answers the following question: Tell me the country for san juan
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (country VARCHAR, city VARCHAR)
SELECT country FROM table_name_62 WHERE city = "san juan"
Write a SQL query that answers the following question: Tell me the country for ICAO tjvq
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (country VARCHAR, icao VARCHAR)
SELECT country FROM table_name_14 WHERE icao = "tjvq"
Write a SQL query that answers the following question: Tell me the iata for icao of tjrv
The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (iata VARCHAR, icao VARCHAR)
SELECT iata FROM table_name_2 WHERE icao = "tjrv"
Write a SQL query that answers the following question: Tell me the icao of isla grande
The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (icao VARCHAR, city VARCHAR)
SELECT icao FROM table_name_76 WHERE city = "isla grande"
Write a SQL query that answers the following question: What position does the Colorado Rapids pick after 15 play?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (position VARCHAR, mls_team VARCHAR, pick__number VARCHAR)
SELECT position FROM table_name_35 WHERE mls_team = "colorado rapids" AND pick__number > 15
Write a SQL query that answers the following question: I want to know the events for 106 bands
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (event VARCHAR, acts VARCHAR)
SELECT event FROM table_name_16 WHERE acts = "106 bands"
Write a SQL query that answers the following question: Tell me the nomination for ukraine
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (nomination VARCHAR, country VARCHAR)
SELECT nomination FROM table_name_17 WHERE country = "ukraine"
Write a SQL query that answers the following question: Tell me the nomination for goran paskaljevic
The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (nomination VARCHAR, director VARCHAR)
SELECT nomination FROM table_name_12 WHERE director = "goran paskaljevic"
Write a SQL query that answers the following question: Which FA Cup apps has league goals of 1 with total goals less than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (fa_cup_apps INTEGER, league_goals VARCHAR, total_goals VARCHAR)
SELECT AVG(fa_cup_apps) FROM table_name_47 WHERE league_goals = 1 AND total_goals < 1
Write a SQL query that answers the following question: What is the highest apps total with FA cup apps of 26 with total number of goals larger than 9?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (total_apps INTEGER, fa_cup_apps VARCHAR, total_goals VARCHAR)
SELECT MAX(total_apps) FROM table_name_41 WHERE fa_cup_apps = 26 AND total_goals > 9
Write a SQL query that answers the following question: Which league goals has FA cup apps of 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (league_goals VARCHAR, fa_cup_apps VARCHAR)
SELECT league_goals FROM table_name_39 WHERE fa_cup_apps = 2
Write a SQL query that answers the following question: What FA cup apps has a total larger than 12 and league apps larger than 38, and FA Cup goals larger than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (fa_cup_apps VARCHAR, fa_cup_goals VARCHAR, total_apps VARCHAR, league_apps VARCHAR)
SELECT COUNT(fa_cup_apps) FROM table_name_50 WHERE total_apps > 12 AND league_apps > 38 AND fa_cup_goals > 1
Write a SQL query that answers the following question: What was the total attendance on December 14, 1975 after week 13?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (attendance VARCHAR, date VARCHAR, week VARCHAR)
SELECT COUNT(attendance) FROM table_name_41 WHERE date = "december 14, 1975" AND week > 13
Write a SQL query that answers the following question: What is the sum of all totals with a rank greater than 6, gold greater than 0, and silver greater than 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (total INTEGER, silver VARCHAR, rank VARCHAR, gold VARCHAR)
SELECT SUM(total) FROM table_name_11 WHERE rank > 6 AND gold > 0 AND silver = 2
Write a SQL query that answers the following question: How many values for silver occur when gold is less than 1, the rank is 13, and bronze is greater than 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT COUNT(silver) FROM table_name_70 WHERE gold < 1 AND rank = 13 AND bronze > 2
Write a SQL query that answers the following question: What is the average value of Bronze when silver is 0 and the total is less than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (bronze INTEGER, silver VARCHAR, total VARCHAR)
SELECT AVG(bronze) FROM table_name_18 WHERE silver = 0 AND total < 1
Write a SQL query that answers the following question: What is the lowest value for bronze with a total of 3 and a value for silver greater than 1 while the value of gold is smaller than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (bronze INTEGER, gold VARCHAR, total VARCHAR, silver VARCHAR)
SELECT MIN(bronze) FROM table_name_56 WHERE total = 3 AND silver > 1 AND gold < 1
Write a SQL query that answers the following question: How man values for bronze occur when gold is less than 1, rank is greater than 15, and total is greater than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (bronze VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT COUNT(bronze) FROM table_name_9 WHERE gold < 1 AND rank > 15 AND total > 1
Write a SQL query that answers the following question: Name the position of pick 234
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (position VARCHAR, pick VARCHAR)
SELECT position FROM table_name_67 WHERE pick = "234"
Write a SQL query that answers the following question: Name the team of vitali yeremeyev
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (nhl_team VARCHAR, player VARCHAR)
SELECT nhl_team FROM table_name_97 WHERE player = "vitali yeremeyev"
Write a SQL query that answers the following question: Tell me the result for 2007-09-29
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_98 WHERE date = "2007-09-29"
Write a SQL query that answers the following question: How many weeks have an attendance of 64,116?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (week VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_name_40 WHERE attendance = "64,116"
Write a SQL query that answers the following question: Which date has a week larger than 14?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (date VARCHAR, week INTEGER)
SELECT date FROM table_name_42 WHERE week > 14
Write a SQL query that answers the following question: Which venue has a week smaller than 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (venue VARCHAR, week INTEGER)
SELECT venue FROM table_name_29 WHERE week < 2
Write a SQL query that answers the following question: When was the Metallica: Escape from the Studio show?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (date VARCHAR, event VARCHAR)
SELECT date FROM table_name_28 WHERE event = "metallica: escape from the studio"
Write a SQL query that answers the following question: When is the Monsters of Rock show with 12 bands?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (date VARCHAR, event VARCHAR, acts VARCHAR)
SELECT date FROM table_name_74 WHERE event = "monsters of rock" AND acts = "12 bands"
Write a SQL query that answers the following question: Tell me the result for 15 july
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_22 WHERE date = "15 july"
Write a SQL query that answers the following question: Tell me the number range for 1965-66
The relevant table was constructed using the following SQL : CREATE TABLE table_name_58 (no_range VARCHAR, year_built__converted VARCHAR, _ VARCHAR)
SELECT no_range FROM table_name_58 WHERE year_built__converted * _ = "1965-66"
Write a SQL query that answers the following question: Tell me the year built for withdrawn of 1983
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (year_built__converted VARCHAR, _ VARCHAR, withdrawn VARCHAR)
SELECT year_built__converted * _ FROM table_name_19 WHERE withdrawn = 1983
Write a SQL query that answers the following question: Tell me the year built for number built of 10
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (year_built__converted VARCHAR, _ VARCHAR, no_built__converted VARCHAR)
SELECT year_built__converted * _ FROM table_name_14 WHERE no_built__converted * _ = "10"
Write a SQL query that answers the following question: Tell me the result for 2008-12-23
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_61 WHERE date = "2008-12-23"
Write a SQL query that answers the following question: Tell me the director nominated for best actor in a leading role
The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (director VARCHAR, nomination VARCHAR)
SELECT director FROM table_name_73 WHERE nomination = "best actor in a leading role"
Write a SQL query that answers the following question: Tell me the nomination for peresohla zemlia
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (nomination VARCHAR, film_name VARCHAR)
SELECT nomination FROM table_name_41 WHERE film_name = "peresohla zemlia"
Write a SQL query that answers the following question: What are the average laps driven in the GT class?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (laps INTEGER, class VARCHAR)
SELECT AVG(laps) FROM table_name_45 WHERE class = "gt"
Write a SQL query that answers the following question: I want the tsongas of may 22, 2007
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (tsongas__d_ VARCHAR, date VARCHAR)
SELECT tsongas__d_ FROM table_name_45 WHERE date = "may 22, 2007"
Write a SQL query that answers the following question: Tell me the venue for winner of nevada and year more than 2004
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (venue VARCHAR, winner VARCHAR, year VARCHAR)
SELECT venue FROM table_name_7 WHERE winner = "nevada" AND year > 2004
Write a SQL query that answers the following question: What date is the 1:00 pm game at arrowhead stadium?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (date VARCHAR, time___et__ VARCHAR, game_site VARCHAR)
SELECT date FROM table_name_37 WHERE time___et__ = "1:00 pm" AND game_site = "arrowhead stadium"
Write a SQL query that answers the following question: Where will the game at (ET) of 7:00 pm be at?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (game_site VARCHAR, time___et__ VARCHAR)
SELECT game_site FROM table_name_2 WHERE time___et__ = "7:00 pm"
Write a SQL query that answers the following question: Who is the Driver that has a Laps smaller than 498, less than 58 points, a car number bigger than 22 and who has won $93,514?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (driver VARCHAR, winnings VARCHAR, car__number VARCHAR, laps VARCHAR, points VARCHAR)
SELECT driver FROM table_name_15 WHERE laps < 498 AND points < 58 AND car__number > 22 AND winnings = "$93,514"
Write a SQL query that answers the following question: At what location was there a loss on 20 jan?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (location VARCHAR, result VARCHAR, date VARCHAR)
SELECT location FROM table_name_98 WHERE result = "loss" AND date = "20 jan"
Write a SQL query that answers the following question: Tell me the venue for record of 2-7
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (venue VARCHAR, record VARCHAR)
SELECT venue FROM table_name_39 WHERE record = "2-7"
Write a SQL query that answers the following question: Tell me the result for green bay packers
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_77 WHERE opponent = "green bay packers"
Write a SQL query that answers the following question: Tell mem the opponent for result of w 31-21
The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_52 WHERE result = "w 31-21"
Write a SQL query that answers the following question: What is the average speed of rider Peter Williams?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_44 (speed VARCHAR, rider VARCHAR)
SELECT speed FROM table_name_44 WHERE rider = "peter williams"
Write a SQL query that answers the following question: What is the time/s of team Triumph in those races in which Triumph ranked higher than 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_44 (time VARCHAR, team VARCHAR, rank VARCHAR)
SELECT time FROM table_name_44 WHERE team = "triumph" AND rank < 4
Write a SQL query that answers the following question: What was the score in 1969?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (score VARCHAR, year VARCHAR)
SELECT score FROM table_name_9 WHERE year = "1969"
Write a SQL query that answers the following question: In 1975, what was the final round?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_1 (final_round VARCHAR, year VARCHAR)
SELECT final_round FROM table_name_1 WHERE year = "1975"
Write a SQL query that answers the following question: Where did someone run a 61:32
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (event_place VARCHAR, time VARCHAR)
SELECT event_place FROM table_name_61 WHERE time = "61:32"
Write a SQL query that answers the following question: What was Derek Graham's time?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (time VARCHAR, name VARCHAR)
SELECT time FROM table_name_95 WHERE name = "derek graham"
Write a SQL query that answers the following question: Where did someone run a 58:33?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (event_place VARCHAR, time VARCHAR)
SELECT event_place FROM table_name_25 WHERE time = "58:33"
Write a SQL query that answers the following question: Tell me the player for pick number less than 29 and mls team of chicago fire
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (player VARCHAR, pick__number VARCHAR, mls_team VARCHAR)
SELECT player FROM table_name_97 WHERE pick__number < 29 AND mls_team = "chicago fire"
Write a SQL query that answers the following question: Tell me the opponents for partner of yvonne meusburger
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (opponents VARCHAR, partner VARCHAR)
SELECT opponents FROM table_name_21 WHERE partner = "yvonne meusburger"
Write a SQL query that answers the following question: Tell me the date for opponents of raffaella bindi biljana pawlowa-dimitrova
The relevant table was constructed using the following SQL : CREATE TABLE table_name_46 (date VARCHAR, opponents VARCHAR)
SELECT date FROM table_name_46 WHERE opponents = "raffaella bindi biljana pawlowa-dimitrova"
Write a SQL query that answers the following question: Tell me the highest time for heat rank of 8 and lane more than 2
The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (time INTEGER, heat_rank VARCHAR, lane VARCHAR)
SELECT MAX(time) FROM table_name_48 WHERE heat_rank = 8 AND lane > 2
Write a SQL query that answers the following question: Tell me the least time for apostolos tsagkarakis for lane less than 6
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (time INTEGER, swimmer VARCHAR, lane VARCHAR)
SELECT MIN(time) FROM table_name_63 WHERE swimmer = "apostolos tsagkarakis" AND lane < 6
Write a SQL query that answers the following question: Tell me the method for pride 33
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (method VARCHAR, event VARCHAR)
SELECT method FROM table_name_28 WHERE event = "pride 33"
Write a SQL query that answers the following question: Tell me the lowest round for total combat 15
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (round INTEGER, event VARCHAR)
SELECT MIN(round) FROM table_name_97 WHERE event = "total combat 15"
Write a SQL query that answers the following question: Tell me the week for pittsburgh steelers opponent
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (week VARCHAR, opponent VARCHAR)
SELECT week FROM table_name_34 WHERE opponent = "pittsburgh steelers"
Write a SQL query that answers the following question: Tell me the week for record of 0-1
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (week VARCHAR, record VARCHAR)
SELECT week FROM table_name_19 WHERE record = "0-1"
Write a SQL query that answers the following question: Tell me the time for buffalo bills
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (time VARCHAR, opponent VARCHAR)
SELECT time FROM table_name_9 WHERE opponent = "buffalo bills"
Write a SQL query that answers the following question: Tell me thee record for week of hf
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (record VARCHAR, week VARCHAR)
SELECT record FROM table_name_87 WHERE week = "hf"
Write a SQL query that answers the following question: Tell me the game site for week of 1
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (game_site VARCHAR, week VARCHAR)
SELECT game_site FROM table_name_98 WHERE week = "1"
Write a SQL query that answers the following question: What was the result of the 1990 world cup qualifying competition?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (result VARCHAR, competition VARCHAR)
SELECT result FROM table_name_55 WHERE competition = "1990 world cup qualifying"
Write a SQL query that answers the following question: What was the Score of the match in Torrance, California?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (score VARCHAR, venue VARCHAR)
SELECT score FROM table_name_92 WHERE venue = "torrance, california"
Write a SQL query that answers the following question: Tell me the score for international friendly 17 august 2013
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (score VARCHAR, type VARCHAR, date VARCHAR)
SELECT score FROM table_name_70 WHERE type = "international friendly" AND date = "17 august 2013"
Write a SQL query that answers the following question: What position did the MLS team metrostars pick?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (position VARCHAR, mls_team VARCHAR)
SELECT position FROM table_name_84 WHERE mls_team = "metrostars"
Write a SQL query that answers the following question: What MLS team is affiliated with yale university?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (mls_team VARCHAR, affiliation VARCHAR)
SELECT mls_team FROM table_name_97 WHERE affiliation = "yale university"