question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What was the Play-by-play when the color commentator was Eric Wynalda, earlier than 2005? | CREATE TABLE table_name_11 (play_by_play VARCHAR, color_commentator_s_ VARCHAR, year VARCHAR) | SELECT play_by_play FROM table_name_11 WHERE color_commentator_s_ = "eric wynalda" AND year < 2005 | ### Context: CREATE TABLE table_name_11 (play_by_play VARCHAR, color_commentator_s_ VARCHAR, year VARCHAR) ### Question: What was the Play-by-play when the color commentator was Eric Wynalda, earlier than 2005? ### Answer: SELECT play_by_play FROM table_name_11 WHERE color_commentator_s_ = "eric wynalda" AND year < 2005 |
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? | CREATE TABLE table_name_67 (pregame_host VARCHAR, color_commentator_s_ VARCHAR, play_by_play VARCHAR, year VARCHAR) | SELECT pregame_host FROM table_name_67 WHERE play_by_play = "jp dellacamera" AND year < 2009 AND color_commentator_s_ = "ty keough" | ### Context: CREATE TABLE table_name_67 (pregame_host VARCHAR, color_commentator_s_ VARCHAR, play_by_play VARCHAR, year VARCHAR) ### Question: 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? ### Answer: SELECT pregame_host FROM table_name_67 WHERE play_by_play = "jp dellacamera" AND year < 2009 AND color_commentator_s_ = "ty keough" |
What date was the score 3–0, and set 1 was 25–22? | CREATE TABLE table_name_88 (date VARCHAR, score VARCHAR, set_1 VARCHAR) | SELECT date FROM table_name_88 WHERE score = "3–0" AND set_1 = "25–22" | ### Context: CREATE TABLE table_name_88 (date VARCHAR, score VARCHAR, set_1 VARCHAR) ### Question: What date was the score 3–0, and set 1 was 25–22? ### Answer: SELECT date FROM table_name_88 WHERE score = "3–0" AND set_1 = "25–22" |
What date was the total 56–75? | CREATE TABLE table_name_31 (date VARCHAR, total VARCHAR) | SELECT date FROM table_name_31 WHERE total = "56–75" | ### Context: CREATE TABLE table_name_31 (date VARCHAR, total VARCHAR) ### Question: What date was the total 56–75? ### Answer: SELECT date FROM table_name_31 WHERE total = "56–75" |
What is the Set 1 when Set 3 was 25–15? | CREATE TABLE table_name_34 (set_1 VARCHAR, set_3 VARCHAR) | SELECT set_1 FROM table_name_34 WHERE set_3 = "25–15" | ### Context: CREATE TABLE table_name_34 (set_1 VARCHAR, set_3 VARCHAR) ### Question: What is the Set 1 when Set 3 was 25–15? ### Answer: SELECT set_1 FROM table_name_34 WHERE set_3 = "25–15" |
What date was the total 75–45? | CREATE TABLE table_name_42 (date VARCHAR, total VARCHAR) | SELECT date FROM table_name_42 WHERE total = "75–45" | ### Context: CREATE TABLE table_name_42 (date VARCHAR, total VARCHAR) ### Question: What date was the total 75–45? ### Answer: SELECT date FROM table_name_42 WHERE total = "75–45" |
What is the sum of the dates in december that were against the atlanta flames before game 40? | CREATE TABLE table_name_88 (december INTEGER, opponent VARCHAR, game VARCHAR) | SELECT SUM(december) FROM table_name_88 WHERE opponent = "atlanta flames" AND game < 40 | ### Context: CREATE TABLE table_name_88 (december INTEGER, opponent VARCHAR, game VARCHAR) ### Question: What is the sum of the dates in december that were against the atlanta flames before game 40? ### Answer: SELECT SUM(december) FROM table_name_88 WHERE opponent = "atlanta flames" AND game < 40 |
What was the score of the game against montreal canadiens after game 26? | CREATE TABLE table_name_59 (score VARCHAR, game VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_59 WHERE game > 26 AND opponent = "montreal canadiens" | ### Context: CREATE TABLE table_name_59 (score VARCHAR, game VARCHAR, opponent VARCHAR) ### Question: What was the score of the game against montreal canadiens after game 26? ### Answer: SELECT score FROM table_name_59 WHERE game > 26 AND opponent = "montreal canadiens" |
In what Round was Grant Long Drafted? | CREATE TABLE table_name_6 (round INTEGER, player VARCHAR) | SELECT MIN(round) FROM table_name_6 WHERE player = "grant long" | ### Context: CREATE TABLE table_name_6 (round INTEGER, player VARCHAR) ### Question: In what Round was Grant Long Drafted? ### Answer: SELECT MIN(round) FROM table_name_6 WHERE player = "grant long" |
What is the Player from Memphis? | CREATE TABLE table_name_70 (player VARCHAR, school_club_team VARCHAR) | SELECT player FROM table_name_70 WHERE school_club_team = "memphis" | ### Context: CREATE TABLE table_name_70 (player VARCHAR, school_club_team VARCHAR) ### Question: What is the Player from Memphis? ### Answer: SELECT player FROM table_name_70 WHERE school_club_team = "memphis" |
What Player was picked after Round 2 with a Pick number larger than 33? | CREATE TABLE table_name_58 (player VARCHAR, pick VARCHAR, round VARCHAR) | SELECT player FROM table_name_58 WHERE pick > 33 AND round > 2 | ### Context: CREATE TABLE table_name_58 (player VARCHAR, pick VARCHAR, round VARCHAR) ### Question: What Player was picked after Round 2 with a Pick number larger than 33? ### Answer: SELECT player FROM table_name_58 WHERE pick > 33 AND round > 2 |
In what Round was the Memphis Player drafted? | CREATE TABLE table_name_75 (round INTEGER, school_club_team VARCHAR) | SELECT AVG(round) FROM table_name_75 WHERE school_club_team = "memphis" | ### Context: CREATE TABLE table_name_75 (round INTEGER, school_club_team VARCHAR) ### Question: In what Round was the Memphis Player drafted? ### Answer: SELECT AVG(round) FROM table_name_75 WHERE school_club_team = "memphis" |
Which School/Club Team holds the 2006-2009 Years of Grizzlies ? | CREATE TABLE table_name_22 (school_club_team VARCHAR, years_for_grizzlies VARCHAR) | SELECT school_club_team FROM table_name_22 WHERE years_for_grizzlies = "2006-2009" | ### Context: CREATE TABLE table_name_22 (school_club_team VARCHAR, years_for_grizzlies VARCHAR) ### Question: Which School/Club Team holds the 2006-2009 Years of Grizzlies ? ### Answer: SELECT school_club_team FROM table_name_22 WHERE years_for_grizzlies = "2006-2009" |
Who was the Player in the 1998-2000 Year of Grizzlies? | CREATE TABLE table_name_14 (player VARCHAR, years_for_grizzlies VARCHAR) | SELECT player FROM table_name_14 WHERE years_for_grizzlies = "1998-2000" | ### Context: CREATE TABLE table_name_14 (player VARCHAR, years_for_grizzlies VARCHAR) ### Question: Who was the Player in the 1998-2000 Year of Grizzlies? ### Answer: SELECT player FROM table_name_14 WHERE years_for_grizzlies = "1998-2000" |
What is the Nationality of the 1998-2000 Years for Grizzlies? | CREATE TABLE table_name_54 (nationality VARCHAR, years_for_grizzlies VARCHAR) | SELECT nationality FROM table_name_54 WHERE years_for_grizzlies = "1998-2000" | ### Context: CREATE TABLE table_name_54 (nationality VARCHAR, years_for_grizzlies VARCHAR) ### Question: What is the Nationality of the 1998-2000 Years for Grizzlies? ### Answer: SELECT nationality FROM table_name_54 WHERE years_for_grizzlies = "1998-2000" |
Who was the 1999-2002 Years for Grizzlies small forward Player who was from the United States? | CREATE TABLE table_name_71 (player VARCHAR, years_for_grizzlies VARCHAR, nationality VARCHAR, position VARCHAR) | SELECT player FROM table_name_71 WHERE nationality = "united states" AND position = "small forward" AND years_for_grizzlies = "1999-2002" | ### Context: CREATE TABLE table_name_71 (player VARCHAR, years_for_grizzlies VARCHAR, nationality VARCHAR, position VARCHAR) ### Question: Who was the 1999-2002 Years for Grizzlies small forward Player who was from the United States? ### Answer: SELECT player FROM table_name_71 WHERE nationality = "united states" AND position = "small forward" AND years_for_grizzlies = "1999-2002" |
Which Player is the shooting guard? | CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR) | SELECT player FROM table_name_69 WHERE position = "shooting guard" | ### Context: CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR) ### Question: Which Player is the shooting guard? ### Answer: SELECT player FROM table_name_69 WHERE position = "shooting guard" |
What is the location and attendance of game 44? | CREATE TABLE table_name_65 (location_attendance VARCHAR, game VARCHAR) | SELECT location_attendance FROM table_name_65 WHERE game = 44 | ### Context: CREATE TABLE table_name_65 (location_attendance VARCHAR, game VARCHAR) ### Question: What is the location and attendance of game 44? ### Answer: SELECT location_attendance FROM table_name_65 WHERE game = 44 |
What is the record of game 42, which had a clemmensen decision? | CREATE TABLE table_name_76 (record VARCHAR, decision VARCHAR, game VARCHAR) | SELECT record FROM table_name_76 WHERE decision = "clemmensen" AND game = 42 | ### Context: CREATE TABLE table_name_76 (record VARCHAR, decision VARCHAR, game VARCHAR) ### Question: What is the record of game 42, which had a clemmensen decision? ### Answer: SELECT record FROM table_name_76 WHERE decision = "clemmensen" AND game = 42 |
What country parred E and scored 71-73-70-74=288? | CREATE TABLE table_name_19 (country VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT country FROM table_name_19 WHERE to_par = "e" AND score = 71 - 73 - 70 - 74 = 288 | ### Context: CREATE TABLE table_name_19 (country VARCHAR, to_par VARCHAR, score VARCHAR) ### Question: What country parred E and scored 71-73-70-74=288? ### Answer: SELECT country FROM table_name_19 WHERE to_par = "e" AND score = 71 - 73 - 70 - 74 = 288 |
How much money was scored for 73-71-70-73=287? | CREATE TABLE table_name_13 (money___$__ VARCHAR, score VARCHAR) | SELECT money___$__ FROM table_name_13 WHERE score = 73 - 71 - 70 - 73 = 287 | ### Context: CREATE TABLE table_name_13 (money___$__ VARCHAR, score VARCHAR) ### Question: How much money was scored for 73-71-70-73=287? ### Answer: SELECT money___$__ FROM table_name_13 WHERE score = 73 - 71 - 70 - 73 = 287 |
What country has to par E with Mark O'Meara? | CREATE TABLE table_name_44 (country VARCHAR, to_par VARCHAR, player VARCHAR) | SELECT country FROM table_name_44 WHERE to_par = "e" AND player = "mark o'meara" | ### Context: CREATE TABLE table_name_44 (country VARCHAR, to_par VARCHAR, player VARCHAR) ### Question: What country has to par E with Mark O'Meara? ### Answer: SELECT country FROM table_name_44 WHERE to_par = "e" AND player = "mark o'meara" |
What country placed t6 with player Vijay Singh? | CREATE TABLE table_name_91 (country VARCHAR, place VARCHAR, player VARCHAR) | SELECT country FROM table_name_91 WHERE place = "t6" AND player = "vijay singh" | ### Context: CREATE TABLE table_name_91 (country VARCHAR, place VARCHAR, player VARCHAR) ### Question: What country placed t6 with player Vijay Singh? ### Answer: SELECT country FROM table_name_91 WHERE place = "t6" AND player = "vijay singh" |
How much money did David Toms get? | CREATE TABLE table_name_16 (money___$__ VARCHAR, player VARCHAR) | SELECT money___$__ FROM table_name_16 WHERE player = "david toms" | ### Context: CREATE TABLE table_name_16 (money___$__ VARCHAR, player VARCHAR) ### Question: How much money did David Toms get? ### Answer: SELECT money___$__ FROM table_name_16 WHERE player = "david toms" |
What is the playoffs Game number on April 26? | CREATE TABLE table_name_94 (game VARCHAR, date VARCHAR) | SELECT game FROM table_name_94 WHERE date = "april 26" | ### Context: CREATE TABLE table_name_94 (game VARCHAR, date VARCHAR) ### Question: What is the playoffs Game number on April 26? ### Answer: SELECT game FROM table_name_94 WHERE date = "april 26" |
What is the Score of Game 4? | CREATE TABLE table_name_98 (score VARCHAR, game VARCHAR) | SELECT score FROM table_name_98 WHERE game = "4" | ### Context: CREATE TABLE table_name_98 (score VARCHAR, game VARCHAR) ### Question: What is the Score of Game 4? ### Answer: SELECT score FROM table_name_98 WHERE game = "4" |
What is the playoff Game on April 30? | CREATE TABLE table_name_59 (game VARCHAR, date VARCHAR) | SELECT game FROM table_name_59 WHERE date = "april 30" | ### Context: CREATE TABLE table_name_59 (game VARCHAR, date VARCHAR) ### Question: What is the playoff Game on April 30? ### Answer: SELECT game FROM table_name_59 WHERE date = "april 30" |
What is the Date of the game with a Score of L 115–118 (OT)? | CREATE TABLE table_name_75 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_75 WHERE score = "l 115–118 (ot)" | ### Context: CREATE TABLE table_name_75 (date VARCHAR, score VARCHAR) ### Question: What is the Date of the game with a Score of L 115–118 (OT)? ### Answer: SELECT date FROM table_name_75 WHERE score = "l 115–118 (ot)" |
What was the result when there were 27,321 in attendance? | CREATE TABLE table_name_20 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_20 WHERE attendance = "27,321" | ### Context: CREATE TABLE table_name_20 (result VARCHAR, attendance VARCHAR) ### Question: What was the result when there were 27,321 in attendance? ### Answer: SELECT result FROM table_name_20 WHERE attendance = "27,321" |
What is the number in attendance at Dowdy-Ficklen stadium • Greenville, NC, and the opponent was Ohio? | CREATE TABLE table_name_63 (attendance VARCHAR, site VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_63 WHERE site = "dowdy-ficklen stadium • greenville, nc" AND opponent = "ohio" | ### Context: CREATE TABLE table_name_63 (attendance VARCHAR, site VARCHAR, opponent VARCHAR) ### Question: What is the number in attendance at Dowdy-Ficklen stadium • Greenville, NC, and the opponent was Ohio? ### Answer: SELECT attendance FROM table_name_63 WHERE site = "dowdy-ficklen stadium • greenville, nc" AND opponent = "ohio" |
What date was the game at Dowdy-Ficklen stadium • Greenville, NC, with 27,321 in attendance? | CREATE TABLE table_name_96 (date VARCHAR, site VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_96 WHERE site = "dowdy-ficklen stadium • greenville, nc" AND attendance = "27,321" | ### Context: CREATE TABLE table_name_96 (date VARCHAR, site VARCHAR, attendance VARCHAR) ### Question: What date was the game at Dowdy-Ficklen stadium • Greenville, NC, with 27,321 in attendance? ### Answer: SELECT date FROM table_name_96 WHERE site = "dowdy-ficklen stadium • greenville, nc" AND attendance = "27,321" |
What team was the opponent when there were 27,321 in attendance? | CREATE TABLE table_name_86 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_86 WHERE attendance = "27,321" | ### Context: CREATE TABLE table_name_86 (opponent VARCHAR, attendance VARCHAR) ### Question: What team was the opponent when there were 27,321 in attendance? ### Answer: SELECT opponent FROM table_name_86 WHERE attendance = "27,321" |
What date was the game at Williams-Brice stadium • Columbia, SC? | CREATE TABLE table_name_75 (date VARCHAR, site VARCHAR) | SELECT date FROM table_name_75 WHERE site = "williams-brice stadium • columbia, sc" | ### Context: CREATE TABLE table_name_75 (date VARCHAR, site VARCHAR) ### Question: What date was the game at Williams-Brice stadium • Columbia, SC? ### Answer: SELECT date FROM table_name_75 WHERE site = "williams-brice stadium • columbia, sc" |
Can you tell me the Margin of victory that has the Winning score of 67-69-67-69=272? | CREATE TABLE table_name_20 (margin_of_victory VARCHAR, winning_score VARCHAR) | SELECT margin_of_victory FROM table_name_20 WHERE winning_score = 67 - 69 - 67 - 69 = 272 | ### Context: CREATE TABLE table_name_20 (margin_of_victory VARCHAR, winning_score VARCHAR) ### Question: Can you tell me the Margin of victory that has the Winning score of 67-69-67-69=272? ### Answer: SELECT margin_of_victory FROM table_name_20 WHERE winning_score = 67 - 69 - 67 - 69 = 272 |
WHAT IS THE AVERAGE DATE FOR CBS LABEL, IN AUSTRALIA, AND SBP 241031 FOR CATALOG? | CREATE TABLE table_name_80 (date INTEGER, catalog VARCHAR, label VARCHAR, region VARCHAR) | SELECT AVG(date) FROM table_name_80 WHERE label = "cbs" AND region = "australia" AND catalog = "sbp 241031" | ### Context: CREATE TABLE table_name_80 (date INTEGER, catalog VARCHAR, label VARCHAR, region VARCHAR) ### Question: WHAT IS THE AVERAGE DATE FOR CBS LABEL, IN AUSTRALIA, AND SBP 241031 FOR CATALOG? ### Answer: SELECT AVG(date) FROM table_name_80 WHERE label = "cbs" AND region = "australia" AND catalog = "sbp 241031" |
WHAT DATE HAS A CATALOG OF 486553.4? | CREATE TABLE table_name_70 (date INTEGER, catalog VARCHAR) | SELECT MAX(date) FROM table_name_70 WHERE catalog = "486553.4" | ### Context: CREATE TABLE table_name_70 (date INTEGER, catalog VARCHAR) ### Question: WHAT DATE HAS A CATALOG OF 486553.4? ### Answer: SELECT MAX(date) FROM table_name_70 WHERE catalog = "486553.4" |
WHAT IS THE LOWEST DATE FOR KOREA, IN CD FORMAT? | CREATE TABLE table_name_23 (date INTEGER, region VARCHAR, format VARCHAR) | SELECT MIN(date) FROM table_name_23 WHERE region = "korea" AND format = "cd" | ### Context: CREATE TABLE table_name_23 (date INTEGER, region VARCHAR, format VARCHAR) ### Question: WHAT IS THE LOWEST DATE FOR KOREA, IN CD FORMAT? ### Answer: SELECT MIN(date) FROM table_name_23 WHERE region = "korea" AND format = "cd" |
What is 2008, when 2006 is "1R"? | CREATE TABLE table_name_70 (Id VARCHAR) | SELECT 2008 FROM table_name_70 WHERE 2006 = "1r" | ### Context: CREATE TABLE table_name_70 (Id VARCHAR) ### Question: What is 2008, when 2006 is "1R"? ### Answer: SELECT 2008 FROM table_name_70 WHERE 2006 = "1r" |
What is Tournament, when 2006 is "A", and when 2009 is "A"? | CREATE TABLE table_name_93 (tournament VARCHAR) | SELECT tournament FROM table_name_93 WHERE 2006 = "a" AND 2009 = "a" | ### Context: CREATE TABLE table_name_93 (tournament VARCHAR) ### Question: What is Tournament, when 2006 is "A", and when 2009 is "A"? ### Answer: SELECT tournament FROM table_name_93 WHERE 2006 = "a" AND 2009 = "a" |
What is 2005, when 2006 is "1R"? | CREATE TABLE table_name_73 (Id VARCHAR) | SELECT 2005 FROM table_name_73 WHERE 2006 = "1r" | ### Context: CREATE TABLE table_name_73 (Id VARCHAR) ### Question: What is 2005, when 2006 is "1R"? ### Answer: SELECT 2005 FROM table_name_73 WHERE 2006 = "1r" |
What is 2011, when 2008 is "2R"? | CREATE TABLE table_name_40 (Id VARCHAR) | SELECT 2011 FROM table_name_40 WHERE 2008 = "2r" | ### Context: CREATE TABLE table_name_40 (Id VARCHAR) ### Question: What is 2011, when 2008 is "2R"? ### Answer: SELECT 2011 FROM table_name_40 WHERE 2008 = "2r" |
What is 2004, when 2005 is "2R", and when 2006 is "1R" | CREATE TABLE table_name_74 (Id VARCHAR) | SELECT 2004 FROM table_name_74 WHERE 2005 = "2r" AND 2006 = "1r" | ### Context: CREATE TABLE table_name_74 (Id VARCHAR) ### Question: What is 2004, when 2005 is "2R", and when 2006 is "1R" ### Answer: SELECT 2004 FROM table_name_74 WHERE 2005 = "2r" AND 2006 = "1r" |
What is 2004, when 2009 is "A"? | CREATE TABLE table_name_28 (Id VARCHAR) | SELECT 2004 FROM table_name_28 WHERE 2009 = "a" | ### Context: CREATE TABLE table_name_28 (Id VARCHAR) ### Question: What is 2004, when 2009 is "A"? ### Answer: SELECT 2004 FROM table_name_28 WHERE 2009 = "a" |
What was the name of the opponent when the method was ko (slam), and record was 13–1? | CREATE TABLE table_name_21 (opponent VARCHAR, method VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_21 WHERE method = "ko (slam)" AND record = "13–1" | ### Context: CREATE TABLE table_name_21 (opponent VARCHAR, method VARCHAR, record VARCHAR) ### Question: What was the name of the opponent when the method was ko (slam), and record was 13–1? ### Answer: SELECT opponent FROM table_name_21 WHERE method = "ko (slam)" AND record = "13–1" |
What is the highest pick of scott turner, who has a round greater than 2? | CREATE TABLE table_name_37 (pick INTEGER, round VARCHAR, name VARCHAR) | SELECT MAX(pick) FROM table_name_37 WHERE round > 2 AND name = "scott turner" | ### Context: CREATE TABLE table_name_37 (pick INTEGER, round VARCHAR, name VARCHAR) ### Question: What is the highest pick of scott turner, who has a round greater than 2? ### Answer: SELECT MAX(pick) FROM table_name_37 WHERE round > 2 AND name = "scott turner" |
What is the name of the ot position player with a round greater than 4? | CREATE TABLE table_name_69 (name VARCHAR, round VARCHAR, position VARCHAR) | SELECT name FROM table_name_69 WHERE round > 4 AND position = "ot" | ### Context: CREATE TABLE table_name_69 (name VARCHAR, round VARCHAR, position VARCHAR) ### Question: What is the name of the ot position player with a round greater than 4? ### Answer: SELECT name FROM table_name_69 WHERE round > 4 AND position = "ot" |
What is the sum of the pick of darryl pounds, who has an overall greater than 68? | CREATE TABLE table_name_94 (pick INTEGER, name VARCHAR, overall VARCHAR) | SELECT SUM(pick) FROM table_name_94 WHERE name = "darryl pounds" AND overall > 68 | ### Context: CREATE TABLE table_name_94 (pick INTEGER, name VARCHAR, overall VARCHAR) ### Question: What is the sum of the pick of darryl pounds, who has an overall greater than 68? ### Answer: SELECT SUM(pick) FROM table_name_94 WHERE name = "darryl pounds" AND overall > 68 |
What is the total number of rounds of the player from lehigh college with an overall less than 152? | CREATE TABLE table_name_39 (round VARCHAR, college VARCHAR, overall VARCHAR) | SELECT COUNT(round) FROM table_name_39 WHERE college = "lehigh" AND overall < 152 | ### Context: CREATE TABLE table_name_39 (round VARCHAR, college VARCHAR, overall VARCHAR) ### Question: What is the total number of rounds of the player from lehigh college with an overall less than 152? ### Answer: SELECT COUNT(round) FROM table_name_39 WHERE college = "lehigh" AND overall < 152 |
What is the highest round of pick 3? | CREATE TABLE table_name_42 (round INTEGER, pick VARCHAR) | SELECT MAX(round) FROM table_name_42 WHERE pick = 3 | ### Context: CREATE TABLE table_name_42 (round INTEGER, pick VARCHAR) ### Question: What is the highest round of pick 3? ### Answer: SELECT MAX(round) FROM table_name_42 WHERE pick = 3 |
What is the total overall number of the ot position player with a pick greater than 5? | CREATE TABLE table_name_59 (overall VARCHAR, position VARCHAR, pick VARCHAR) | SELECT COUNT(overall) FROM table_name_59 WHERE position = "ot" AND pick > 5 | ### Context: CREATE TABLE table_name_59 (overall VARCHAR, position VARCHAR, pick VARCHAR) ### Question: What is the total overall number of the ot position player with a pick greater than 5? ### Answer: SELECT COUNT(overall) FROM table_name_59 WHERE position = "ot" AND pick > 5 |
What rank does the Singapore Cup of 0 (1) have? | CREATE TABLE table_name_87 (rank INTEGER, singapore_cup VARCHAR) | SELECT MAX(rank) FROM table_name_87 WHERE singapore_cup = "0 (1)" | ### Context: CREATE TABLE table_name_87 (rank INTEGER, singapore_cup VARCHAR) ### Question: What rank does the Singapore Cup of 0 (1) have? ### Answer: SELECT MAX(rank) FROM table_name_87 WHERE singapore_cup = "0 (1)" |
What Singapore League Cup does Masahiro Fukasawa have? | CREATE TABLE table_name_99 (singapore_league_cup VARCHAR, name VARCHAR) | SELECT singapore_league_cup FROM table_name_99 WHERE name = "masahiro fukasawa" | ### Context: CREATE TABLE table_name_99 (singapore_league_cup VARCHAR, name VARCHAR) ### Question: What Singapore League Cup does Masahiro Fukasawa have? ### Answer: SELECT singapore_league_cup FROM table_name_99 WHERE name = "masahiro fukasawa" |
What is Norikazu Murakami's total? | CREATE TABLE table_name_41 (total VARCHAR, name VARCHAR) | SELECT total FROM table_name_41 WHERE name = "norikazu murakami" | ### Context: CREATE TABLE table_name_41 (total VARCHAR, name VARCHAR) ### Question: What is Norikazu Murakami's total? ### Answer: SELECT total FROM table_name_41 WHERE name = "norikazu murakami" |
What is the rank for the total that has 3 (20)? | CREATE TABLE table_name_11 (rank VARCHAR, total VARCHAR) | SELECT rank FROM table_name_11 WHERE total = "3 (20)" | ### Context: CREATE TABLE table_name_11 (rank VARCHAR, total VARCHAR) ### Question: What is the rank for the total that has 3 (20)? ### Answer: SELECT rank FROM table_name_11 WHERE total = "3 (20)" |
Which AFC cup does Masahiro Fukasawa have? | CREATE TABLE table_name_17 (afc_cup VARCHAR, name VARCHAR) | SELECT afc_cup FROM table_name_17 WHERE name = "masahiro fukasawa" | ### Context: CREATE TABLE table_name_17 (afc_cup VARCHAR, name VARCHAR) ### Question: Which AFC cup does Masahiro Fukasawa have? ### Answer: SELECT afc_cup FROM table_name_17 WHERE name = "masahiro fukasawa" |
Which AFC cup does Kenji Arai have? | CREATE TABLE table_name_43 (afc_cup VARCHAR, name VARCHAR) | SELECT afc_cup FROM table_name_43 WHERE name = "kenji arai" | ### Context: CREATE TABLE table_name_43 (afc_cup VARCHAR, name VARCHAR) ### Question: Which AFC cup does Kenji Arai have? ### Answer: SELECT afc_cup FROM table_name_43 WHERE name = "kenji arai" |
In the game where Joe Johnson (31) was the high points scorer, what was the final score? | CREATE TABLE table_name_79 (score VARCHAR, high_points VARCHAR) | SELECT score FROM table_name_79 WHERE high_points = "joe johnson (31)" | ### Context: CREATE TABLE table_name_79 (score VARCHAR, high_points VARCHAR) ### Question: In the game where Joe Johnson (31) was the high points scorer, what was the final score? ### Answer: SELECT score FROM table_name_79 WHERE high_points = "joe johnson (31)" |
What is the lowest to par of the player with a t3 place and less than $1,500? | CREATE TABLE table_name_28 (to_par INTEGER, place VARCHAR, money___$__ VARCHAR) | SELECT MIN(to_par) FROM table_name_28 WHERE place = "t3" AND money___$__ < 1 OFFSET 500 | ### Context: CREATE TABLE table_name_28 (to_par INTEGER, place VARCHAR, money___$__ VARCHAR) ### Question: What is the lowest to par of the player with a t3 place and less than $1,500? ### Answer: SELECT MIN(to_par) FROM table_name_28 WHERE place = "t3" AND money___$__ < 1 OFFSET 500 |
Who is the player from the United States with a t6 place and a 71-70-76-72=289 score? | CREATE TABLE table_name_67 (player VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR) | SELECT player FROM table_name_67 WHERE country = "united states" AND place = "t6" AND score = 71 - 70 - 76 - 72 = 289 | ### Context: CREATE TABLE table_name_67 (player VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR) ### Question: Who is the player from the United States with a t6 place and a 71-70-76-72=289 score? ### Answer: SELECT player FROM table_name_67 WHERE country = "united states" AND place = "t6" AND score = 71 - 70 - 76 - 72 = 289 |
How much total money does player tommy bolt, who has a to par of 9, have? | CREATE TABLE table_name_76 (money___ VARCHAR, to_par VARCHAR, player VARCHAR) | SELECT COUNT(money___) AS $__ FROM table_name_76 WHERE to_par = 9 AND player = "tommy bolt" | ### Context: CREATE TABLE table_name_76 (money___ VARCHAR, to_par VARCHAR, player VARCHAR) ### Question: How much total money does player tommy bolt, who has a to par of 9, have? ### Answer: SELECT COUNT(money___) AS $__ FROM table_name_76 WHERE to_par = 9 AND player = "tommy bolt" |
What is the lowest amount of money a player from South Africa with a to par less than 8 has? | CREATE TABLE table_name_13 (money___ INTEGER, country VARCHAR, to_par VARCHAR) | SELECT MIN(money___) AS $__ FROM table_name_13 WHERE country = "south africa" AND to_par < 8 | ### Context: CREATE TABLE table_name_13 (money___ INTEGER, country VARCHAR, to_par VARCHAR) ### Question: What is the lowest amount of money a player from South Africa with a to par less than 8 has? ### Answer: SELECT MIN(money___) AS $__ FROM table_name_13 WHERE country = "south africa" AND to_par < 8 |
What was the venue that had a friendly match competition? | CREATE TABLE table_name_49 (venue VARCHAR, competition VARCHAR) | SELECT venue FROM table_name_49 WHERE competition = "friendly match" | ### Context: CREATE TABLE table_name_49 (venue VARCHAR, competition VARCHAR) ### Question: What was the venue that had a friendly match competition? ### Answer: SELECT venue FROM table_name_49 WHERE competition = "friendly match" |
With a year larger than 1905, and a location of philadelphia, pennsylvania with a to par [a] of n/a and a country of scotland what is the course? | CREATE TABLE table_name_1 (course VARCHAR, location VARCHAR, year VARCHAR, country VARCHAR, to_par_ VARCHAR, a_ VARCHAR) | SELECT course FROM table_name_1 WHERE to_par_[a_] = "n/a" AND country = "scotland" AND year > 1905 AND location = "philadelphia, pennsylvania" | ### Context: CREATE TABLE table_name_1 (course VARCHAR, location VARCHAR, year VARCHAR, country VARCHAR, to_par_ VARCHAR, a_ VARCHAR) ### Question: With a year larger than 1905, and a location of philadelphia, pennsylvania with a to par [a] of n/a and a country of scotland what is the course? ### Answer: SELECT course FROM table_name_1 WHERE to_par_[a_] = "n/a" AND country = "scotland" AND year > 1905 AND location = "philadelphia, pennsylvania" |
What is the total score for a location of san francisco, california, and a year after 1987, and a to pa [a] of +1? | CREATE TABLE table_name_68 (total_score VARCHAR, location VARCHAR, year VARCHAR, to_par_ VARCHAR, a_ VARCHAR) | SELECT total_score FROM table_name_68 WHERE location = "san francisco, california" AND year > 1987 AND to_par_[a_] = "+1" | ### Context: CREATE TABLE table_name_68 (total_score VARCHAR, location VARCHAR, year VARCHAR, to_par_ VARCHAR, a_ VARCHAR) ### Question: What is the total score for a location of san francisco, california, and a year after 1987, and a to pa [a] of +1? ### Answer: SELECT total_score FROM table_name_68 WHERE location = "san francisco, california" AND year > 1987 AND to_par_[a_] = "+1" |
What is the sum for the year with a location of newport, rhode island? | CREATE TABLE table_name_57 (year INTEGER, location VARCHAR) | SELECT SUM(year) FROM table_name_57 WHERE location = "newport, rhode island" | ### Context: CREATE TABLE table_name_57 (year INTEGER, location VARCHAR) ### Question: What is the sum for the year with a location of newport, rhode island? ### Answer: SELECT SUM(year) FROM table_name_57 WHERE location = "newport, rhode island" |
What is the country with a course of merion golf club, and a to par [1] of e? | CREATE TABLE table_name_27 (country VARCHAR, course VARCHAR, to_par_ VARCHAR, a_ VARCHAR) | SELECT country FROM table_name_27 WHERE course = "merion golf club" AND to_par_[a_] = "e" | ### Context: CREATE TABLE table_name_27 (country VARCHAR, course VARCHAR, to_par_ VARCHAR, a_ VARCHAR) ### Question: What is the country with a course of merion golf club, and a to par [1] of e? ### Answer: SELECT country FROM table_name_27 WHERE course = "merion golf club" AND to_par_[a_] = "e" |
What is the total score for the year 2012? | CREATE TABLE table_name_14 (total_score VARCHAR, year VARCHAR) | SELECT total_score FROM table_name_14 WHERE year = 2012 | ### Context: CREATE TABLE table_name_14 (total_score VARCHAR, year VARCHAR) ### Question: What is the total score for the year 2012? ### Answer: SELECT total_score FROM table_name_14 WHERE year = 2012 |
What is the evening gown score for the contestant from Mississippi? | CREATE TABLE table_name_4 (evening_gown VARCHAR, state VARCHAR) | SELECT evening_gown FROM table_name_4 WHERE state = "mississippi" | ### Context: CREATE TABLE table_name_4 (evening_gown VARCHAR, state VARCHAR) ### Question: What is the evening gown score for the contestant from Mississippi? ### Answer: SELECT evening_gown FROM table_name_4 WHERE state = "mississippi" |
What is the type for rank 2? | CREATE TABLE table_name_26 (type VARCHAR, rank VARCHAR) | SELECT type FROM table_name_26 WHERE rank = 2 | ### Context: CREATE TABLE table_name_26 (type VARCHAR, rank VARCHAR) ### Question: What is the type for rank 2? ### Answer: SELECT type FROM table_name_26 WHERE rank = 2 |
What is the sum of number of bearers in 2009 for a rank above 1, a type of patronymic, an etymology meaning son of Christian, and the number of bearers in 1971 greater than 45.984? | CREATE TABLE table_name_3 (number_of_bearers_2009 INTEGER, number_of_bearers_1971 VARCHAR, etymology VARCHAR, rank VARCHAR, type VARCHAR) | SELECT SUM(number_of_bearers_2009) FROM table_name_3 WHERE rank > 1 AND type = "patronymic" AND etymology = "son of christian" AND number_of_bearers_1971 > 45.984 | ### Context: CREATE TABLE table_name_3 (number_of_bearers_2009 INTEGER, number_of_bearers_1971 VARCHAR, etymology VARCHAR, rank VARCHAR, type VARCHAR) ### Question: What is the sum of number of bearers in 2009 for a rank above 1, a type of patronymic, an etymology meaning son of Christian, and the number of bearers in 1971 greater than 45.984? ### Answer: SELECT SUM(number_of_bearers_2009) FROM table_name_3 WHERE rank > 1 AND type = "patronymic" AND etymology = "son of christian" AND number_of_bearers_1971 > 45.984 |
What is Ryan Hunter-Reay of the Herdez Competition's Qual 2 time? | CREATE TABLE table_name_80 (qual_2 VARCHAR, team VARCHAR, name VARCHAR) | SELECT qual_2 FROM table_name_80 WHERE team = "herdez competition" AND name = "ryan hunter-reay" | ### Context: CREATE TABLE table_name_80 (qual_2 VARCHAR, team VARCHAR, name VARCHAR) ### Question: What is Ryan Hunter-Reay of the Herdez Competition's Qual 2 time? ### Answer: SELECT qual_2 FROM table_name_80 WHERE team = "herdez competition" AND name = "ryan hunter-reay" |
What is Justin Wilson's Team? | CREATE TABLE table_name_13 (team VARCHAR, name VARCHAR) | SELECT team FROM table_name_13 WHERE name = "justin wilson" | ### Context: CREATE TABLE table_name_13 (team VARCHAR, name VARCHAR) ### Question: What is Justin Wilson's Team? ### Answer: SELECT team FROM table_name_13 WHERE name = "justin wilson" |
What is the Best of the racer with a Qual 2 of 1:00.588? | CREATE TABLE table_name_31 (best VARCHAR, qual_2 VARCHAR) | SELECT best FROM table_name_31 WHERE qual_2 = "1:00.588" | ### Context: CREATE TABLE table_name_31 (best VARCHAR, qual_2 VARCHAR) ### Question: What is the Best of the racer with a Qual 2 of 1:00.588? ### Answer: SELECT best FROM table_name_31 WHERE qual_2 = "1:00.588" |
Where is the lowest area with a population of 7,616? | CREATE TABLE table_name_55 (area__km²_ INTEGER, population__2010_ VARCHAR) | SELECT MIN(area__km²_) FROM table_name_55 WHERE population__2010_ = 7 OFFSET 616 | ### Context: CREATE TABLE table_name_55 (area__km²_ INTEGER, population__2010_ VARCHAR) ### Question: Where is the lowest area with a population of 7,616? ### Answer: SELECT MIN(area__km²_) FROM table_name_55 WHERE population__2010_ = 7 OFFSET 616 |
Where in Tongyong is Hanyu Sanmin? | CREATE TABLE table_name_36 (tongyong VARCHAR, hanyu VARCHAR) | SELECT tongyong FROM table_name_36 WHERE hanyu = "sanmin" | ### Context: CREATE TABLE table_name_36 (tongyong VARCHAR, hanyu VARCHAR) ### Question: Where in Tongyong is Hanyu Sanmin? ### Answer: SELECT tongyong FROM table_name_36 WHERE hanyu = "sanmin" |
Which Hanya has an area of 19.3888? | CREATE TABLE table_name_59 (hanyu VARCHAR, area__km²_ VARCHAR) | SELECT hanyu FROM table_name_59 WHERE area__km²_ = 19.3888 | ### Context: CREATE TABLE table_name_59 (hanyu VARCHAR, area__km²_ VARCHAR) ### Question: Which Hanya has an area of 19.3888? ### Answer: SELECT hanyu FROM table_name_59 WHERE area__km²_ = 19.3888 |
What is Nationality, when Round is less than 2, and when Pick is "24"? | CREATE TABLE table_name_17 (nationality VARCHAR, round VARCHAR, pick VARCHAR) | SELECT nationality FROM table_name_17 WHERE round < 2 AND pick = 24 | ### Context: CREATE TABLE table_name_17 (nationality VARCHAR, round VARCHAR, pick VARCHAR) ### Question: What is Nationality, when Round is less than 2, and when Pick is "24"? ### Answer: SELECT nationality FROM table_name_17 WHERE round < 2 AND pick = 24 |
What is Nationality, when Round is less than 2, and when College/Team is "CB L'Hospitalet"? | CREATE TABLE table_name_36 (nationality VARCHAR, round VARCHAR, college_team VARCHAR) | SELECT nationality FROM table_name_36 WHERE round < 2 AND college_team = "cb l'hospitalet" | ### Context: CREATE TABLE table_name_36 (nationality VARCHAR, round VARCHAR, college_team VARCHAR) ### Question: What is Nationality, when Round is less than 2, and when College/Team is "CB L'Hospitalet"? ### Answer: SELECT nationality FROM table_name_36 WHERE round < 2 AND college_team = "cb l'hospitalet" |
What is the lowest Round, when College/Team is "Kansas", and when Pick is less than 56? | CREATE TABLE table_name_96 (round INTEGER, college_team VARCHAR, pick VARCHAR) | SELECT MIN(round) FROM table_name_96 WHERE college_team = "kansas" AND pick < 56 | ### Context: CREATE TABLE table_name_96 (round INTEGER, college_team VARCHAR, pick VARCHAR) ### Question: What is the lowest Round, when College/Team is "Kansas", and when Pick is less than 56? ### Answer: SELECT MIN(round) FROM table_name_96 WHERE college_team = "kansas" AND pick < 56 |
What is College/Team, when Round is less than 2, and when Nationality is "United States"? | CREATE TABLE table_name_18 (college_team VARCHAR, round VARCHAR, nationality VARCHAR) | SELECT college_team FROM table_name_18 WHERE round < 2 AND nationality = "united states" | ### Context: CREATE TABLE table_name_18 (college_team VARCHAR, round VARCHAR, nationality VARCHAR) ### Question: What is College/Team, when Round is less than 2, and when Nationality is "United States"? ### Answer: SELECT college_team FROM table_name_18 WHERE round < 2 AND nationality = "united states" |
WHAT IS THE Q1 POS WITH A 1:31.826 Q1 TIME, AND Q1 ORDER OF 7? | CREATE TABLE table_name_90 (q1_pos INTEGER, q1_time VARCHAR, q1_order VARCHAR) | SELECT MAX(q1_pos) FROM table_name_90 WHERE q1_time = "1:31.826" AND q1_order > 7 | ### Context: CREATE TABLE table_name_90 (q1_pos INTEGER, q1_time VARCHAR, q1_order VARCHAR) ### Question: WHAT IS THE Q1 POS WITH A 1:31.826 Q1 TIME, AND Q1 ORDER OF 7? ### Answer: SELECT MAX(q1_pos) FROM table_name_90 WHERE q1_time = "1:31.826" AND q1_order > 7 |
What is the score on December 2? | CREATE TABLE table_name_51 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_51 WHERE date = "december 2" | ### Context: CREATE TABLE table_name_51 (score VARCHAR, date VARCHAR) ### Question: What is the score on December 2? ### Answer: SELECT score FROM table_name_51 WHERE date = "december 2" |
How many silver medals were won in 1938? | CREATE TABLE table_name_42 (silver VARCHAR, year VARCHAR) | SELECT silver FROM table_name_42 WHERE year = "1938" | ### Context: CREATE TABLE table_name_42 (silver VARCHAR, year VARCHAR) ### Question: How many silver medals were won in 1938? ### Answer: SELECT silver FROM table_name_42 WHERE year = "1938" |
How many gold medals were won in 1970? | CREATE TABLE table_name_61 (gold VARCHAR, year VARCHAR) | SELECT gold FROM table_name_61 WHERE year = "1970" | ### Context: CREATE TABLE table_name_61 (gold VARCHAR, year VARCHAR) ### Question: How many gold medals were won in 1970? ### Answer: SELECT gold FROM table_name_61 WHERE year = "1970" |
How many silver medals were won the year 7 gold medals were won? | CREATE TABLE table_name_43 (silver VARCHAR, gold VARCHAR) | SELECT silver FROM table_name_43 WHERE gold = "7" | ### Context: CREATE TABLE table_name_43 (silver VARCHAR, gold VARCHAR) ### Question: How many silver medals were won the year 7 gold medals were won? ### Answer: SELECT silver FROM table_name_43 WHERE gold = "7" |
How many bronze medals were won in 1998? | CREATE TABLE table_name_27 (bronze VARCHAR, year VARCHAR) | SELECT bronze FROM table_name_27 WHERE year = "1998" | ### Context: CREATE TABLE table_name_27 (bronze VARCHAR, year VARCHAR) ### Question: How many bronze medals were won in 1998? ### Answer: SELECT bronze FROM table_name_27 WHERE year = "1998" |
Can you tell me the TV Time that has the Date of november 22, 1998? | CREATE TABLE table_name_35 (tv_time VARCHAR, date VARCHAR) | SELECT tv_time FROM table_name_35 WHERE date = "november 22, 1998" | ### Context: CREATE TABLE table_name_35 (tv_time VARCHAR, date VARCHAR) ### Question: Can you tell me the TV Time that has the Date of november 22, 1998? ### Answer: SELECT tv_time FROM table_name_35 WHERE date = "november 22, 1998" |
Can you tell me the Result that has the Date of september 13, 1998? | CREATE TABLE table_name_28 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_28 WHERE date = "september 13, 1998" | ### Context: CREATE TABLE table_name_28 (result VARCHAR, date VARCHAR) ### Question: Can you tell me the Result that has the Date of september 13, 1998? ### Answer: SELECT result FROM table_name_28 WHERE date = "september 13, 1998" |
Can you tell me the Opponent that has the Week smaller than 11, and the TV Time of fox 10:00 am mt, and the Result of w 20-17? | CREATE TABLE table_name_33 (opponent VARCHAR, result VARCHAR, week VARCHAR, tv_time VARCHAR) | SELECT opponent FROM table_name_33 WHERE week < 11 AND tv_time = "fox 10:00 am mt" AND result = "w 20-17" | ### Context: CREATE TABLE table_name_33 (opponent VARCHAR, result VARCHAR, week VARCHAR, tv_time VARCHAR) ### Question: Can you tell me the Opponent that has the Week smaller than 11, and the TV Time of fox 10:00 am mt, and the Result of w 20-17? ### Answer: SELECT opponent FROM table_name_33 WHERE week < 11 AND tv_time = "fox 10:00 am mt" AND result = "w 20-17" |
Can you tell me the Result that has the Week of 5? | CREATE TABLE table_name_63 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_63 WHERE week = 5 | ### Context: CREATE TABLE table_name_63 (result VARCHAR, week VARCHAR) ### Question: Can you tell me the Result that has the Week of 5? ### Answer: SELECT result FROM table_name_63 WHERE week = 5 |
What is the average year that the club located in enfield was founded with an unknown coach? | CREATE TABLE table_name_87 (founded INTEGER, coach VARCHAR, location VARCHAR) | SELECT AVG(founded) FROM table_name_87 WHERE coach = "unknown" AND location = "enfield" | ### Context: CREATE TABLE table_name_87 (founded INTEGER, coach VARCHAR, location VARCHAR) ### Question: What is the average year that the club located in enfield was founded with an unknown coach? ### Answer: SELECT AVG(founded) FROM table_name_87 WHERE coach = "unknown" AND location = "enfield" |
What was the location of the club where the home ground is wilfred taylor reserve? | CREATE TABLE table_name_80 (location VARCHAR, home_ground VARCHAR) | SELECT location FROM table_name_80 WHERE home_ground = "wilfred taylor reserve" | ### Context: CREATE TABLE table_name_80 (location VARCHAR, home_ground VARCHAR) ### Question: What was the location of the club where the home ground is wilfred taylor reserve? ### Answer: SELECT location FROM table_name_80 WHERE home_ground = "wilfred taylor reserve" |
Where is the club that was founded in 1946 located that has an unknown coach? | CREATE TABLE table_name_45 (location VARCHAR, coach VARCHAR, founded VARCHAR) | SELECT location FROM table_name_45 WHERE coach = "unknown" AND founded = 1946 | ### Context: CREATE TABLE table_name_45 (location VARCHAR, coach VARCHAR, founded VARCHAR) ### Question: Where is the club that was founded in 1946 located that has an unknown coach? ### Answer: SELECT location FROM table_name_45 WHERE coach = "unknown" AND founded = 1946 |
Where is the home ground for the club coached by nick pantsaras and founded before 1946? | CREATE TABLE table_name_48 (home_ground VARCHAR, founded VARCHAR, coach VARCHAR) | SELECT home_ground FROM table_name_48 WHERE founded < 1946 AND coach = "nick pantsaras" | ### Context: CREATE TABLE table_name_48 (home_ground VARCHAR, founded VARCHAR, coach VARCHAR) ### Question: Where is the home ground for the club coached by nick pantsaras and founded before 1946? ### Answer: SELECT home_ground FROM table_name_48 WHERE founded < 1946 AND coach = "nick pantsaras" |
Which team was the opponent that had a location of Madison Square Garden with a score of 87-83? | CREATE TABLE table_name_10 (team VARCHAR, location_attendance VARCHAR, score VARCHAR) | SELECT team FROM table_name_10 WHERE location_attendance = "madison square garden" AND score = "87-83" | ### Context: CREATE TABLE table_name_10 (team VARCHAR, location_attendance VARCHAR, score VARCHAR) ### Question: Which team was the opponent that had a location of Madison Square Garden with a score of 87-83? ### Answer: SELECT team FROM table_name_10 WHERE location_attendance = "madison square garden" AND score = "87-83" |
Which game was played at the Forum and led to a series result of 0-1? | CREATE TABLE table_name_85 (game VARCHAR, location_attendance VARCHAR, series VARCHAR) | SELECT game FROM table_name_85 WHERE location_attendance = "the forum" AND series = "0-1" | ### Context: CREATE TABLE table_name_85 (game VARCHAR, location_attendance VARCHAR, series VARCHAR) ### Question: Which game was played at the Forum and led to a series result of 0-1? ### Answer: SELECT game FROM table_name_85 WHERE location_attendance = "the forum" AND series = "0-1" |
What was the score for game 2? | CREATE TABLE table_name_82 (score VARCHAR, game VARCHAR) | SELECT score FROM table_name_82 WHERE game = 2 | ### Context: CREATE TABLE table_name_82 (score VARCHAR, game VARCHAR) ### Question: What was the score for game 2? ### Answer: SELECT score FROM table_name_82 WHERE game = 2 |
What is the title of the show with less than 10 seasons that aired on September 29, 1997 and is directed by Milan Cheylov? | CREATE TABLE table_name_69 (title VARCHAR, original_air_date VARCHAR, season__number VARCHAR, directed_by VARCHAR) | SELECT title FROM table_name_69 WHERE season__number < 10 AND directed_by = "milan cheylov" AND original_air_date = "september 29, 1997" | ### Context: CREATE TABLE table_name_69 (title VARCHAR, original_air_date VARCHAR, season__number VARCHAR, directed_by VARCHAR) ### Question: What is the title of the show with less than 10 seasons that aired on September 29, 1997 and is directed by Milan Cheylov? ### Answer: SELECT title FROM table_name_69 WHERE season__number < 10 AND directed_by = "milan cheylov" AND original_air_date = "september 29, 1997" |
What is the attendance of the November 19, 1990 game? | CREATE TABLE table_name_49 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_49 WHERE date = "november 19, 1990" | ### Context: CREATE TABLE table_name_49 (attendance VARCHAR, date VARCHAR) ### Question: What is the attendance of the November 19, 1990 game? ### Answer: SELECT attendance FROM table_name_49 WHERE date = "november 19, 1990" |
How many Years have an Iron Man Award of kyal horsley? | CREATE TABLE table_name_37 (year VARCHAR, iron_man_award VARCHAR) | SELECT COUNT(year) FROM table_name_37 WHERE iron_man_award = "kyal horsley" | ### Context: CREATE TABLE table_name_37 (year VARCHAR, iron_man_award VARCHAR) ### Question: How many Years have an Iron Man Award of kyal horsley? ### Answer: SELECT COUNT(year) FROM table_name_37 WHERE iron_man_award = "kyal horsley" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.