question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What is the Pilot number for the YouTube Hero greg pattillo? | CREATE TABLE table_name_76 (pilot VARCHAR, youtube_hero VARCHAR) | SELECT pilot FROM table_name_76 WHERE youtube_hero = "greg pattillo" | ### Context: CREATE TABLE table_name_76 (pilot VARCHAR, youtube_hero VARCHAR) ### Question: What is the Pilot number for the YouTube Hero greg pattillo? ### Answer: SELECT pilot FROM table_name_76 WHERE youtube_hero = "greg pattillo" |
What is the name of the MySpace Band with an Original Airdate of 25 march 2008? | CREATE TABLE table_name_77 (myspace_band VARCHAR, original_airdate VARCHAR) | SELECT myspace_band FROM table_name_77 WHERE original_airdate = "25 march 2008" | ### Context: CREATE TABLE table_name_77 (myspace_band VARCHAR, original_airdate VARCHAR) ### Question: What is the name of the MySpace Band with an Original Airdate of 25 march 2008? ### Answer: SELECT myspace_band FROM table_name_77 WHERE original_airdate = "25 march 2008" |
What is the total number of top-25s for tournaments that had 0 wins, 1 cut made, and more than 5 events? | CREATE TABLE table_name_23 (top_25 VARCHAR, events VARCHAR, wins VARCHAR, cuts_made VARCHAR) | SELECT COUNT(top_25) FROM table_name_23 WHERE wins = 0 AND cuts_made = 1 AND events > 5 | ### Context: CREATE TABLE table_name_23 (top_25 VARCHAR, events VARCHAR, wins VARCHAR, cuts_made VARCHAR) ### Question: What is the total number of top-25s for tournaments that had 0 wins, 1 cut made, and more than 5 events? ### Answer: SELECT COUNT(top_25) FROM table_name_23 WHERE wins = 0 AND cuts_made = 1 AND events > 5 |
What is the fewest number of top-5s for events with more than 1 win? | CREATE TABLE table_name_90 (top_5 INTEGER, wins INTEGER) | SELECT MIN(top_5) FROM table_name_90 WHERE wins > 1 | ### Context: CREATE TABLE table_name_90 (top_5 INTEGER, wins INTEGER) ### Question: What is the fewest number of top-5s for events with more than 1 win? ### Answer: SELECT MIN(top_5) FROM table_name_90 WHERE wins > 1 |
What is the highest number of top-25s for events with 0 wins? | CREATE TABLE table_name_15 (top_25 INTEGER, wins INTEGER) | SELECT MAX(top_25) FROM table_name_15 WHERE wins < 0 | ### Context: CREATE TABLE table_name_15 (top_25 INTEGER, wins INTEGER) ### Question: What is the highest number of top-25s for events with 0 wins? ### Answer: SELECT MAX(top_25) FROM table_name_15 WHERE wins < 0 |
What is the home leg who are opponents of rotor volgograd | CREATE TABLE table_name_88 (home_leg VARCHAR, opponents VARCHAR) | SELECT home_leg FROM table_name_88 WHERE opponents = "rotor volgograd" | ### Context: CREATE TABLE table_name_88 (home_leg VARCHAR, opponents VARCHAR) ### Question: What is the home leg who are opponents of rotor volgograd ### Answer: SELECT home_leg FROM table_name_88 WHERE opponents = "rotor volgograd" |
What is the round with ajax opponents | CREATE TABLE table_name_33 (round VARCHAR, opponents VARCHAR) | SELECT round FROM table_name_33 WHERE opponents = "ajax" | ### Context: CREATE TABLE table_name_33 (round VARCHAR, opponents VARCHAR) ### Question: What is the round with ajax opponents ### Answer: SELECT round FROM table_name_33 WHERE opponents = "ajax" |
Which acquisition via has a position of forward and is on the state school or club? | CREATE TABLE table_name_79 (acquisition_via VARCHAR, position VARCHAR, school_club_team VARCHAR) | SELECT acquisition_via FROM table_name_79 WHERE position = "forward" AND school_club_team = "state" | ### Context: CREATE TABLE table_name_79 (acquisition_via VARCHAR, position VARCHAR, school_club_team VARCHAR) ### Question: Which acquisition via has a position of forward and is on the state school or club? ### Answer: SELECT acquisition_via FROM table_name_79 WHERE position = "forward" AND school_club_team = "state" |
Which is the acquisition via that has a school or club team of state? | CREATE TABLE table_name_82 (acquisition_via VARCHAR, school_club_team VARCHAR) | SELECT acquisition_via FROM table_name_82 WHERE school_club_team = "state" | ### Context: CREATE TABLE table_name_82 (acquisition_via VARCHAR, school_club_team VARCHAR) ### Question: Which is the acquisition via that has a school or club team of state? ### Answer: SELECT acquisition_via FROM table_name_82 WHERE school_club_team = "state" |
What is the position of Allen Gamboa? | CREATE TABLE table_name_50 (position VARCHAR, name VARCHAR) | SELECT position FROM table_name_50 WHERE name = "allen gamboa" | ### Context: CREATE TABLE table_name_50 (position VARCHAR, name VARCHAR) ### Question: What is the position of Allen Gamboa? ### Answer: SELECT position FROM table_name_50 WHERE name = "allen gamboa" |
Which position is number 16? | CREATE TABLE table_name_7 (position VARCHAR, number VARCHAR) | SELECT position FROM table_name_7 WHERE number = 16 | ### Context: CREATE TABLE table_name_7 (position VARCHAR, number VARCHAR) ### Question: Which position is number 16? ### Answer: SELECT position FROM table_name_7 WHERE number = 16 |
What year had a date of TBA where the Oakland raiders were the home team? | CREATE TABLE table_name_80 (year INTEGER, date VARCHAR, designated_home VARCHAR) | SELECT AVG(year) FROM table_name_80 WHERE date = "tba" AND designated_home = "oakland raiders" | ### Context: CREATE TABLE table_name_80 (year INTEGER, date VARCHAR, designated_home VARCHAR) ### Question: What year had a date of TBA where the Oakland raiders were the home team? ### Answer: SELECT AVG(year) FROM table_name_80 WHERE date = "tba" AND designated_home = "oakland raiders" |
Who was the home team on October 28 when the new england patriots were the visitors? | CREATE TABLE table_name_34 (designated_home VARCHAR, date VARCHAR, designated_visitors VARCHAR) | SELECT designated_home FROM table_name_34 WHERE date = "october 28" AND designated_visitors = "new england patriots" | ### Context: CREATE TABLE table_name_34 (designated_home VARCHAR, date VARCHAR, designated_visitors VARCHAR) ### Question: Who was the home team on October 28 when the new england patriots were the visitors? ### Answer: SELECT designated_home FROM table_name_34 WHERE date = "october 28" AND designated_visitors = "new england patriots" |
Who were the visitors when the Atlanta Falcons were the home team? | CREATE TABLE table_name_42 (designated_visitors VARCHAR, designated_home VARCHAR) | SELECT designated_visitors FROM table_name_42 WHERE designated_home = "atlanta falcons" | ### Context: CREATE TABLE table_name_42 (designated_visitors VARCHAR, designated_home VARCHAR) ### Question: Who were the visitors when the Atlanta Falcons were the home team? ### Answer: SELECT designated_visitors FROM table_name_42 WHERE designated_home = "atlanta falcons" |
Who were the home team during the game that aired on Fox after 2007 on October 23? | CREATE TABLE table_name_53 (designated_home VARCHAR, date VARCHAR, television VARCHAR, year VARCHAR) | SELECT designated_home FROM table_name_53 WHERE television = "fox" AND year > 2007 AND date = "october 23" | ### Context: CREATE TABLE table_name_53 (designated_home VARCHAR, date VARCHAR, television VARCHAR, year VARCHAR) ### Question: Who were the home team during the game that aired on Fox after 2007 on October 23? ### Answer: SELECT designated_home FROM table_name_53 WHERE television = "fox" AND year > 2007 AND date = "october 23" |
What was the birthplace of the player who weighs 98 KG and was born on May 1, 1984? | CREATE TABLE table_name_86 (birthplace VARCHAR, weight__kg_ VARCHAR, birthdate VARCHAR) | SELECT birthplace FROM table_name_86 WHERE weight__kg_ = 98 AND birthdate = "may 1, 1984" | ### Context: CREATE TABLE table_name_86 (birthplace VARCHAR, weight__kg_ VARCHAR, birthdate VARCHAR) ### Question: What was the birthplace of the player who weighs 98 KG and was born on May 1, 1984? ### Answer: SELECT birthplace FROM table_name_86 WHERE weight__kg_ = 98 AND birthdate = "may 1, 1984" |
What was the Name v t e, of the player whose Weight (kg) was 84, whose Position was D, and whose Jersey number was 2? | CREATE TABLE table_name_32 (name_v_t_e VARCHAR, jersey_number VARCHAR, weight__kg_ VARCHAR, position VARCHAR) | SELECT name_v_t_e FROM table_name_32 WHERE weight__kg_ = 84 AND position = "d" AND jersey_number = 2 | ### Context: CREATE TABLE table_name_32 (name_v_t_e VARCHAR, jersey_number VARCHAR, weight__kg_ VARCHAR, position VARCHAR) ### Question: What was the Name v t e, of the player whose Weight (kg) was 84, whose Position was D, and whose Jersey number was 2? ### Answer: SELECT name_v_t_e FROM table_name_32 WHERE weight__kg_ = 84 AND position = "d" AND jersey_number = 2 |
What is the lowest win percentage for when Perth Scorchers is the opposition? | CREATE TABLE table_name_20 (win__percentage INTEGER, opposition VARCHAR) | SELECT MIN(win__percentage) FROM table_name_20 WHERE opposition = "perth scorchers" | ### Context: CREATE TABLE table_name_20 (win__percentage INTEGER, opposition VARCHAR) ### Question: What is the lowest win percentage for when Perth Scorchers is the opposition? ### Answer: SELECT MIN(win__percentage) FROM table_name_20 WHERE opposition = "perth scorchers" |
On which date was the game played on Week 13? | CREATE TABLE table_name_22 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_22 WHERE week = 13 | ### Context: CREATE TABLE table_name_22 (date VARCHAR, week VARCHAR) ### Question: On which date was the game played on Week 13? ### Answer: SELECT date FROM table_name_22 WHERE week = 13 |
What is the total number of Std SAPs with 0-11 Opt SAPS? | CREATE TABLE table_name_55 (std_saps VARCHAR, opt_saps VARCHAR) | SELECT COUNT(std_saps) FROM table_name_55 WHERE opt_saps = "0-11" | ### Context: CREATE TABLE table_name_55 (std_saps VARCHAR, opt_saps VARCHAR) ### Question: What is the total number of Std SAPs with 0-11 Opt SAPS? ### Answer: SELECT COUNT(std_saps) FROM table_name_55 WHERE opt_saps = "0-11" |
For Model e64 what is the zAAPs/zIIPs? | CREATE TABLE table_name_36 (zaaps___ziips VARCHAR, model VARCHAR) | SELECT zaaps___ziips FROM table_name_36 WHERE model = "e64" | ### Context: CREATE TABLE table_name_36 (zaaps___ziips VARCHAR, model VARCHAR) ### Question: For Model e64 what is the zAAPs/zIIPs? ### Answer: SELECT zaaps___ziips FROM table_name_36 WHERE model = "e64" |
For Model e12 what is the IFLs/uIFLs? | CREATE TABLE table_name_77 (ifls___uifls VARCHAR, model VARCHAR) | SELECT ifls___uifls FROM table_name_77 WHERE model = "e12" | ### Context: CREATE TABLE table_name_77 (ifls___uifls VARCHAR, model VARCHAR) ### Question: For Model e12 what is the IFLs/uIFLs? ### Answer: SELECT ifls___uifls FROM table_name_77 WHERE model = "e12" |
Which Player has a School/Club Team of Illinois? | CREATE TABLE table_name_5 (player VARCHAR, school_club_team VARCHAR) | SELECT player FROM table_name_5 WHERE school_club_team = "illinois" | ### Context: CREATE TABLE table_name_5 (player VARCHAR, school_club_team VARCHAR) ### Question: Which Player has a School/Club Team of Illinois? ### Answer: SELECT player FROM table_name_5 WHERE school_club_team = "illinois" |
Which Player plays Guard-Forward Position for School/Club Team Pepperdine? | CREATE TABLE table_name_12 (player VARCHAR, position VARCHAR, school_club_team VARCHAR) | SELECT player FROM table_name_12 WHERE position = "guard-forward" AND school_club_team = "pepperdine" | ### Context: CREATE TABLE table_name_12 (player VARCHAR, position VARCHAR, school_club_team VARCHAR) ### Question: Which Player plays Guard-Forward Position for School/Club Team Pepperdine? ### Answer: SELECT player FROM table_name_12 WHERE position = "guard-forward" AND school_club_team = "pepperdine" |
What Position does the Player Vince Carter hold? | CREATE TABLE table_name_84 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_84 WHERE player = "vince carter" | ### Context: CREATE TABLE table_name_84 (position VARCHAR, player VARCHAR) ### Question: What Position does the Player Vince Carter hold? ### Answer: SELECT position FROM table_name_84 WHERE player = "vince carter" |
Which School/Club Team does Vince Carter Play for? | CREATE TABLE table_name_95 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_95 WHERE player = "vince carter" | ### Context: CREATE TABLE table_name_95 (school_club_team VARCHAR, player VARCHAR) ### Question: Which School/Club Team does Vince Carter Play for? ### Answer: SELECT school_club_team FROM table_name_95 WHERE player = "vince carter" |
Who is the Player for School/Club Team Illinois? | CREATE TABLE table_name_22 (player VARCHAR, school_club_team VARCHAR) | SELECT player FROM table_name_22 WHERE school_club_team = "illinois" | ### Context: CREATE TABLE table_name_22 (player VARCHAR, school_club_team VARCHAR) ### Question: Who is the Player for School/Club Team Illinois? ### Answer: SELECT player FROM table_name_22 WHERE school_club_team = "illinois" |
What score has 7-0 as the result? | CREATE TABLE table_name_56 (score VARCHAR, result VARCHAR) | SELECT score FROM table_name_56 WHERE result = "7-0" | ### Context: CREATE TABLE table_name_56 (score VARCHAR, result VARCHAR) ### Question: What score has 7-0 as the result? ### Answer: SELECT score FROM table_name_56 WHERE result = "7-0" |
What competition has 17-1 as the result? | CREATE TABLE table_name_71 (competition VARCHAR, result VARCHAR) | SELECT competition FROM table_name_71 WHERE result = "17-1" | ### Context: CREATE TABLE table_name_71 (competition VARCHAR, result VARCHAR) ### Question: What competition has 17-1 as the result? ### Answer: SELECT competition FROM table_name_71 WHERE result = "17-1" |
What competition has 17-1 as the result? | CREATE TABLE table_name_38 (competition VARCHAR, result VARCHAR) | SELECT competition FROM table_name_38 WHERE result = "17-1" | ### Context: CREATE TABLE table_name_38 (competition VARCHAR, result VARCHAR) ### Question: What competition has 17-1 as the result? ### Answer: SELECT competition FROM table_name_38 WHERE result = "17-1" |
What is the set 2 with a 25-23 set 1 and a 17-19 set 5? | CREATE TABLE table_name_48 (set_2 VARCHAR, set_1 VARCHAR, set_5 VARCHAR) | SELECT set_2 FROM table_name_48 WHERE set_1 = "25-23" AND set_5 = "17-19" | ### Context: CREATE TABLE table_name_48 (set_2 VARCHAR, set_1 VARCHAR, set_5 VARCHAR) ### Question: What is the set 2 with a 25-23 set 1 and a 17-19 set 5? ### Answer: SELECT set_2 FROM table_name_48 WHERE set_1 = "25-23" AND set_5 = "17-19" |
What is the set 5 with a 25-23 set 3? | CREATE TABLE table_name_55 (set_5 VARCHAR, set_3 VARCHAR) | SELECT set_5 FROM table_name_55 WHERE set_3 = "25-23" | ### Context: CREATE TABLE table_name_55 (set_5 VARCHAR, set_3 VARCHAR) ### Question: What is the set 5 with a 25-23 set 3? ### Answer: SELECT set_5 FROM table_name_55 WHERE set_3 = "25-23" |
Who had the high pick of the round of 10 for Fairmont State college? | CREATE TABLE table_name_13 (pick INTEGER, college VARCHAR, round VARCHAR) | SELECT MAX(pick) FROM table_name_13 WHERE college = "fairmont state" AND round > 10 | ### Context: CREATE TABLE table_name_13 (pick INTEGER, college VARCHAR, round VARCHAR) ### Question: Who had the high pick of the round of 10 for Fairmont State college? ### Answer: SELECT MAX(pick) FROM table_name_13 WHERE college = "fairmont state" AND round > 10 |
What was the name of the player for pick 402? | CREATE TABLE table_name_57 (player VARCHAR, pick VARCHAR) | SELECT player FROM table_name_57 WHERE pick = 402 | ### Context: CREATE TABLE table_name_57 (player VARCHAR, pick VARCHAR) ### Question: What was the name of the player for pick 402? ### Answer: SELECT player FROM table_name_57 WHERE pick = 402 |
What is the date of the week 4 game? | CREATE TABLE table_name_76 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_76 WHERE week = 4 | ### Context: CREATE TABLE table_name_76 (date VARCHAR, week VARCHAR) ### Question: What is the date of the week 4 game? ### Answer: SELECT date FROM table_name_76 WHERE week = 4 |
What is the result of the game on October 17, 1965? | CREATE TABLE table_name_73 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_73 WHERE date = "october 17, 1965" | ### Context: CREATE TABLE table_name_73 (result VARCHAR, date VARCHAR) ### Question: What is the result of the game on October 17, 1965? ### Answer: SELECT result FROM table_name_73 WHERE date = "october 17, 1965" |
What is the Rank for Viktors Dobrecovs with less than 325 Matches? | CREATE TABLE table_name_34 (rank INTEGER, name VARCHAR, matches VARCHAR) | SELECT AVG(rank) FROM table_name_34 WHERE name = "viktors dobrecovs" AND matches < 325 | ### Context: CREATE TABLE table_name_34 (rank INTEGER, name VARCHAR, matches VARCHAR) ### Question: What is the Rank for Viktors Dobrecovs with less than 325 Matches? ### Answer: SELECT AVG(rank) FROM table_name_34 WHERE name = "viktors dobrecovs" AND matches < 325 |
What is the number of Matches for Vits Rimkus with a Rank of less than 3? | CREATE TABLE table_name_2 (matches INTEGER, name VARCHAR, rank VARCHAR) | SELECT AVG(matches) FROM table_name_2 WHERE name = "vits rimkus" AND rank < 3 | ### Context: CREATE TABLE table_name_2 (matches INTEGER, name VARCHAR, rank VARCHAR) ### Question: What is the number of Matches for Vits Rimkus with a Rank of less than 3? ### Answer: SELECT AVG(matches) FROM table_name_2 WHERE name = "vits rimkus" AND rank < 3 |
What is the Date for the game at michie stadium • west point, ny? | CREATE TABLE table_name_80 (date VARCHAR, location VARCHAR) | SELECT date FROM table_name_80 WHERE location = "michie stadium • west point, ny" | ### Context: CREATE TABLE table_name_80 (date VARCHAR, location VARCHAR) ### Question: What is the Date for the game at michie stadium • west point, ny? ### Answer: SELECT date FROM table_name_80 WHERE location = "michie stadium • west point, ny" |
What is the Opponent when the location was groves stadium • winston-salem, nc, with a result of t 17-17? | CREATE TABLE table_name_20 (opponent VARCHAR, location VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_20 WHERE location = "groves stadium • winston-salem, nc" AND result = "t 17-17" | ### Context: CREATE TABLE table_name_20 (opponent VARCHAR, location VARCHAR, result VARCHAR) ### Question: What is the Opponent when the location was groves stadium • winston-salem, nc, with a result of t 17-17? ### Answer: SELECT opponent FROM table_name_20 WHERE location = "groves stadium • winston-salem, nc" AND result = "t 17-17" |
In 1879-81 with number built 4, what is the LMS nos? | CREATE TABLE table_name_63 (lms_nos VARCHAR, date VARCHAR, no_built VARCHAR) | SELECT lms_nos FROM table_name_63 WHERE date = "1879-81" AND no_built = 4 | ### Context: CREATE TABLE table_name_63 (lms_nos VARCHAR, date VARCHAR, no_built VARCHAR) ### Question: In 1879-81 with number built 4, what is the LMS nos? ### Answer: SELECT lms_nos FROM table_name_63 WHERE date = "1879-81" AND no_built = 4 |
On which date was the class 157? | CREATE TABLE table_name_40 (date VARCHAR, class VARCHAR) | SELECT date FROM table_name_40 WHERE class = 157 | ### Context: CREATE TABLE table_name_40 (date VARCHAR, class VARCHAR) ### Question: On which date was the class 157? ### Answer: SELECT date FROM table_name_40 WHERE class = 157 |
Can you tell me the lowest Ends Lost that has the Locale of norway, and the Blank Ends larger than 17? | CREATE TABLE table_name_95 (ends_lost INTEGER, locale VARCHAR, blank_ends VARCHAR) | SELECT MIN(ends_lost) FROM table_name_95 WHERE locale = "norway" AND blank_ends > 17 | ### Context: CREATE TABLE table_name_95 (ends_lost INTEGER, locale VARCHAR, blank_ends VARCHAR) ### Question: Can you tell me the lowest Ends Lost that has the Locale of norway, and the Blank Ends larger than 17? ### Answer: SELECT MIN(ends_lost) FROM table_name_95 WHERE locale = "norway" AND blank_ends > 17 |
What was the Margin of Victory of winning score 68-67-69-65=269? | CREATE TABLE table_name_65 (margin_of_victory VARCHAR, winning_score VARCHAR) | SELECT margin_of_victory FROM table_name_65 WHERE winning_score = 68 - 67 - 69 - 65 = 269 | ### Context: CREATE TABLE table_name_65 (margin_of_victory VARCHAR, winning_score VARCHAR) ### Question: What was the Margin of Victory of winning score 68-67-69-65=269? ### Answer: SELECT margin_of_victory FROM table_name_65 WHERE winning_score = 68 - 67 - 69 - 65 = 269 |
What is the To Par of winning score 71-66-70-67=274? | CREATE TABLE table_name_52 (to_par VARCHAR, winning_score VARCHAR) | SELECT to_par FROM table_name_52 WHERE winning_score = 71 - 66 - 70 - 67 = 274 | ### Context: CREATE TABLE table_name_52 (to_par VARCHAR, winning_score VARCHAR) ### Question: What is the To Par of winning score 71-66-70-67=274? ### Answer: SELECT to_par FROM table_name_52 WHERE winning_score = 71 - 66 - 70 - 67 = 274 |
Which tournament had a winning score of 67-61-68-67=263? | CREATE TABLE table_name_96 (tournament VARCHAR, winning_score VARCHAR) | SELECT tournament FROM table_name_96 WHERE winning_score = 67 - 61 - 68 - 67 = 263 | ### Context: CREATE TABLE table_name_96 (tournament VARCHAR, winning_score VARCHAR) ### Question: Which tournament had a winning score of 67-61-68-67=263? ### Answer: SELECT tournament FROM table_name_96 WHERE winning_score = 67 - 61 - 68 - 67 = 263 |
How many tries for are associated with 5 points and 2 tries against? | CREATE TABLE table_name_3 (tries_for VARCHAR, points VARCHAR, tries_against VARCHAR) | SELECT tries_for FROM table_name_3 WHERE points = "5" AND tries_against = "2" | ### Context: CREATE TABLE table_name_3 (tries_for VARCHAR, points VARCHAR, tries_against VARCHAR) ### Question: How many tries for are associated with 5 points and 2 tries against? ### Answer: SELECT tries_for FROM table_name_3 WHERE points = "5" AND tries_against = "2" |
What is the losing bonus associated with 0 tries for? | CREATE TABLE table_name_82 (losing_bonus VARCHAR, tries_for VARCHAR) | SELECT losing_bonus FROM table_name_82 WHERE tries_for = "0" | ### Context: CREATE TABLE table_name_82 (losing_bonus VARCHAR, tries_for VARCHAR) ### Question: What is the losing bonus associated with 0 tries for? ### Answer: SELECT losing_bonus FROM table_name_82 WHERE tries_for = "0" |
What's the highest against score that drew more than 5, and had more than 18 points? | CREATE TABLE table_name_35 (against INTEGER, drawn VARCHAR, points VARCHAR) | SELECT MAX(against) FROM table_name_35 WHERE drawn > 5 AND points > 18 | ### Context: CREATE TABLE table_name_35 (against INTEGER, drawn VARCHAR, points VARCHAR) ### Question: What's the highest against score that drew more than 5, and had more than 18 points? ### Answer: SELECT MAX(against) FROM table_name_35 WHERE drawn > 5 AND points > 18 |
What's the number of losses where played was less than 17? | CREATE TABLE table_name_33 (lost VARCHAR, played INTEGER) | SELECT COUNT(lost) FROM table_name_33 WHERE played < 17 | ### Context: CREATE TABLE table_name_33 (lost VARCHAR, played INTEGER) ### Question: What's the number of losses where played was less than 17? ### Answer: SELECT COUNT(lost) FROM table_name_33 WHERE played < 17 |
What is team ypiranga-sp's average position when they lost by less than 7? | CREATE TABLE table_name_53 (position INTEGER, team VARCHAR, lost VARCHAR) | SELECT AVG(position) FROM table_name_53 WHERE team = "ypiranga-sp" AND lost < 7 | ### Context: CREATE TABLE table_name_53 (position INTEGER, team VARCHAR, lost VARCHAR) ### Question: What is team ypiranga-sp's average position when they lost by less than 7? ### Answer: SELECT AVG(position) FROM table_name_53 WHERE team = "ypiranga-sp" AND lost < 7 |
What was the attendance for the game at groves stadium • winston-salem, nc with a result of L 0-14? | CREATE TABLE table_name_86 (attendance VARCHAR, location VARCHAR, result VARCHAR) | SELECT COUNT(attendance) FROM table_name_86 WHERE location = "groves stadium • winston-salem, nc" AND result = "l 0-14" | ### Context: CREATE TABLE table_name_86 (attendance VARCHAR, location VARCHAR, result VARCHAR) ### Question: What was the attendance for the game at groves stadium • winston-salem, nc with a result of L 0-14? ### Answer: SELECT COUNT(attendance) FROM table_name_86 WHERE location = "groves stadium • winston-salem, nc" AND result = "l 0-14" |
Who was the opponent when the result was L 0-14? | CREATE TABLE table_name_64 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_64 WHERE result = "l 0-14" | ### Context: CREATE TABLE table_name_64 (opponent VARCHAR, result VARCHAR) ### Question: Who was the opponent when the result was L 0-14? ### Answer: SELECT opponent FROM table_name_64 WHERE result = "l 0-14" |
What is the name of the position of the person whose hometown is Queens, NY? | CREATE TABLE table_name_45 (position VARCHAR, hometown VARCHAR) | SELECT position FROM table_name_45 WHERE hometown = "queens, ny" | ### Context: CREATE TABLE table_name_45 (position VARCHAR, hometown VARCHAR) ### Question: What is the name of the position of the person whose hometown is Queens, NY? ### Answer: SELECT position FROM table_name_45 WHERE hometown = "queens, ny" |
What is Tim Andree's greatest number? | CREATE TABLE table_name_50 (number INTEGER, name VARCHAR) | SELECT MAX(number) FROM table_name_50 WHERE name = "tim andree" | ### Context: CREATE TABLE table_name_50 (number INTEGER, name VARCHAR) ### Question: What is Tim Andree's greatest number? ### Answer: SELECT MAX(number) FROM table_name_50 WHERE name = "tim andree" |
What is the lowest number of the player with a hometown of Bellwood, IL? | CREATE TABLE table_name_90 (number INTEGER, hometown VARCHAR) | SELECT MIN(number) FROM table_name_90 WHERE hometown = "bellwood, il" | ### Context: CREATE TABLE table_name_90 (number INTEGER, hometown VARCHAR) ### Question: What is the lowest number of the player with a hometown of Bellwood, IL? ### Answer: SELECT MIN(number) FROM table_name_90 WHERE hometown = "bellwood, il" |
What is Score, when Attendance is 2,444? | CREATE TABLE table_name_33 (score VARCHAR, attendance VARCHAR) | SELECT score FROM table_name_33 WHERE attendance = "2,444" | ### Context: CREATE TABLE table_name_33 (score VARCHAR, attendance VARCHAR) ### Question: What is Score, when Attendance is 2,444? ### Answer: SELECT score FROM table_name_33 WHERE attendance = "2,444" |
What is Home Team, when Tie No is Replay, and when Attendance is 2,048? | CREATE TABLE table_name_44 (home_team VARCHAR, tie_no VARCHAR, attendance VARCHAR) | SELECT home_team FROM table_name_44 WHERE tie_no = "replay" AND attendance = "2,048" | ### Context: CREATE TABLE table_name_44 (home_team VARCHAR, tie_no VARCHAR, attendance VARCHAR) ### Question: What is Home Team, when Tie No is Replay, and when Attendance is 2,048? ### Answer: SELECT home_team FROM table_name_44 WHERE tie_no = "replay" AND attendance = "2,048" |
What is Score, when Tie No is 17? | CREATE TABLE table_name_81 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_81 WHERE tie_no = "17" | ### Context: CREATE TABLE table_name_81 (score VARCHAR, tie_no VARCHAR) ### Question: What is Score, when Tie No is 17? ### Answer: SELECT score FROM table_name_81 WHERE tie_no = "17" |
What is Away Team, when Tie No is 4? | CREATE TABLE table_name_16 (away_team VARCHAR, tie_no VARCHAR) | SELECT away_team FROM table_name_16 WHERE tie_no = "4" | ### Context: CREATE TABLE table_name_16 (away_team VARCHAR, tie_no VARCHAR) ### Question: What is Away Team, when Tie No is 4? ### Answer: SELECT away_team FROM table_name_16 WHERE tie_no = "4" |
What is Score, when Attendance is 3,416? | CREATE TABLE table_name_29 (score VARCHAR, attendance VARCHAR) | SELECT score FROM table_name_29 WHERE attendance = "3,416" | ### Context: CREATE TABLE table_name_29 (score VARCHAR, attendance VARCHAR) ### Question: What is Score, when Attendance is 3,416? ### Answer: SELECT score FROM table_name_29 WHERE attendance = "3,416" |
What is the sum of Away Losses with a No Result of more than 0, losses of more than 6, and matches of more than 91? | CREATE TABLE table_name_64 (Away INTEGER, matches VARCHAR, no_result VARCHAR, losses VARCHAR) | SELECT SUM(Away) AS losses FROM table_name_64 WHERE no_result > 0 AND losses > 6 AND matches > 91 | ### Context: CREATE TABLE table_name_64 (Away INTEGER, matches VARCHAR, no_result VARCHAR, losses VARCHAR) ### Question: What is the sum of Away Losses with a No Result of more than 0, losses of more than 6, and matches of more than 91? ### Answer: SELECT SUM(Away) AS losses FROM table_name_64 WHERE no_result > 0 AND losses > 6 AND matches > 91 |
What stadium was the December 29, 2008 game played at? | CREATE TABLE table_name_95 (stadium VARCHAR, date VARCHAR) | SELECT stadium FROM table_name_95 WHERE date = "december 29, 2008" | ### Context: CREATE TABLE table_name_95 (stadium VARCHAR, date VARCHAR) ### Question: What stadium was the December 29, 2008 game played at? ### Answer: SELECT stadium FROM table_name_95 WHERE date = "december 29, 2008" |
Which bowl game had a conference matchup of Ohio State vs. Texas? | CREATE TABLE table_name_77 (bowl_game VARCHAR, conference_matchups VARCHAR) | SELECT bowl_game FROM table_name_77 WHERE conference_matchups = "ohio state vs. texas" | ### Context: CREATE TABLE table_name_77 (bowl_game VARCHAR, conference_matchups VARCHAR) ### Question: Which bowl game had a conference matchup of Ohio State vs. Texas? ### Answer: SELECT bowl_game FROM table_name_77 WHERE conference_matchups = "ohio state vs. texas" |
What stadium was the Fiesta Bowl played at? | CREATE TABLE table_name_74 (stadium VARCHAR, bowl_game VARCHAR) | SELECT stadium FROM table_name_74 WHERE bowl_game = "fiesta bowl" | ### Context: CREATE TABLE table_name_74 (stadium VARCHAR, bowl_game VARCHAR) ### Question: What stadium was the Fiesta Bowl played at? ### Answer: SELECT stadium FROM table_name_74 WHERE bowl_game = "fiesta bowl" |
What was the payout in US dollars at the Insight Bowl? | CREATE TABLE table_name_59 (payout___us$__ VARCHAR, bowl_game VARCHAR) | SELECT payout___us$__ FROM table_name_59 WHERE bowl_game = "insight bowl" | ### Context: CREATE TABLE table_name_59 (payout___us$__ VARCHAR, bowl_game VARCHAR) ### Question: What was the payout in US dollars at the Insight Bowl? ### Answer: SELECT payout___us$__ FROM table_name_59 WHERE bowl_game = "insight bowl" |
What was the conference matchup in the bowl game with a $3 million payout? | CREATE TABLE table_name_81 (conference_matchups VARCHAR, payout___us$__ VARCHAR) | SELECT conference_matchups FROM table_name_81 WHERE payout___us$__ = "$3 million" | ### Context: CREATE TABLE table_name_81 (conference_matchups VARCHAR, payout___us$__ VARCHAR) ### Question: What was the conference matchup in the bowl game with a $3 million payout? ### Answer: SELECT conference_matchups FROM table_name_81 WHERE payout___us$__ = "$3 million" |
What was the conference matchup for the bowl game played in Glendale, Arizona? | CREATE TABLE table_name_66 (conference_matchups VARCHAR, city VARCHAR) | SELECT conference_matchups FROM table_name_66 WHERE city = "glendale, arizona" | ### Context: CREATE TABLE table_name_66 (conference_matchups VARCHAR, city VARCHAR) ### Question: What was the conference matchup for the bowl game played in Glendale, Arizona? ### Answer: SELECT conference_matchups FROM table_name_66 WHERE city = "glendale, arizona" |
Which Team has Tries for smaller than 10? | CREATE TABLE table_name_59 (team VARCHAR, tries_for INTEGER) | SELECT team FROM table_name_59 WHERE tries_for < 10 | ### Context: CREATE TABLE table_name_59 (team VARCHAR, tries_for INTEGER) ### Question: Which Team has Tries for smaller than 10? ### Answer: SELECT team FROM table_name_59 WHERE tries_for < 10 |
Which Tries against have Points against larger than 109? | CREATE TABLE table_name_9 (tries_against INTEGER, points_against INTEGER) | SELECT MAX(tries_against) FROM table_name_9 WHERE points_against > 109 | ### Context: CREATE TABLE table_name_9 (tries_against INTEGER, points_against INTEGER) ### Question: Which Tries against have Points against larger than 109? ### Answer: SELECT MAX(tries_against) FROM table_name_9 WHERE points_against > 109 |
What Tries against that have a Points against of 95 and Tries for larger than 20? | CREATE TABLE table_name_91 (tries_against INTEGER, points_against VARCHAR, tries_for VARCHAR) | SELECT SUM(tries_against) FROM table_name_91 WHERE points_against = 95 AND tries_for > 20 | ### Context: CREATE TABLE table_name_91 (tries_against INTEGER, points_against VARCHAR, tries_for VARCHAR) ### Question: What Tries against that have a Points against of 95 and Tries for larger than 20? ### Answer: SELECT SUM(tries_against) FROM table_name_91 WHERE points_against = 95 AND tries_for > 20 |
What Tries for has a Team of neath, and Points against larger than 109? | CREATE TABLE table_name_38 (tries_for INTEGER, team VARCHAR, points_against VARCHAR) | SELECT SUM(tries_for) FROM table_name_38 WHERE team = "neath" AND points_against > 109 | ### Context: CREATE TABLE table_name_38 (tries_for INTEGER, team VARCHAR, points_against VARCHAR) ### Question: What Tries for has a Team of neath, and Points against larger than 109? ### Answer: SELECT SUM(tries_for) FROM table_name_38 WHERE team = "neath" AND points_against > 109 |
How many Points against that have a Team of harlequins and Tries against smaller than 8? | CREATE TABLE table_name_37 (points_against INTEGER, team VARCHAR, tries_against VARCHAR) | SELECT SUM(points_against) FROM table_name_37 WHERE team = "harlequins" AND tries_against < 8 | ### Context: CREATE TABLE table_name_37 (points_against INTEGER, team VARCHAR, tries_against VARCHAR) ### Question: How many Points against that have a Team of harlequins and Tries against smaller than 8? ### Answer: SELECT SUM(points_against) FROM table_name_37 WHERE team = "harlequins" AND tries_against < 8 |
What is the power that belongs to Class A with an Identifier of CBOC-FM? | CREATE TABLE table_name_90 (power VARCHAR, class VARCHAR, identifier VARCHAR) | SELECT power FROM table_name_90 WHERE class = "a" AND identifier = "cboc-fm" | ### Context: CREATE TABLE table_name_90 (power VARCHAR, class VARCHAR, identifier VARCHAR) ### Question: What is the power that belongs to Class A with an Identifier of CBOC-FM? ### Answer: SELECT power FROM table_name_90 WHERE class = "a" AND identifier = "cboc-fm" |
Which class has a frequency of 91.9 fm? | CREATE TABLE table_name_31 (class VARCHAR, frequency VARCHAR) | SELECT class FROM table_name_31 WHERE frequency = "91.9 fm" | ### Context: CREATE TABLE table_name_31 (class VARCHAR, frequency VARCHAR) ### Question: Which class has a frequency of 91.9 fm? ### Answer: SELECT class FROM table_name_31 WHERE frequency = "91.9 fm" |
What power belongs to the LP Class and has an Identifier of CBLI? | CREATE TABLE table_name_98 (power VARCHAR, class VARCHAR, identifier VARCHAR) | SELECT power FROM table_name_98 WHERE class = "lp" AND identifier = "cbli" | ### Context: CREATE TABLE table_name_98 (power VARCHAR, class VARCHAR, identifier VARCHAR) ### Question: What power belongs to the LP Class and has an Identifier of CBLI? ### Answer: SELECT power FROM table_name_98 WHERE class = "lp" AND identifier = "cbli" |
Which city has a C1 class and Identifier of CBCD-FM? | CREATE TABLE table_name_77 (city_of_license VARCHAR, class VARCHAR, identifier VARCHAR) | SELECT city_of_license FROM table_name_77 WHERE class = "c1" AND identifier = "cbcd-fm" | ### Context: CREATE TABLE table_name_77 (city_of_license VARCHAR, class VARCHAR, identifier VARCHAR) ### Question: Which city has a C1 class and Identifier of CBCD-FM? ### Answer: SELECT city_of_license FROM table_name_77 WHERE class = "c1" AND identifier = "cbcd-fm" |
Which Power has a CBLI Identifier? | CREATE TABLE table_name_40 (power VARCHAR, identifier VARCHAR) | SELECT power FROM table_name_40 WHERE identifier = "cbli" | ### Context: CREATE TABLE table_name_40 (power VARCHAR, identifier VARCHAR) ### Question: Which Power has a CBLI Identifier? ### Answer: SELECT power FROM table_name_40 WHERE identifier = "cbli" |
What is the RECNet belonging to Class A with a Power of 3,000 watts? | CREATE TABLE table_name_75 (recnet VARCHAR, class VARCHAR, power VARCHAR) | SELECT recnet FROM table_name_75 WHERE class = "a" AND power = "3,000 watts" | ### Context: CREATE TABLE table_name_75 (recnet VARCHAR, class VARCHAR, power VARCHAR) ### Question: What is the RECNet belonging to Class A with a Power of 3,000 watts? ### Answer: SELECT recnet FROM table_name_75 WHERE class = "a" AND power = "3,000 watts" |
What is the report in the tournament that started at 12:30? | CREATE TABLE table_name_75 (report VARCHAR, time VARCHAR) | SELECT report FROM table_name_75 WHERE time = "12:30" | ### Context: CREATE TABLE table_name_75 (report VARCHAR, time VARCHAR) ### Question: What is the report in the tournament that started at 12:30? ### Answer: SELECT report FROM table_name_75 WHERE time = "12:30" |
Which 2007 has a 2003 of 1r? | CREATE TABLE table_name_81 (Id VARCHAR) | SELECT 2007 FROM table_name_81 WHERE 2003 = "1r" | ### Context: CREATE TABLE table_name_81 (Id VARCHAR) ### Question: Which 2007 has a 2003 of 1r? ### Answer: SELECT 2007 FROM table_name_81 WHERE 2003 = "1r" |
Which 2006 has a 2012 of a, and a 2011 of 3r? | CREATE TABLE table_name_76 (Id VARCHAR) | SELECT 2006 FROM table_name_76 WHERE 2012 = "a" AND 2011 = "3r" | ### Context: CREATE TABLE table_name_76 (Id VARCHAR) ### Question: Which 2006 has a 2012 of a, and a 2011 of 3r? ### Answer: SELECT 2006 FROM table_name_76 WHERE 2012 = "a" AND 2011 = "3r" |
Which 2008 has a 2002 of a, and a Tournament of australian open? | CREATE TABLE table_name_84 (tournament VARCHAR) | SELECT 2008 FROM table_name_84 WHERE 2002 = "a" AND tournament = "australian open" | ### Context: CREATE TABLE table_name_84 (tournament VARCHAR) ### Question: Which 2008 has a 2002 of a, and a Tournament of australian open? ### Answer: SELECT 2008 FROM table_name_84 WHERE 2002 = "a" AND tournament = "australian open" |
Which 2012 has a 2008 of grand slam tournaments? | CREATE TABLE table_name_47 (Id VARCHAR) | SELECT 2012 FROM table_name_47 WHERE 2008 = "grand slam tournaments" | ### Context: CREATE TABLE table_name_47 (Id VARCHAR) ### Question: Which 2012 has a 2008 of grand slam tournaments? ### Answer: SELECT 2012 FROM table_name_47 WHERE 2008 = "grand slam tournaments" |
Which 2002 has a 2009 of 2r? | CREATE TABLE table_name_96 (Id VARCHAR) | SELECT 2002 FROM table_name_96 WHERE 2009 = "2r" | ### Context: CREATE TABLE table_name_96 (Id VARCHAR) ### Question: Which 2002 has a 2009 of 2r? ### Answer: SELECT 2002 FROM table_name_96 WHERE 2009 = "2r" |
Which 2010 has a 2002 of 2r? | CREATE TABLE table_name_20 (Id VARCHAR) | SELECT 2010 FROM table_name_20 WHERE 2002 = "2r" | ### Context: CREATE TABLE table_name_20 (Id VARCHAR) ### Question: Which 2010 has a 2002 of 2r? ### Answer: SELECT 2010 FROM table_name_20 WHERE 2002 = "2r" |
What is th US A.C. in 1985 with a US hot 100 of 57? | CREATE TABLE table_name_16 (us_ac VARCHAR, year VARCHAR, us_hot_100 VARCHAR) | SELECT us_ac FROM table_name_16 WHERE year = 1985 AND us_hot_100 = "57" | ### Context: CREATE TABLE table_name_16 (us_ac VARCHAR, year VARCHAR, us_hot_100 VARCHAR) ### Question: What is th US A.C. in 1985 with a US hot 100 of 57? ### Answer: SELECT us_ac FROM table_name_16 WHERE year = 1985 AND us_hot_100 = "57" |
What is the Canada singles in 1979 with a US A.C. of 24? | CREATE TABLE table_name_75 (canada_singles VARCHAR, year VARCHAR, us_ac VARCHAR) | SELECT canada_singles FROM table_name_75 WHERE year = 1979 AND us_ac = "24" | ### Context: CREATE TABLE table_name_75 (canada_singles VARCHAR, year VARCHAR, us_ac VARCHAR) ### Question: What is the Canada singles in 1979 with a US A.C. of 24? ### Answer: SELECT canada_singles FROM table_name_75 WHERE year = 1979 AND us_ac = "24" |
What is the US A.C. in 1974? | CREATE TABLE table_name_13 (us_ac VARCHAR, year VARCHAR) | SELECT us_ac FROM table_name_13 WHERE year = 1974 | ### Context: CREATE TABLE table_name_13 (us_ac VARCHAR, year VARCHAR) ### Question: What is the US A.C. in 1974? ### Answer: SELECT us_ac FROM table_name_13 WHERE year = 1974 |
What is the average round of player Sammy Morris? | CREATE TABLE table_name_13 (round INTEGER, player VARCHAR) | SELECT AVG(round) FROM table_name_13 WHERE player = "sammy morris" | ### Context: CREATE TABLE table_name_13 (round INTEGER, player VARCHAR) ### Question: What is the average round of player Sammy Morris? ### Answer: SELECT AVG(round) FROM table_name_13 WHERE player = "sammy morris" |
What is the sum pick # of the player from round 4? | CREATE TABLE table_name_70 (pick__number INTEGER, round VARCHAR) | SELECT SUM(pick__number) FROM table_name_70 WHERE round = 4 | ### Context: CREATE TABLE table_name_70 (pick__number INTEGER, round VARCHAR) ### Question: What is the sum pick # of the player from round 4? ### Answer: SELECT SUM(pick__number) FROM table_name_70 WHERE round = 4 |
Who is the player from Arizona State? | CREATE TABLE table_name_40 (player VARCHAR, college VARCHAR) | SELECT player FROM table_name_40 WHERE college = "arizona state" | ### Context: CREATE TABLE table_name_40 (player VARCHAR, college VARCHAR) ### Question: Who is the player from Arizona State? ### Answer: SELECT player FROM table_name_40 WHERE college = "arizona state" |
What is the sum of the round of the player who plays linebacker and has a pick # greater than 251? | CREATE TABLE table_name_38 (round INTEGER, position VARCHAR, pick__number VARCHAR) | SELECT SUM(round) FROM table_name_38 WHERE position = "linebacker" AND pick__number > 251 | ### Context: CREATE TABLE table_name_38 (round INTEGER, position VARCHAR, pick__number VARCHAR) ### Question: What is the sum of the round of the player who plays linebacker and has a pick # greater than 251? ### Answer: SELECT SUM(round) FROM table_name_38 WHERE position = "linebacker" AND pick__number > 251 |
Who is the player from Arizona state with a round less than 7? | CREATE TABLE table_name_84 (player VARCHAR, round VARCHAR, college VARCHAR) | SELECT player FROM table_name_84 WHERE round < 7 AND college = "arizona state" | ### Context: CREATE TABLE table_name_84 (player VARCHAR, round VARCHAR, college VARCHAR) ### Question: Who is the player from Arizona state with a round less than 7? ### Answer: SELECT player FROM table_name_84 WHERE round < 7 AND college = "arizona state" |
What's the highest week for the day of October 21, 1956? | CREATE TABLE table_name_66 (week INTEGER, date VARCHAR) | SELECT MAX(week) FROM table_name_66 WHERE date = "october 21, 1956" | ### Context: CREATE TABLE table_name_66 (week INTEGER, date VARCHAR) ### Question: What's the highest week for the day of October 21, 1956? ### Answer: SELECT MAX(week) FROM table_name_66 WHERE date = "october 21, 1956" |
What is the least recent week number when the attendance is 16,562? | CREATE TABLE table_name_1 (week INTEGER, attendance VARCHAR) | SELECT MIN(week) FROM table_name_1 WHERE attendance = 16 OFFSET 562 | ### Context: CREATE TABLE table_name_1 (week INTEGER, attendance VARCHAR) ### Question: What is the least recent week number when the attendance is 16,562? ### Answer: SELECT MIN(week) FROM table_name_1 WHERE attendance = 16 OFFSET 562 |
What is Country , when Rider is Lindsay Porter? | CREATE TABLE table_name_63 (country VARCHAR, rider VARCHAR) | SELECT country FROM table_name_63 WHERE rider = "lindsay porter" | ### Context: CREATE TABLE table_name_63 (country VARCHAR, rider VARCHAR) ### Question: What is Country , when Rider is Lindsay Porter? ### Answer: SELECT country FROM table_name_63 WHERE rider = "lindsay porter" |
What is Time, when Speed is 87.49mph? | CREATE TABLE table_name_15 (time VARCHAR, speed VARCHAR) | SELECT time FROM table_name_15 WHERE speed = "87.49mph" | ### Context: CREATE TABLE table_name_15 (time VARCHAR, speed VARCHAR) ### Question: What is Time, when Speed is 87.49mph? ### Answer: SELECT time FROM table_name_15 WHERE speed = "87.49mph" |
What is Country, when Points are more than 12? | CREATE TABLE table_name_30 (country VARCHAR, points INTEGER) | SELECT country FROM table_name_30 WHERE points > 12 | ### Context: CREATE TABLE table_name_30 (country VARCHAR, points INTEGER) ### Question: What is Country, when Points are more than 12? ### Answer: SELECT country FROM table_name_30 WHERE points > 12 |
What is Speed, when Time is 1:24.23.0? | CREATE TABLE table_name_98 (speed VARCHAR, time VARCHAR) | SELECT speed FROM table_name_98 WHERE time = "1:24.23.0" | ### Context: CREATE TABLE table_name_98 (speed VARCHAR, time VARCHAR) ### Question: What is Speed, when Time is 1:24.23.0? ### Answer: SELECT speed FROM table_name_98 WHERE time = "1:24.23.0" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.