answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT total FROM table_name_75 WHERE set_1 = "14–25"
CREATE TABLE table_name_75 (total VARCHAR, set_1 VARCHAR)
What is the total when the score for set 1 is 14–25?
SELECT total FROM table_name_21 WHERE set_2 = "20–25"
CREATE TABLE table_name_21 (total VARCHAR, set_2 VARCHAR)
What is the total when the score for set 2 is 20–25?
SELECT total FROM table_name_86 WHERE set_2 = "25–22"
CREATE TABLE table_name_86 (total VARCHAR, set_2 VARCHAR)
What is the total when the score for set 2 is 25–22?
SELECT price FROM table_name_20 WHERE downstream = "150 mbps"
CREATE TABLE table_name_20 (price VARCHAR, downstream VARCHAR)
What is the price of 150 mbps downstread?
SELECT upstream FROM table_name_1 WHERE price = "65 chf"
CREATE TABLE table_name_1 (upstream VARCHAR, price VARCHAR)
What is the upstream with the price 65 chf?
SELECT price FROM table_name_63 WHERE internet_plan = "internet 150"
CREATE TABLE table_name_63 (price VARCHAR, internet_plan VARCHAR)
What is the price of the internet 150 plans?
SELECT upstream FROM table_name_82 WHERE downstream = "100 mbps"
CREATE TABLE table_name_82 (upstream VARCHAR, downstream VARCHAR)
What is the upstream for the 100 mbps downstream?
SELECT price FROM table_name_22 WHERE downstream = "60 mbps"
CREATE TABLE table_name_22 (price VARCHAR, downstream VARCHAR)
What is the price of 60 mbps downstream?
SELECT upstream FROM table_name_42 WHERE internet_plan = "internet 100"
CREATE TABLE table_name_42 (upstream VARCHAR, internet_plan VARCHAR)
What is the upstream for the internet 100 plans?
SELECT club_team FROM table_name_12 WHERE round < 4
CREATE TABLE table_name_12 (club_team VARCHAR, round INTEGER)
Which club team was the player from who was selected in a round under 4?
SELECT club_team FROM table_name_98 WHERE player = "kyle de coste"
CREATE TABLE table_name_98 (club_team VARCHAR, player VARCHAR)
What was the club team for Kyle de Coste?
SELECT MAX(w_plyf) FROM table_name_99 WHERE first_yr < 1960 AND g_plyf > 0 AND g_ > _500 < 43 AND w_l_percentage < 0.578
CREATE TABLE table_name_99 (w_plyf INTEGER, w_l_percentage VARCHAR, first_yr VARCHAR, g_plyf VARCHAR, g_ VARCHAR, _500 VARCHAR)
What is the highest w plyf with a first yr before 1960, a G plyf greater than 0, a G > .500 less than 43, and a w-l% less than 0.578?
SELECT SUM(yr_plyf) FROM table_name_6 WHERE g_plyf = 0 AND coach = "ed robinson"
CREATE TABLE table_name_6 (yr_plyf INTEGER, g_plyf VARCHAR, coach VARCHAR)
What is the sum of the yr plyf of coach ed robinson, who has a G plyf of 0?
SELECT COUNT(yr_plyf) FROM table_name_56 WHERE g_plyf < 0
CREATE TABLE table_name_56 (yr_plyf VARCHAR, g_plyf INTEGER)
What is the total number of yr plyf with a G plyf less than 0?
SELECT coach FROM table_name_51 WHERE w_l_percentage > 0.516 AND first_yr < 1925 AND yr_plyf > 2 AND last_yr = 1967
CREATE TABLE table_name_51 (coach VARCHAR, last_yr VARCHAR, yr_plyf VARCHAR, w_l_percentage VARCHAR, first_yr VARCHAR)
Who is the coach with a w-l% greater than 0.516, a first yr before 1925, a yr plyf greater than 2, and a last yr in 1967?
SELECT AVG(last_yr) FROM table_name_98 WHERE l_plyf < 0
CREATE TABLE table_name_98 (last_yr INTEGER, l_plyf INTEGER)
What is the average last yr with an l plyf less than 0?
SELECT MIN(last_yr) FROM table_name_97 WHERE yr_plyf < 0
CREATE TABLE table_name_97 (last_yr INTEGER, yr_plyf INTEGER)
What is the earliest last year with a yr plyf less than 0?
SELECT to_par FROM table_name_59 WHERE score = 69 - 70 = 139
CREATE TABLE table_name_59 (to_par VARCHAR, score VARCHAR)
What is the To par of the Player with a Score of 69-70=139?
SELECT to_par FROM table_name_43 WHERE place = "t3" AND player = "bob gilder"
CREATE TABLE table_name_43 (to_par VARCHAR, place VARCHAR, player VARCHAR)
What is Bob Gilder in Place T3's To par?
SELECT high_points FROM table_name_19 WHERE game < 82 AND location_attendance = "quicken loans arena 20,562" AND high_rebounds = "ΕΎydrΕ«nas ilgauskas (13)"
CREATE TABLE table_name_19 (high_points VARCHAR, high_rebounds VARCHAR, game VARCHAR, location_attendance VARCHAR)
What is High Points, when Game is less than 82, when Location Attendance is "Quicken Loans Arena 20,562", and when High Rebounds is "Ε½ydrΕ«nas Ilgauskas (13)"?
SELECT MIN(game) FROM table_name_11 WHERE high_assists = "maurice williams (8)"
CREATE TABLE table_name_11 (game INTEGER, high_assists VARCHAR)
What is the lowest Game, when High Assists is "Maurice Williams (8)"?
SELECT MIN(game) FROM table_name_95 WHERE date = "april 12"
CREATE TABLE table_name_95 (game INTEGER, date VARCHAR)
What is the lowest Game, when Date is "April 12"?
SELECT winner FROM table_name_43 WHERE date = "5 sep"
CREATE TABLE table_name_43 (winner VARCHAR, date VARCHAR)
What is Winner, when Date is 5 Sep?
SELECT team FROM table_name_96 WHERE circuit = "queensland raceway" AND winner = "garth tander"
CREATE TABLE table_name_96 (team VARCHAR, circuit VARCHAR, winner VARCHAR)
What is Team, when Circuit is Queensland Raceway, and when Winner is Garth Tander?
SELECT date FROM table_name_40 WHERE team = "holden racing team" AND circuit = "eastern creek raceway"
CREATE TABLE table_name_40 (date VARCHAR, team VARCHAR, circuit VARCHAR)
What is Date, when Team is Holden Racing Team, and when Circuit is Eastern Creek Raceway?
SELECT team FROM table_name_1 WHERE circuit = "phillip island grand prix circuit"
CREATE TABLE table_name_1 (team VARCHAR, circuit VARCHAR)
What is Team, when Circuit is Phillip Island Grand Prix Circuit?
SELECT circuit FROM table_name_26 WHERE series = "astc round 4"
CREATE TABLE table_name_26 (circuit VARCHAR, series VARCHAR)
What is Circuit, when Series is ASTC Round 4?
SELECT COUNT(react) FROM table_name_78 WHERE name = "sean wroe" AND lane > 2
CREATE TABLE table_name_78 (react VARCHAR, name VARCHAR, lane VARCHAR)
What is the total number of React, when Name is Sean Wroe, and when Lane is greater than 2?
SELECT MAX(lane) FROM table_name_44 WHERE mark = "46.65" AND react > 0.251
CREATE TABLE table_name_44 (lane INTEGER, mark VARCHAR, react VARCHAR)
What is the highest Lane, when Mark is 46.65, and when React is greater than 0.251?
SELECT MIN(react) FROM table_name_61 WHERE mark = "46.26 sb" AND lane > 6
CREATE TABLE table_name_61 (react INTEGER, mark VARCHAR, lane VARCHAR)
What is the lowest React, when Mark is 46.26 sb, and when Lane is greater than 6?
SELECT mark FROM table_name_44 WHERE lane > 2 AND country = "bahamas"
CREATE TABLE table_name_44 (mark VARCHAR, lane VARCHAR, country VARCHAR)
What is Mark, when Lane is greater than 2, and when Country is Bahamas?
SELECT number FROM table_name_11 WHERE language = "belarusian"
CREATE TABLE table_name_11 (number VARCHAR, language VARCHAR)
What is the number of the belarusian language?
SELECT number FROM table_name_91 WHERE percentage___percentage_ = "80.62"
CREATE TABLE table_name_91 (number VARCHAR, percentage___percentage_ VARCHAR)
What is the number with an 80.62 percentage?
SELECT males FROM table_name_82 WHERE percentage___percentage_ = "80.62"
CREATE TABLE table_name_82 (males VARCHAR, percentage___percentage_ VARCHAR)
How many males have a percentage of 80.62?
SELECT name FROM table_name_8 WHERE team = "new york knicks" AND wsu_year_s_ = "1965-68"
CREATE TABLE table_name_8 (name VARCHAR, team VARCHAR, wsu_year_s_ VARCHAR)
What is Name, when Team is New York Knicks, and when WSU Year(s) is 1965-68?
SELECT name FROM table_name_89 WHERE wsu_year_s_ = "1981-82"
CREATE TABLE table_name_89 (name VARCHAR, wsu_year_s_ VARCHAR)
What is Name, when WSU Year(s) is 1981-82?
SELECT wsu_year_s_ FROM table_name_88 WHERE pro_year_s_ = "1974-77"
CREATE TABLE table_name_88 (wsu_year_s_ VARCHAR, pro_year_s_ VARCHAR)
What is WSU Year(s), when Pro Year(s) is 1974-77?
SELECT pro_year_s_ FROM table_name_79 WHERE team = "cincinnati royals"
CREATE TABLE table_name_79 (pro_year_s_ VARCHAR, team VARCHAR)
What is Pro Year(s), when Team is Cincinnati Royals?
SELECT position FROM table_name_77 WHERE team = "cincinnati royals"
CREATE TABLE table_name_77 (position VARCHAR, team VARCHAR)
What is Position, when Team is Cincinnati Royals?
SELECT name FROM table_name_3 WHERE team = "detroit pistons" AND wsu_year_s_ = "1979-82"
CREATE TABLE table_name_3 (name VARCHAR, team VARCHAR, wsu_year_s_ VARCHAR)
What is Name, when Team is Detroit Pistons, and when WSU Year(s) is 1979-82?
SELECT position FROM table_name_84 WHERE overall < 314 AND pick < 8
CREATE TABLE table_name_84 (position VARCHAR, overall VARCHAR, pick VARCHAR)
What is Position, when Overallis less than 314, and when Pick is less than 8?
SELECT AVG(overall) FROM table_name_8 WHERE round > 11 AND pick > 10
CREATE TABLE table_name_8 (overall INTEGER, round VARCHAR, pick VARCHAR)
What is the average value of Overall, when Round is greater than 11, and when Pick is greater than 10?
SELECT name FROM table_name_59 WHERE overall > 132 AND round = 12
CREATE TABLE table_name_59 (name VARCHAR, overall VARCHAR, round VARCHAR)
What is Name, when Overall is greater than 132, and when Round is 12?
SELECT college FROM table_name_18 WHERE pick = 20
CREATE TABLE table_name_18 (college VARCHAR, pick VARCHAR)
What is College, when Pick is 20?
SELECT AVG(overall) FROM table_name_80 WHERE pick = 19
CREATE TABLE table_name_80 (overall INTEGER, pick VARCHAR)
What is average Overall, when Pick is 19?
SELECT AVG(pick) FROM table_name_29 WHERE round > 3 AND college = "princeton"
CREATE TABLE table_name_29 (pick INTEGER, round VARCHAR, college VARCHAR)
What is the average pick for Princeton after round 3?
SELECT MIN(round) FROM table_name_86 WHERE college = "clark"
CREATE TABLE table_name_86 (round INTEGER, college VARCHAR)
What is the earliest round Clark was in?
SELECT tie_no FROM table_name_12 WHERE home_team = "gillingham"
CREATE TABLE table_name_12 (tie_no VARCHAR, home_team VARCHAR)
What is the tie number when the home team was gillingham?
SELECT score FROM table_name_84 WHERE home_team = "goole town"
CREATE TABLE table_name_84 (score VARCHAR, home_team VARCHAR)
What was the score when the home team was goole town?
SELECT date FROM table_name_30 WHERE home_team = "brentford"
CREATE TABLE table_name_30 (date VARCHAR, home_team VARCHAR)
What date had the home team as brentford?
SELECT tie_no FROM table_name_96 WHERE away_team = "bradford park avenue"
CREATE TABLE table_name_96 (tie_no VARCHAR, away_team VARCHAR)
What was the tie number when bradford park avenue was the away team?
SELECT house_1950 FROM table_name_39 WHERE governors_1950 = "governors 1995"
CREATE TABLE table_name_39 (house_1950 VARCHAR, governors_1950 VARCHAR)
What shows for House 1950 when the Governors 1950 show governors 1995?
SELECT house_1950 FROM table_name_19 WHERE general_1950 = "general 1986"
CREATE TABLE table_name_19 (house_1950 VARCHAR, general_1950 VARCHAR)
What shows for House 1950 when the General 1950 is general 1986?
SELECT governors_1950 FROM table_name_46 WHERE general_1950 = "general 1979"
CREATE TABLE table_name_46 (governors_1950 VARCHAR, general_1950 VARCHAR)
What is the Governors 1950 when the General 1950 is general 1979?
SELECT house_1950 FROM table_name_17 WHERE 1950 < 1980 AND governors_1950 = "governors 1970"
CREATE TABLE table_name_17 (house_1950 VARCHAR, governors_1950 VARCHAR)
What shows for House 1950 with a 1950 less than 1980, and Governors 1950 of governors 1970?
SELECT month FROM table_name_83 WHERE year < 1973 AND album = "united we stand"
CREATE TABLE table_name_83 (month VARCHAR, year VARCHAR, album VARCHAR)
What month before 1973 is listed for the album united we stand?
SELECT name_of_the_river FROM table_name_31 WHERE name_of_the_state_where_found_in_india = "madhya pradesh"
CREATE TABLE table_name_31 (name_of_the_river VARCHAR, name_of_the_state_where_found_in_india VARCHAR)
What is the name of the river found in Madhya Pradesh, India?
SELECT name_of_deity FROM table_name_29 WHERE name_of_the_state_where_found_in_india = "bihar"
CREATE TABLE table_name_29 (name_of_deity VARCHAR, name_of_the_state_where_found_in_india VARCHAR)
What is the name of the deity that the state of Bihar was named after?
SELECT name_of_deity FROM table_name_16 WHERE name_of_the_river = "sone"
CREATE TABLE table_name_16 (name_of_deity VARCHAR, name_of_the_river VARCHAR)
What is the name of the diety for the river of sone?
SELECT name_of_the_stone__sila_ FROM table_name_13 WHERE name_of_the_state_where_found_in_india = "andhra pradesh"
CREATE TABLE table_name_13 (name_of_the_stone__sila_ VARCHAR, name_of_the_state_where_found_in_india VARCHAR)
What is the name of the stone found in Andhra Pradesh, India?
SELECT date FROM table_name_26 WHERE score = "103-94"
CREATE TABLE table_name_26 (date VARCHAR, score VARCHAR)
What date was the game score 103-94?
SELECT away_team FROM table_name_12 WHERE home_team = "perth wildcats"
CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR)
Who is the away team that played home team of Perth Wildcats?
SELECT score FROM table_name_29 WHERE date = "29 november" AND venue = "state sports centre"
CREATE TABLE table_name_29 (score VARCHAR, date VARCHAR, venue VARCHAR)
What is the score of the game that was played on 29 November at State Sports Centre?
SELECT date FROM table_name_14 WHERE home_team = "gold coast blaze"
CREATE TABLE table_name_14 (date VARCHAR, home_team VARCHAR)
What date did home team Gold Coast Blaze play?
SELECT report FROM table_name_89 WHERE date = "29 november" AND away_team = "melbourne tigers"
CREATE TABLE table_name_89 (report VARCHAR, date VARCHAR, away_team VARCHAR)
What kind of report was for the game played on 29 November with Melbourne Tigers being the away team?
SELECT away_team FROM table_name_82 WHERE home_team = "perth wildcats"
CREATE TABLE table_name_82 (away_team VARCHAR, home_team VARCHAR)
Who is the away team that played home team Perth Wildcats?
SELECT opponent FROM table_name_79 WHERE week = 11
CREATE TABLE table_name_79 (opponent VARCHAR, week VARCHAR)
Who did they play in week 11?
SELECT date FROM table_name_36 WHERE week = 6
CREATE TABLE table_name_36 (date VARCHAR, week VARCHAR)
What day did they play in week 6?
SELECT date FROM table_name_52 WHERE score = "3-1" AND attendance = "32 590"
CREATE TABLE table_name_52 (date VARCHAR, score VARCHAR, attendance VARCHAR)
Name the Date which has a Score of 3-1 and Attendances of 32 590?
SELECT venue FROM table_name_68 WHERE date = "2004-07-24"
CREATE TABLE table_name_68 (venue VARCHAR, date VARCHAR)
Which Venue is on 2004-07-24?
SELECT score FROM table_name_31 WHERE venue = "idrottsparken"
CREATE TABLE table_name_31 (score VARCHAR, venue VARCHAR)
Which Score has a Venue of idrottsparken?
SELECT comp FROM table_name_84 WHERE date = "2004-10-17"
CREATE TABLE table_name_84 (comp VARCHAR, date VARCHAR)
Which Comp is on 2004-10-17?
SELECT venue FROM table_name_84 WHERE opponents = "halmstad" AND score = "1-1"
CREATE TABLE table_name_84 (venue VARCHAR, opponents VARCHAR, score VARCHAR)
Which Venue has a Opponents of halmstad and a Score of 1-1?
SELECT attendance FROM table_name_66 WHERE venue = "ryavallen"
CREATE TABLE table_name_66 (attendance VARCHAR, venue VARCHAR)
Which Attendance that has a Venue of ryavallen?
SELECT tournament FROM table_name_63 WHERE outcome = "winner" AND date = "13 july 2013"
CREATE TABLE table_name_63 (tournament VARCHAR, outcome VARCHAR, date VARCHAR)
What is Tournament, when Outcome is Winner, and when Date is 13 July 2013?
SELECT date FROM table_name_68 WHERE outcome = "winner" AND opponent = "an-sophie mestach"
CREATE TABLE table_name_68 (date VARCHAR, outcome VARCHAR, opponent VARCHAR)
What is Date, when Outcome is Winner, and when Opponent is An-Sophie Mestach?
SELECT score FROM table_name_65 WHERE date = "10 july 2011"
CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)
What is Score, when Date is 10 July 2011?
SELECT network FROM table_name_3 WHERE play_by_play = "jack edwards" AND year = 2000
CREATE TABLE table_name_3 (network VARCHAR, play_by_play VARCHAR, year VARCHAR)
What network has a Play-by-play by Jack Edwards in 2000?
SELECT pregame_host FROM table_name_98 WHERE network = "bold"
CREATE TABLE table_name_98 (pregame_host VARCHAR, network VARCHAR)
What is the name of the pregame host when Bold was the network?
SELECT play_by_play FROM table_name_11 WHERE color_commentator_s_ = "eric wynalda" AND year < 2005
CREATE TABLE table_name_11 (play_by_play VARCHAR, color_commentator_s_ VARCHAR, year VARCHAR)
What was the Play-by-play when the color commentator was Eric Wynalda, earlier than 2005?
SELECT pregame_host FROM table_name_67 WHERE play_by_play = "jp dellacamera" AND year < 2009 AND color_commentator_s_ = "ty keough"
CREATE TABLE table_name_67 (pregame_host VARCHAR, color_commentator_s_ VARCHAR, play_by_play VARCHAR, year VARCHAR)
What is the name of the pregame host when the Play-by-play was by JP Dellacamera, earlier than 2009, and Color commentator(s) was Ty Keough?
SELECT date FROM table_name_88 WHERE score = "3–0" AND set_1 = "25–22"
CREATE TABLE table_name_88 (date VARCHAR, score VARCHAR, set_1 VARCHAR)
What date was the score 3–0, and set 1 was 25–22?
SELECT date FROM table_name_31 WHERE total = "56–75"
CREATE TABLE table_name_31 (date VARCHAR, total VARCHAR)
What date was the total 56–75?
SELECT set_1 FROM table_name_34 WHERE set_3 = "25–15"
CREATE TABLE table_name_34 (set_1 VARCHAR, set_3 VARCHAR)
What is the Set 1 when Set 3 was 25–15?
SELECT date FROM table_name_42 WHERE total = "75–45"
CREATE TABLE table_name_42 (date VARCHAR, total VARCHAR)
What date was the total 75–45?
SELECT SUM(december) FROM table_name_88 WHERE opponent = "atlanta flames" AND game < 40
CREATE TABLE table_name_88 (december INTEGER, opponent VARCHAR, game VARCHAR)
What is the sum of the dates in december that were against the atlanta flames before game 40?
SELECT score FROM table_name_59 WHERE game > 26 AND opponent = "montreal canadiens"
CREATE TABLE table_name_59 (score VARCHAR, game VARCHAR, opponent VARCHAR)
What was the score of the game against montreal canadiens after game 26?
SELECT MIN(round) FROM table_name_6 WHERE player = "grant long"
CREATE TABLE table_name_6 (round INTEGER, player VARCHAR)
In what Round was Grant Long Drafted?
SELECT player FROM table_name_70 WHERE school_club_team = "memphis"
CREATE TABLE table_name_70 (player VARCHAR, school_club_team VARCHAR)
What is the Player from Memphis?
SELECT player FROM table_name_58 WHERE pick > 33 AND round > 2
CREATE TABLE table_name_58 (player VARCHAR, pick VARCHAR, round VARCHAR)
What Player was picked after Round 2 with a Pick number larger than 33?
SELECT AVG(round) FROM table_name_75 WHERE school_club_team = "memphis"
CREATE TABLE table_name_75 (round INTEGER, school_club_team VARCHAR)
In what Round was the Memphis Player drafted?
SELECT school_club_team FROM table_name_22 WHERE years_for_grizzlies = "2006-2009"
CREATE TABLE table_name_22 (school_club_team VARCHAR, years_for_grizzlies VARCHAR)
Which School/Club Team holds the 2006-2009 Years of Grizzlies ?
SELECT player FROM table_name_14 WHERE years_for_grizzlies = "1998-2000"
CREATE TABLE table_name_14 (player VARCHAR, years_for_grizzlies VARCHAR)
Who was the Player in the 1998-2000 Year of Grizzlies?
SELECT nationality FROM table_name_54 WHERE years_for_grizzlies = "1998-2000"
CREATE TABLE table_name_54 (nationality VARCHAR, years_for_grizzlies VARCHAR)
What is the Nationality of the 1998-2000 Years for Grizzlies?
SELECT player FROM table_name_71 WHERE nationality = "united states" AND position = "small forward" AND years_for_grizzlies = "1999-2002"
CREATE TABLE table_name_71 (player VARCHAR, years_for_grizzlies VARCHAR, nationality VARCHAR, position VARCHAR)
Who was the 1999-2002 Years for Grizzlies small forward Player who was from the United States?
SELECT player FROM table_name_69 WHERE position = "shooting guard"
CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR)
Which Player is the shooting guard?
SELECT location_attendance FROM table_name_65 WHERE game = 44
CREATE TABLE table_name_65 (location_attendance VARCHAR, game VARCHAR)
What is the location and attendance of game 44?
SELECT record FROM table_name_76 WHERE decision = "clemmensen" AND game = 42
CREATE TABLE table_name_76 (record VARCHAR, decision VARCHAR, game VARCHAR)
What is the record of game 42, which had a clemmensen decision?
SELECT country FROM table_name_19 WHERE to_par = "e" AND score = 71 - 73 - 70 - 74 = 288
CREATE TABLE table_name_19 (country VARCHAR, to_par VARCHAR, score VARCHAR)
What country parred E and scored 71-73-70-74=288?
SELECT money___$__ FROM table_name_13 WHERE score = 73 - 71 - 70 - 73 = 287
CREATE TABLE table_name_13 (money___$__ VARCHAR, score VARCHAR)
How much money was scored for 73-71-70-73=287?