question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
On 9/3/97, what was the score that resulted in a w?
CREATE TABLE table_name_72 (score VARCHAR, result VARCHAR, date VARCHAR)
SELECT score FROM table_name_72 WHERE result = "w" AND date = "9/3/97"
### Context: CREATE TABLE table_name_72 (score VARCHAR, result VARCHAR, date VARCHAR) ### Question: On 9/3/97, what was the score that resulted in a w? ### Answer: SELECT score FROM table_name_72 WHERE result = "w" AND date = "9/3/97"
Who has a roll value of 422?
CREATE TABLE table_name_35 (name VARCHAR, roll VARCHAR)
SELECT name FROM table_name_35 WHERE roll = 422
### Context: CREATE TABLE table_name_35 (name VARCHAR, roll VARCHAR) ### Question: Who has a roll value of 422? ### Answer: SELECT name FROM table_name_35 WHERE roll = 422
In what area is the decile value 10?
CREATE TABLE table_name_44 (area VARCHAR, decile VARCHAR)
SELECT area FROM table_name_44 WHERE decile = 10
### Context: CREATE TABLE table_name_44 (area VARCHAR, decile VARCHAR) ### Question: In what area is the decile value 10? ### Answer: SELECT area FROM table_name_44 WHERE decile = 10
What is the highest decile value with a roll greater than 301 in Hauraki?
CREATE TABLE table_name_46 (decile INTEGER, roll VARCHAR, area VARCHAR)
SELECT MAX(decile) FROM table_name_46 WHERE roll > 301 AND area = "hauraki"
### Context: CREATE TABLE table_name_46 (decile INTEGER, roll VARCHAR, area VARCHAR) ### Question: What is the highest decile value with a roll greater than 301 in Hauraki? ### Answer: SELECT MAX(decile) FROM table_name_46 WHERE roll > 301 AND area = "hauraki"
Which Points classification has a Trofeo Fast Team of metauro mobili-pinarello, and a Stage of 6?
CREATE TABLE table_name_85 (points_classification VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR)
SELECT points_classification FROM table_name_85 WHERE trofeo_fast_team = "metauro mobili-pinarello" AND stage = "6"
### Context: CREATE TABLE table_name_85 (points_classification VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR) ### Question: Which Points classification has a Trofeo Fast Team of metauro mobili-pinarello, and a Stage of 6? ### Answer: SELECT points_classification FROM table_name_85 WHERE trofeo_fast_team = "metauro mobili-pinarello" AND stage = "6"
Which stage has a Winner of lucien van impe?
CREATE TABLE table_name_19 (stage VARCHAR, winner VARCHAR)
SELECT stage FROM table_name_19 WHERE winner = "lucien van impe"
### Context: CREATE TABLE table_name_19 (stage VARCHAR, winner VARCHAR) ### Question: Which stage has a Winner of lucien van impe? ### Answer: SELECT stage FROM table_name_19 WHERE winner = "lucien van impe"
Which Trofeo Fast Team has a Winner of alessandro paganessi?
CREATE TABLE table_name_10 (trofeo_fast_team VARCHAR, winner VARCHAR)
SELECT trofeo_fast_team FROM table_name_10 WHERE winner = "alessandro paganessi"
### Context: CREATE TABLE table_name_10 (trofeo_fast_team VARCHAR, winner VARCHAR) ### Question: Which Trofeo Fast Team has a Winner of alessandro paganessi? ### Answer: SELECT trofeo_fast_team FROM table_name_10 WHERE winner = "alessandro paganessi"
Which General classification has a Stage of 7?
CREATE TABLE table_name_95 (general_classification VARCHAR, stage VARCHAR)
SELECT general_classification FROM table_name_95 WHERE stage = "7"
### Context: CREATE TABLE table_name_95 (general_classification VARCHAR, stage VARCHAR) ### Question: Which General classification has a Stage of 7? ### Answer: SELECT general_classification FROM table_name_95 WHERE stage = "7"
Which Winner has a Trofeo Fast Team of metauro mobili-pinarello, and a General classification of giuseppe saronni?
CREATE TABLE table_name_78 (winner VARCHAR, trofeo_fast_team VARCHAR, general_classification VARCHAR)
SELECT winner FROM table_name_78 WHERE trofeo_fast_team = "metauro mobili-pinarello" AND general_classification = "giuseppe saronni"
### Context: CREATE TABLE table_name_78 (winner VARCHAR, trofeo_fast_team VARCHAR, general_classification VARCHAR) ### Question: Which Winner has a Trofeo Fast Team of metauro mobili-pinarello, and a General classification of giuseppe saronni? ### Answer: SELECT winner FROM table_name_78 WHERE trofeo_fast_team = "metauro mobili-pinarello" AND general_classification = "giuseppe saronni"
What's the report for the mosport park circuit?
CREATE TABLE table_name_67 (report VARCHAR, circuit VARCHAR)
SELECT report FROM table_name_67 WHERE circuit = "mosport park"
### Context: CREATE TABLE table_name_67 (report VARCHAR, circuit VARCHAR) ### Question: What's the report for the mosport park circuit? ### Answer: SELECT report FROM table_name_67 WHERE circuit = "mosport park"
Who has the pole position for the nürburgring circuit?
CREATE TABLE table_name_13 (pole_position VARCHAR, circuit VARCHAR)
SELECT pole_position FROM table_name_13 WHERE circuit = "nürburgring"
### Context: CREATE TABLE table_name_13 (pole_position VARCHAR, circuit VARCHAR) ### Question: Who has the pole position for the nürburgring circuit? ### Answer: SELECT pole_position FROM table_name_13 WHERE circuit = "nürburgring"
When was pedro rodríguez the winning driver?
CREATE TABLE table_name_77 (date VARCHAR, winning_driver VARCHAR)
SELECT date FROM table_name_77 WHERE winning_driver = "pedro rodríguez"
### Context: CREATE TABLE table_name_77 (date VARCHAR, winning_driver VARCHAR) ### Question: When was pedro rodríguez the winning driver? ### Answer: SELECT date FROM table_name_77 WHERE winning_driver = "pedro rodríguez"
What's the report for the mexican grand prix?
CREATE TABLE table_name_92 (report VARCHAR, race VARCHAR)
SELECT report FROM table_name_92 WHERE race = "mexican grand prix"
### Context: CREATE TABLE table_name_92 (report VARCHAR, race VARCHAR) ### Question: What's the report for the mexican grand prix? ### Answer: SELECT report FROM table_name_92 WHERE race = "mexican grand prix"
What is nigel mansell's time/retired?
CREATE TABLE table_name_6 (time_retired VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_name_6 WHERE driver = "nigel mansell"
### Context: CREATE TABLE table_name_6 (time_retired VARCHAR, driver VARCHAR) ### Question: What is nigel mansell's time/retired? ### Answer: SELECT time_retired FROM table_name_6 WHERE driver = "nigel mansell"
What team was the away team at Junction Oval?
CREATE TABLE table_name_20 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_20 WHERE venue = "junction oval"
### Context: CREATE TABLE table_name_20 (away_team VARCHAR, venue VARCHAR) ### Question: What team was the away team at Junction Oval? ### Answer: SELECT away_team FROM table_name_20 WHERE venue = "junction oval"
What is the home team when the visiting team is the Mavericks?
CREATE TABLE table_name_26 (home VARCHAR, visitor VARCHAR)
SELECT home FROM table_name_26 WHERE visitor = "mavericks"
### Context: CREATE TABLE table_name_26 (home VARCHAR, visitor VARCHAR) ### Question: What is the home team when the visiting team is the Mavericks? ### Answer: SELECT home FROM table_name_26 WHERE visitor = "mavericks"
What was the average year for a coin that had a mintage smaller than 10,000?
CREATE TABLE table_name_13 (year INTEGER, mintage INTEGER)
SELECT AVG(year) FROM table_name_13 WHERE mintage < 10 OFFSET 000
### Context: CREATE TABLE table_name_13 (year INTEGER, mintage INTEGER) ### Question: What was the average year for a coin that had a mintage smaller than 10,000? ### Answer: SELECT AVG(year) FROM table_name_13 WHERE mintage < 10 OFFSET 000
What is he Atsushi Aoki when the Black Tiger V is ibushi (16:35)?
CREATE TABLE table_name_96 (atsushi_aoki VARCHAR, black_tiger_v VARCHAR)
SELECT atsushi_aoki FROM table_name_96 WHERE black_tiger_v = "ibushi (16:35)"
### Context: CREATE TABLE table_name_96 (atsushi_aoki VARCHAR, black_tiger_v VARCHAR) ### Question: What is he Atsushi Aoki when the Black Tiger V is ibushi (16:35)? ### Answer: SELECT atsushi_aoki FROM table_name_96 WHERE black_tiger_v = "ibushi (16:35)"
What is the Akira when Tiger Mask IV is Akira (10:05)?
CREATE TABLE table_name_94 (akira VARCHAR, tiger_mask_iv VARCHAR)
SELECT akira FROM table_name_94 WHERE tiger_mask_iv = "akira (10:05)"
### Context: CREATE TABLE table_name_94 (akira VARCHAR, tiger_mask_iv VARCHAR) ### Question: What is the Akira when Tiger Mask IV is Akira (10:05)? ### Answer: SELECT akira FROM table_name_94 WHERE tiger_mask_iv = "akira (10:05)"
What is the corresponding Akira when Milano Collection A.T is Milano (10:29)?
CREATE TABLE table_name_58 (akira VARCHAR, milano_collection_at VARCHAR)
SELECT akira FROM table_name_58 WHERE milano_collection_at = "milano (10:29)"
### Context: CREATE TABLE table_name_58 (akira VARCHAR, milano_collection_at VARCHAR) ### Question: What is the corresponding Akira when Milano Collection A.T is Milano (10:29)? ### Answer: SELECT akira FROM table_name_58 WHERE milano_collection_at = "milano (10:29)"
What is Block A when Prince Devitt is Devitt (9:53)?
CREATE TABLE table_name_49 (block_a VARCHAR, prince_devitt VARCHAR)
SELECT block_a FROM table_name_49 WHERE prince_devitt = "devitt (9:53)"
### Context: CREATE TABLE table_name_49 (block_a VARCHAR, prince_devitt VARCHAR) ### Question: What is Block A when Prince Devitt is Devitt (9:53)? ### Answer: SELECT block_a FROM table_name_49 WHERE prince_devitt = "devitt (9:53)"
What is the Akira when Prince Devitt is Devitt (7:20)?
CREATE TABLE table_name_99 (akira VARCHAR, prince_devitt VARCHAR)
SELECT akira FROM table_name_99 WHERE prince_devitt = "devitt (7:20)"
### Context: CREATE TABLE table_name_99 (akira VARCHAR, prince_devitt VARCHAR) ### Question: What is the Akira when Prince Devitt is Devitt (7:20)? ### Answer: SELECT akira FROM table_name_99 WHERE prince_devitt = "devitt (7:20)"
What is the Prince Devitt when Block A is Yamato?
CREATE TABLE table_name_49 (prince_devitt VARCHAR, block_a VARCHAR)
SELECT prince_devitt FROM table_name_49 WHERE block_a = "yamato"
### Context: CREATE TABLE table_name_49 (prince_devitt VARCHAR, block_a VARCHAR) ### Question: What is the Prince Devitt when Block A is Yamato? ### Answer: SELECT prince_devitt FROM table_name_49 WHERE block_a = "yamato"
I want the league one/second division for club of millwall
CREATE TABLE table_name_80 (league_one_second_division VARCHAR, club VARCHAR)
SELECT league_one_second_division FROM table_name_80 WHERE club = "millwall"
### Context: CREATE TABLE table_name_80 (league_one_second_division VARCHAR, club VARCHAR) ### Question: I want the league one/second division for club of millwall ### Answer: SELECT league_one_second_division FROM table_name_80 WHERE club = "millwall"
What was the score of the home team when they played carlton?
CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_77 WHERE away_team = "carlton"
### Context: CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the score of the home team when they played carlton? ### Answer: SELECT home_team AS score FROM table_name_77 WHERE away_team = "carlton"
How many points did the visiting team score at south melbourne?
CREATE TABLE table_name_94 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_94 WHERE home_team = "south melbourne"
### Context: CREATE TABLE table_name_94 (away_team VARCHAR, home_team VARCHAR) ### Question: How many points did the visiting team score at south melbourne? ### Answer: SELECT away_team AS score FROM table_name_94 WHERE home_team = "south melbourne"
What is the total Crowd number for the Away team of Hawthorn?
CREATE TABLE table_name_15 (crowd VARCHAR, away_team VARCHAR)
SELECT COUNT(crowd) FROM table_name_15 WHERE away_team = "hawthorn"
### Context: CREATE TABLE table_name_15 (crowd VARCHAR, away_team VARCHAR) ### Question: What is the total Crowd number for the Away team of Hawthorn? ### Answer: SELECT COUNT(crowd) FROM table_name_15 WHERE away_team = "hawthorn"
What did the team score when playing against home in geelong?
CREATE TABLE table_name_72 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_72 WHERE away_team = "geelong"
### Context: CREATE TABLE table_name_72 (home_team VARCHAR, away_team VARCHAR) ### Question: What did the team score when playing against home in geelong? ### Answer: SELECT home_team AS score FROM table_name_72 WHERE away_team = "geelong"
How many people watched when st kilda played at home?
CREATE TABLE table_name_79 (crowd VARCHAR, home_team VARCHAR)
SELECT crowd FROM table_name_79 WHERE home_team = "st kilda"
### Context: CREATE TABLE table_name_79 (crowd VARCHAR, home_team VARCHAR) ### Question: How many people watched when st kilda played at home? ### Answer: SELECT crowd FROM table_name_79 WHERE home_team = "st kilda"
Who was the away team when the crowd was larger than 41,451?
CREATE TABLE table_name_69 (away_team VARCHAR, crowd INTEGER)
SELECT away_team FROM table_name_69 WHERE crowd > 41 OFFSET 451
### Context: CREATE TABLE table_name_69 (away_team VARCHAR, crowd INTEGER) ### Question: Who was the away team when the crowd was larger than 41,451? ### Answer: SELECT away_team FROM table_name_69 WHERE crowd > 41 OFFSET 451
Who was the home team when the venue was Junction Oval?
CREATE TABLE table_name_82 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_82 WHERE venue = "junction oval"
### Context: CREATE TABLE table_name_82 (home_team VARCHAR, venue VARCHAR) ### Question: Who was the home team when the venue was Junction Oval? ### Answer: SELECT home_team FROM table_name_82 WHERE venue = "junction oval"
I want to know the time which has attendance of 66,772
CREATE TABLE table_name_82 (time VARCHAR, attendance VARCHAR)
SELECT time FROM table_name_82 WHERE attendance = "66,772"
### Context: CREATE TABLE table_name_82 (time VARCHAR, attendance VARCHAR) ### Question: I want to know the time which has attendance of 66,772 ### Answer: SELECT time FROM table_name_82 WHERE attendance = "66,772"
Name the opponent that has attendance of 76,965
CREATE TABLE table_name_86 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_86 WHERE attendance = "76,965"
### Context: CREATE TABLE table_name_86 (opponent VARCHAR, attendance VARCHAR) ### Question: Name the opponent that has attendance of 76,965 ### Answer: SELECT opponent FROM table_name_86 WHERE attendance = "76,965"
Tell me the week that has an attendance of 78,301
CREATE TABLE table_name_89 (week VARCHAR, attendance VARCHAR)
SELECT week FROM table_name_89 WHERE attendance = "78,301"
### Context: CREATE TABLE table_name_89 (week VARCHAR, attendance VARCHAR) ### Question: Tell me the week that has an attendance of 78,301 ### Answer: SELECT week FROM table_name_89 WHERE attendance = "78,301"
I want to know the opponent that ha a week of 3
CREATE TABLE table_name_61 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_61 WHERE week = "3"
### Context: CREATE TABLE table_name_61 (opponent VARCHAR, week VARCHAR) ### Question: I want to know the opponent that ha a week of 3 ### Answer: SELECT opponent FROM table_name_61 WHERE week = "3"
How many were in attendance on 14 April 2007?
CREATE TABLE table_name_50 (attendance INTEGER, date VARCHAR)
SELECT MIN(attendance) FROM table_name_50 WHERE date = "14 april 2007"
### Context: CREATE TABLE table_name_50 (attendance INTEGER, date VARCHAR) ### Question: How many were in attendance on 14 April 2007? ### Answer: SELECT MIN(attendance) FROM table_name_50 WHERE date = "14 april 2007"
What is catcher Josh Donaldson's pick number?
CREATE TABLE table_name_11 (pick VARCHAR, position VARCHAR, player VARCHAR)
SELECT pick FROM table_name_11 WHERE position = "catcher" AND player = "josh donaldson"
### Context: CREATE TABLE table_name_11 (pick VARCHAR, position VARCHAR, player VARCHAR) ### Question: What is catcher Josh Donaldson's pick number? ### Answer: SELECT pick FROM table_name_11 WHERE position = "catcher" AND player = "josh donaldson"
Which players plays at Akron College?
CREATE TABLE table_name_25 (player VARCHAR, college VARCHAR)
SELECT player FROM table_name_25 WHERE college = "akron"
### Context: CREATE TABLE table_name_25 (player VARCHAR, college VARCHAR) ### Question: Which players plays at Akron College? ### Answer: SELECT player FROM table_name_25 WHERE college = "akron"
Which college does the player jon hameister-ries play for?
CREATE TABLE table_name_93 (college VARCHAR, player VARCHAR)
SELECT college FROM table_name_93 WHERE player = "jon hameister-ries"
### Context: CREATE TABLE table_name_93 (college VARCHAR, player VARCHAR) ### Question: Which college does the player jon hameister-ries play for? ### Answer: SELECT college FROM table_name_93 WHERE player = "jon hameister-ries"
What is the nationality of the player with a pick larger than 21 from the College of the Sequoias?
CREATE TABLE table_name_14 (nationality VARCHAR, pick VARCHAR, college_high_school_club VARCHAR)
SELECT nationality FROM table_name_14 WHERE pick > 21 AND college_high_school_club = "college of the sequoias"
### Context: CREATE TABLE table_name_14 (nationality VARCHAR, pick VARCHAR, college_high_school_club VARCHAR) ### Question: What is the nationality of the player with a pick larger than 21 from the College of the Sequoias? ### Answer: SELECT nationality FROM table_name_14 WHERE pick > 21 AND college_high_school_club = "college of the sequoias"
I want the result for goals which has goals of deacon 6/6
CREATE TABLE table_name_52 (result VARCHAR, goals VARCHAR)
SELECT result FROM table_name_52 WHERE goals = "deacon 6/6"
### Context: CREATE TABLE table_name_52 (result VARCHAR, goals VARCHAR) ### Question: I want the result for goals which has goals of deacon 6/6 ### Answer: SELECT result FROM table_name_52 WHERE goals = "deacon 6/6"
Which competition was at wilderspool?
CREATE TABLE table_name_28 (competition VARCHAR, venue VARCHAR)
SELECT competition FROM table_name_28 WHERE venue = "wilderspool"
### Context: CREATE TABLE table_name_28 (competition VARCHAR, venue VARCHAR) ### Question: Which competition was at wilderspool? ### Answer: SELECT competition FROM table_name_28 WHERE venue = "wilderspool"
Tell me the venue for score of 82-0
CREATE TABLE table_name_58 (venue VARCHAR, score VARCHAR)
SELECT venue FROM table_name_58 WHERE score = "82-0"
### Context: CREATE TABLE table_name_58 (venue VARCHAR, score VARCHAR) ### Question: Tell me the venue for score of 82-0 ### Answer: SELECT venue FROM table_name_58 WHERE score = "82-0"
I want the date with the venue of mcalpine stadium
CREATE TABLE table_name_68 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_68 WHERE venue = "mcalpine stadium"
### Context: CREATE TABLE table_name_68 (date VARCHAR, venue VARCHAR) ### Question: I want the date with the venue of mcalpine stadium ### Answer: SELECT date FROM table_name_68 WHERE venue = "mcalpine stadium"
Tell me the goals for score of 38-28
CREATE TABLE table_name_54 (goals VARCHAR, score VARCHAR)
SELECT goals FROM table_name_54 WHERE score = "38-28"
### Context: CREATE TABLE table_name_54 (goals VARCHAR, score VARCHAR) ### Question: Tell me the goals for score of 38-28 ### Answer: SELECT goals FROM table_name_54 WHERE score = "38-28"
Tell me the least Grid with points more than 11 and drivers being sébastien bourdais with laps less than 67
CREATE TABLE table_name_96 (grid INTEGER, laps VARCHAR, points VARCHAR, driver VARCHAR)
SELECT MIN(grid) FROM table_name_96 WHERE points > 11 AND driver = "sébastien bourdais" AND laps < 67
### Context: CREATE TABLE table_name_96 (grid INTEGER, laps VARCHAR, points VARCHAR, driver VARCHAR) ### Question: Tell me the least Grid with points more than 11 and drivers being sébastien bourdais with laps less than 67 ### Answer: SELECT MIN(grid) FROM table_name_96 WHERE points > 11 AND driver = "sébastien bourdais" AND laps < 67
Name the most laps for grid more than 9 and the driver being jan heylen
CREATE TABLE table_name_9 (laps INTEGER, grid VARCHAR, driver VARCHAR)
SELECT MAX(laps) FROM table_name_9 WHERE grid > 9 AND driver = "jan heylen"
### Context: CREATE TABLE table_name_9 (laps INTEGER, grid VARCHAR, driver VARCHAR) ### Question: Name the most laps for grid more than 9 and the driver being jan heylen ### Answer: SELECT MAX(laps) FROM table_name_9 WHERE grid > 9 AND driver = "jan heylen"
What is the grid when the laps were 24?
CREATE TABLE table_name_69 (grid VARCHAR, laps VARCHAR)
SELECT COUNT(grid) FROM table_name_69 WHERE laps = 24
### Context: CREATE TABLE table_name_69 (grid VARCHAR, laps VARCHAR) ### Question: What is the grid when the laps were 24? ### Answer: SELECT COUNT(grid) FROM table_name_69 WHERE laps = 24
Who constructed Chris Amon's car?
CREATE TABLE table_name_77 (constructor VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_77 WHERE driver = "chris amon"
### Context: CREATE TABLE table_name_77 (constructor VARCHAR, driver VARCHAR) ### Question: Who constructed Chris Amon's car? ### Answer: SELECT constructor FROM table_name_77 WHERE driver = "chris amon"
What was Jack Brabham's highest grid when his laps were more than 90?
CREATE TABLE table_name_76 (grid INTEGER, driver VARCHAR, laps VARCHAR)
SELECT MAX(grid) FROM table_name_76 WHERE driver = "jack brabham" AND laps > 90
### Context: CREATE TABLE table_name_76 (grid INTEGER, driver VARCHAR, laps VARCHAR) ### Question: What was Jack Brabham's highest grid when his laps were more than 90? ### Answer: SELECT MAX(grid) FROM table_name_76 WHERE driver = "jack brabham" AND laps > 90
What was CHris Amon's highest lap when his grid was 4?
CREATE TABLE table_name_31 (laps INTEGER, driver VARCHAR, grid VARCHAR)
SELECT MAX(laps) FROM table_name_31 WHERE driver = "chris amon" AND grid < 4
### Context: CREATE TABLE table_name_31 (laps INTEGER, driver VARCHAR, grid VARCHAR) ### Question: What was CHris Amon's highest lap when his grid was 4? ### Answer: SELECT MAX(laps) FROM table_name_31 WHERE driver = "chris amon" AND grid < 4
Where did Hawthorn have their away match against North Melbourne?
CREATE TABLE table_name_50 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_50 WHERE away_team = "hawthorn"
### Context: CREATE TABLE table_name_50 (venue VARCHAR, away_team VARCHAR) ### Question: Where did Hawthorn have their away match against North Melbourne? ### Answer: SELECT venue FROM table_name_50 WHERE away_team = "hawthorn"
What was the home team score at Richmond's away game against Footscray?
CREATE TABLE table_name_17 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_17 WHERE away_team = "richmond"
### Context: CREATE TABLE table_name_17 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home team score at Richmond's away game against Footscray? ### Answer: SELECT home_team AS score FROM table_name_17 WHERE away_team = "richmond"
What is the size of the crowd for the home team of Footscray?
CREATE TABLE table_name_28 (crowd VARCHAR, home_team VARCHAR)
SELECT crowd FROM table_name_28 WHERE home_team = "footscray"
### Context: CREATE TABLE table_name_28 (crowd VARCHAR, home_team VARCHAR) ### Question: What is the size of the crowd for the home team of Footscray? ### Answer: SELECT crowd FROM table_name_28 WHERE home_team = "footscray"
What is the Time/Retired for the car going 42 Laps?
CREATE TABLE table_name_2 (time_retired VARCHAR, laps VARCHAR)
SELECT time_retired FROM table_name_2 WHERE laps = 42
### Context: CREATE TABLE table_name_2 (time_retired VARCHAR, laps VARCHAR) ### Question: What is the Time/Retired for the car going 42 Laps? ### Answer: SELECT time_retired FROM table_name_2 WHERE laps = 42
How many laps for alexander wurz with a grid under 12?
CREATE TABLE table_name_22 (laps VARCHAR, grid VARCHAR, driver VARCHAR)
SELECT COUNT(laps) FROM table_name_22 WHERE grid < 12 AND driver = "alexander wurz"
### Context: CREATE TABLE table_name_22 (laps VARCHAR, grid VARCHAR, driver VARCHAR) ### Question: How many laps for alexander wurz with a grid under 12? ### Answer: SELECT COUNT(laps) FROM table_name_22 WHERE grid < 12 AND driver = "alexander wurz"
What is the lowest evening gown score a contestant with an average less than 8.23, an interview score of 8.11, and a swimsuit larger than 7.84 has?
CREATE TABLE table_name_17 (evening_gown INTEGER, swimsuit VARCHAR, average VARCHAR, interview VARCHAR)
SELECT MIN(evening_gown) FROM table_name_17 WHERE average < 8.23 AND interview = 8.11 AND swimsuit > 7.84
### Context: CREATE TABLE table_name_17 (evening_gown INTEGER, swimsuit VARCHAR, average VARCHAR, interview VARCHAR) ### Question: What is the lowest evening gown score a contestant with an average less than 8.23, an interview score of 8.11, and a swimsuit larger than 7.84 has? ### Answer: SELECT MIN(evening_gown) FROM table_name_17 WHERE average < 8.23 AND interview = 8.11 AND swimsuit > 7.84
What is the total interview score a contestant from Indiana with an average smaller than 8.3 has?
CREATE TABLE table_name_36 (interview VARCHAR, state VARCHAR, average VARCHAR)
SELECT COUNT(interview) FROM table_name_36 WHERE state = "indiana" AND average < 8.3
### Context: CREATE TABLE table_name_36 (interview VARCHAR, state VARCHAR, average VARCHAR) ### Question: What is the total interview score a contestant from Indiana with an average smaller than 8.3 has? ### Answer: SELECT COUNT(interview) FROM table_name_36 WHERE state = "indiana" AND average < 8.3
What is the highest swimsuit a contestant from Kansas with an average larger than 8.48, an interview higher than 8.58, and an evening gown higher than 8.82 has?
CREATE TABLE table_name_69 (swimsuit INTEGER, state VARCHAR, evening_gown VARCHAR, average VARCHAR, interview VARCHAR)
SELECT MAX(swimsuit) FROM table_name_69 WHERE average > 8.48 AND interview > 8.58 AND evening_gown > 8.82 AND state = "kansas"
### Context: CREATE TABLE table_name_69 (swimsuit INTEGER, state VARCHAR, evening_gown VARCHAR, average VARCHAR, interview VARCHAR) ### Question: What is the highest swimsuit a contestant from Kansas with an average larger than 8.48, an interview higher than 8.58, and an evening gown higher than 8.82 has? ### Answer: SELECT MAX(swimsuit) FROM table_name_69 WHERE average > 8.48 AND interview > 8.58 AND evening_gown > 8.82 AND state = "kansas"
What is the average interview score of a contestant from Louisiana with an evening gown smaller than 8.82?
CREATE TABLE table_name_29 (interview INTEGER, evening_gown VARCHAR, state VARCHAR)
SELECT AVG(interview) FROM table_name_29 WHERE evening_gown < 8.82 AND state = "louisiana"
### Context: CREATE TABLE table_name_29 (interview INTEGER, evening_gown VARCHAR, state VARCHAR) ### Question: What is the average interview score of a contestant from Louisiana with an evening gown smaller than 8.82? ### Answer: SELECT AVG(interview) FROM table_name_29 WHERE evening_gown < 8.82 AND state = "louisiana"
What prefix has Haloalkane as the chemical class?
CREATE TABLE table_name_4 (prefix VARCHAR, chemical_class VARCHAR)
SELECT prefix FROM table_name_4 WHERE chemical_class = "haloalkane"
### Context: CREATE TABLE table_name_4 (prefix VARCHAR, chemical_class VARCHAR) ### Question: What prefix has Haloalkane as the chemical class? ### Answer: SELECT prefix FROM table_name_4 WHERE chemical_class = "haloalkane"
Which example has rx as the formula?
CREATE TABLE table_name_36 (example VARCHAR, formula VARCHAR)
SELECT example FROM table_name_36 WHERE formula = "rx"
### Context: CREATE TABLE table_name_36 (example VARCHAR, formula VARCHAR) ### Question: Which example has rx as the formula? ### Answer: SELECT example FROM table_name_36 WHERE formula = "rx"
Which chemical class uses the example Chloroethane (ethyl chloride)?
CREATE TABLE table_name_90 (chemical_class VARCHAR, example VARCHAR)
SELECT chemical_class FROM table_name_90 WHERE example = "chloroethane (ethyl chloride)"
### Context: CREATE TABLE table_name_90 (chemical_class VARCHAR, example VARCHAR) ### Question: Which chemical class uses the example Chloroethane (ethyl chloride)? ### Answer: SELECT chemical_class FROM table_name_90 WHERE example = "chloroethane (ethyl chloride)"
What prefix has Bromo as the group?
CREATE TABLE table_name_78 (prefix VARCHAR, group VARCHAR)
SELECT prefix FROM table_name_78 WHERE group = "bromo"
### Context: CREATE TABLE table_name_78 (prefix VARCHAR, group VARCHAR) ### Question: What prefix has Bromo as the group? ### Answer: SELECT prefix FROM table_name_78 WHERE group = "bromo"
What is the chemical class for ri?
CREATE TABLE table_name_33 (chemical_class VARCHAR, formula VARCHAR)
SELECT chemical_class FROM table_name_33 WHERE formula = "ri"
### Context: CREATE TABLE table_name_33 (chemical_class VARCHAR, formula VARCHAR) ### Question: What is the chemical class for ri? ### Answer: SELECT chemical_class FROM table_name_33 WHERE formula = "ri"
What prefix has chemical class Iodoalkane?
CREATE TABLE table_name_73 (prefix VARCHAR, chemical_class VARCHAR)
SELECT prefix FROM table_name_73 WHERE chemical_class = "iodoalkane"
### Context: CREATE TABLE table_name_73 (prefix VARCHAR, chemical_class VARCHAR) ### Question: What prefix has chemical class Iodoalkane? ### Answer: SELECT prefix FROM table_name_73 WHERE chemical_class = "iodoalkane"
What is the rank of Lee Trevino, who had less than 27 wins?
CREATE TABLE table_name_89 (rank INTEGER, player VARCHAR, wins VARCHAR)
SELECT SUM(rank) FROM table_name_89 WHERE player = "lee trevino" AND wins < 27
### Context: CREATE TABLE table_name_89 (rank INTEGER, player VARCHAR, wins VARCHAR) ### Question: What is the rank of Lee Trevino, who had less than 27 wins? ### Answer: SELECT SUM(rank) FROM table_name_89 WHERE player = "lee trevino" AND wins < 27
What date did the show with a series larger than 40, production code smaller than 213, and a season number larger than 11 air?
CREATE TABLE table_name_14 (original_air_date VARCHAR, season_no VARCHAR, series_no VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_name_14 WHERE series_no > 40 AND production_code < 213 AND season_no > 11
### Context: CREATE TABLE table_name_14 (original_air_date VARCHAR, season_no VARCHAR, series_no VARCHAR, production_code VARCHAR) ### Question: What date did the show with a series larger than 40, production code smaller than 213, and a season number larger than 11 air? ### Answer: SELECT original_air_date FROM table_name_14 WHERE series_no > 40 AND production_code < 213 AND season_no > 11
Who wrote the series number 49 with a season larger than 4?
CREATE TABLE table_name_27 (written_by VARCHAR, season_no VARCHAR, series_no VARCHAR)
SELECT written_by FROM table_name_27 WHERE season_no > 4 AND series_no = 49
### Context: CREATE TABLE table_name_27 (written_by VARCHAR, season_no VARCHAR, series_no VARCHAR) ### Question: Who wrote the series number 49 with a season larger than 4? ### Answer: SELECT written_by FROM table_name_27 WHERE season_no > 4 AND series_no = 49
What is the total count of net gross in 1957?
CREATE TABLE table_name_90 (nett_gross VARCHAR, year VARCHAR)
SELECT COUNT(nett_gross) FROM table_name_90 WHERE year = 1957
### Context: CREATE TABLE table_name_90 (nett_gross VARCHAR, year VARCHAR) ### Question: What is the total count of net gross in 1957? ### Answer: SELECT COUNT(nett_gross) FROM table_name_90 WHERE year = 1957
What is the total End term with a Title of prince regent of bavaria?
CREATE TABLE table_name_88 (end_term INTEGER, title VARCHAR)
SELECT SUM(end_term) FROM table_name_88 WHERE title = "prince regent of bavaria"
### Context: CREATE TABLE table_name_88 (end_term INTEGER, title VARCHAR) ### Question: What is the total End term with a Title of prince regent of bavaria? ### Answer: SELECT SUM(end_term) FROM table_name_88 WHERE title = "prince regent of bavaria"
What is the smallest End term with a Start term of 1913, and a Name of ludwig iii?
CREATE TABLE table_name_39 (end_term INTEGER, start_term VARCHAR, name VARCHAR)
SELECT MIN(end_term) FROM table_name_39 WHERE start_term = 1913 AND name = "ludwig iii"
### Context: CREATE TABLE table_name_39 (end_term INTEGER, start_term VARCHAR, name VARCHAR) ### Question: What is the smallest End term with a Start term of 1913, and a Name of ludwig iii? ### Answer: SELECT MIN(end_term) FROM table_name_39 WHERE start_term = 1913 AND name = "ludwig iii"
Which Title has an 1825 end term?
CREATE TABLE table_name_78 (title VARCHAR, end_term VARCHAR)
SELECT title FROM table_name_78 WHERE end_term = 1825
### Context: CREATE TABLE table_name_78 (title VARCHAR, end_term VARCHAR) ### Question: Which Title has an 1825 end term? ### Answer: SELECT title FROM table_name_78 WHERE end_term = 1825
What is the average Start term with a 1912 end term?
CREATE TABLE table_name_58 (start_term INTEGER, end_term VARCHAR)
SELECT AVG(start_term) FROM table_name_58 WHERE end_term = 1912
### Context: CREATE TABLE table_name_58 (start_term INTEGER, end_term VARCHAR) ### Question: What is the average Start term with a 1912 end term? ### Answer: SELECT AVG(start_term) FROM table_name_58 WHERE end_term = 1912
What date were the high rebounds Evans (14)?
CREATE TABLE table_name_74 (date VARCHAR, high_rebounds VARCHAR)
SELECT date FROM table_name_74 WHERE high_rebounds = "evans (14)"
### Context: CREATE TABLE table_name_74 (date VARCHAR, high_rebounds VARCHAR) ### Question: What date were the high rebounds Evans (14)? ### Answer: SELECT date FROM table_name_74 WHERE high_rebounds = "evans (14)"
Which game has a high rebound of Evans (7) and a high assist of Evans, Ollie (3)?
CREATE TABLE table_name_11 (game INTEGER, high_rebounds VARCHAR, high_assists VARCHAR)
SELECT MAX(game) FROM table_name_11 WHERE high_rebounds = "evans (7)" AND high_assists = "evans, ollie (3)"
### Context: CREATE TABLE table_name_11 (game INTEGER, high_rebounds VARCHAR, high_assists VARCHAR) ### Question: Which game has a high rebound of Evans (7) and a high assist of Evans, Ollie (3)? ### Answer: SELECT MAX(game) FROM table_name_11 WHERE high_rebounds = "evans (7)" AND high_assists = "evans, ollie (3)"
What division has the highest FA Cup Goals, but a Total Goal score less than 5, and a Total Apps of 52?
CREATE TABLE table_name_85 (fa_cup_goals INTEGER, total_apps__sub_ VARCHAR, total_goals VARCHAR)
SELECT MAX(fa_cup_goals) FROM table_name_85 WHERE total_apps__sub_ = "52" AND total_goals < 5
### Context: CREATE TABLE table_name_85 (fa_cup_goals INTEGER, total_apps__sub_ VARCHAR, total_goals VARCHAR) ### Question: What division has the highest FA Cup Goals, but a Total Goal score less than 5, and a Total Apps of 52? ### Answer: SELECT MAX(fa_cup_goals) FROM table_name_85 WHERE total_apps__sub_ = "52" AND total_goals < 5
What is the average FL Cup Apps, with a FL Cup Goals greater than 0, but a Other Apps less than 0?
CREATE TABLE table_name_93 (fl_cup_apps__sub_ INTEGER, fl_cup_goals VARCHAR, other_apps VARCHAR)
SELECT AVG(fl_cup_apps__sub_) FROM table_name_93 WHERE fl_cup_goals > 0 AND other_apps < 0
### Context: CREATE TABLE table_name_93 (fl_cup_apps__sub_ INTEGER, fl_cup_goals VARCHAR, other_apps VARCHAR) ### Question: What is the average FL Cup Apps, with a FL Cup Goals greater than 0, but a Other Apps less than 0? ### Answer: SELECT AVG(fl_cup_apps__sub_) FROM table_name_93 WHERE fl_cup_goals > 0 AND other_apps < 0
What is Division One's total number of FL Cup Goals, with an Other Apps greater than 3, and a FA Cup Goals greater than 0?
CREATE TABLE table_name_28 (fl_cup_goals VARCHAR, fa_cup_goals VARCHAR, division VARCHAR, other_apps VARCHAR)
SELECT COUNT(fl_cup_goals) FROM table_name_28 WHERE division = "one" AND other_apps > 3 AND fa_cup_goals > 0
### Context: CREATE TABLE table_name_28 (fl_cup_goals VARCHAR, fa_cup_goals VARCHAR, division VARCHAR, other_apps VARCHAR) ### Question: What is Division One's total number of FL Cup Goals, with an Other Apps greater than 3, and a FA Cup Goals greater than 0? ### Answer: SELECT COUNT(fl_cup_goals) FROM table_name_28 WHERE division = "one" AND other_apps > 3 AND fa_cup_goals > 0
What is Division One's average Other Apps, with a League Goal less than 1?
CREATE TABLE table_name_76 (other_apps INTEGER, division VARCHAR, league_goals VARCHAR)
SELECT AVG(other_apps) FROM table_name_76 WHERE division = "one" AND league_goals < 1
### Context: CREATE TABLE table_name_76 (other_apps INTEGER, division VARCHAR, league_goals VARCHAR) ### Question: What is Division One's average Other Apps, with a League Goal less than 1? ### Answer: SELECT AVG(other_apps) FROM table_name_76 WHERE division = "one" AND league_goals < 1
Who plays at Victoria Park?
CREATE TABLE table_name_14 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_14 WHERE venue = "victoria park"
### Context: CREATE TABLE table_name_14 (away_team VARCHAR, venue VARCHAR) ### Question: Who plays at Victoria Park? ### Answer: SELECT away_team FROM table_name_14 WHERE venue = "victoria park"
What is the score against the indians after game 2?
CREATE TABLE table_name_76 (score VARCHAR, game VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_76 WHERE game > 2 AND opponent = "indians"
### Context: CREATE TABLE table_name_76 (score VARCHAR, game VARCHAR, opponent VARCHAR) ### Question: What is the score against the indians after game 2? ### Answer: SELECT score FROM table_name_76 WHERE game > 2 AND opponent = "indians"
What is the average grid for piers courage?
CREATE TABLE table_name_96 (grid INTEGER, driver VARCHAR)
SELECT AVG(grid) FROM table_name_96 WHERE driver = "piers courage"
### Context: CREATE TABLE table_name_96 (grid INTEGER, driver VARCHAR) ### Question: What is the average grid for piers courage? ### Answer: SELECT AVG(grid) FROM table_name_96 WHERE driver = "piers courage"
Who drove 53 laps?
CREATE TABLE table_name_66 (driver VARCHAR, laps VARCHAR)
SELECT driver FROM table_name_66 WHERE laps = 53
### Context: CREATE TABLE table_name_66 (driver VARCHAR, laps VARCHAR) ### Question: Who drove 53 laps? ### Answer: SELECT driver FROM table_name_66 WHERE laps = 53
What is the lap total for george eaton, with a grid under 17 retiring due to gearbox?
CREATE TABLE table_name_72 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, driver VARCHAR)
SELECT SUM(laps) FROM table_name_72 WHERE time_retired = "gearbox" AND driver = "george eaton" AND grid < 17
### Context: CREATE TABLE table_name_72 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, driver VARCHAR) ### Question: What is the lap total for george eaton, with a grid under 17 retiring due to gearbox? ### Answer: SELECT SUM(laps) FROM table_name_72 WHERE time_retired = "gearbox" AND driver = "george eaton" AND grid < 17
How many laps for denny hulme with under 4 on the grid?
CREATE TABLE table_name_13 (laps INTEGER, driver VARCHAR, grid VARCHAR)
SELECT SUM(laps) FROM table_name_13 WHERE driver = "denny hulme" AND grid < 4
### Context: CREATE TABLE table_name_13 (laps INTEGER, driver VARCHAR, grid VARCHAR) ### Question: How many laps for denny hulme with under 4 on the grid? ### Answer: SELECT SUM(laps) FROM table_name_13 WHERE driver = "denny hulme" AND grid < 4
What was the score of the home team when there were more than 5,500 people in the crowd?
CREATE TABLE table_name_39 (home_team VARCHAR, crowd INTEGER)
SELECT home_team AS score FROM table_name_39 WHERE crowd > 5 OFFSET 500
### Context: CREATE TABLE table_name_39 (home_team VARCHAR, crowd INTEGER) ### Question: What was the score of the home team when there were more than 5,500 people in the crowd? ### Answer: SELECT home_team AS score FROM table_name_39 WHERE crowd > 5 OFFSET 500
What is the sum of Crowd when Essendon was the home team?
CREATE TABLE table_name_33 (crowd INTEGER, home_team VARCHAR)
SELECT SUM(crowd) FROM table_name_33 WHERE home_team = "essendon"
### Context: CREATE TABLE table_name_33 (crowd INTEGER, home_team VARCHAR) ### Question: What is the sum of Crowd when Essendon was the home team? ### Answer: SELECT SUM(crowd) FROM table_name_33 WHERE home_team = "essendon"
What was the home team score when North Melbourne was the away team?
CREATE TABLE table_name_8 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_8 WHERE away_team = "north melbourne"
### Context: CREATE TABLE table_name_8 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home team score when North Melbourne was the away team? ### Answer: SELECT home_team AS score FROM table_name_8 WHERE away_team = "north melbourne"
What is the U.S. Hot 100 chart number of the single off of the 2002 album west coast bad boyz, vol. 3: poppin' collars?
CREATE TABLE table_name_29 (us_hot_100 VARCHAR, year VARCHAR, album VARCHAR)
SELECT us_hot_100 FROM table_name_29 WHERE year = 2002 AND album = "west coast bad boyz, vol. 3: poppin' collars"
### Context: CREATE TABLE table_name_29 (us_hot_100 VARCHAR, year VARCHAR, album VARCHAR) ### Question: What is the U.S. Hot 100 chart number of the single off of the 2002 album west coast bad boyz, vol. 3: poppin' collars? ### Answer: SELECT us_hot_100 FROM table_name_29 WHERE year = 2002 AND album = "west coast bad boyz, vol. 3: poppin' collars"
What is the U.S. Rap chart number of the album west coast bad boyz, vol. 3: poppin' collars?
CREATE TABLE table_name_98 (us_rap VARCHAR, album VARCHAR)
SELECT us_rap FROM table_name_98 WHERE album = "west coast bad boyz, vol. 3: poppin' collars"
### Context: CREATE TABLE table_name_98 (us_rap VARCHAR, album VARCHAR) ### Question: What is the U.S. Rap chart number of the album west coast bad boyz, vol. 3: poppin' collars? ### Answer: SELECT us_rap FROM table_name_98 WHERE album = "west coast bad boyz, vol. 3: poppin' collars"
What is the top round for the baltimore bullets with a Pick larger than 6?
CREATE TABLE table_name_46 (round INTEGER, team VARCHAR, pick VARCHAR)
SELECT MAX(round) FROM table_name_46 WHERE team = "baltimore bullets" AND pick > 6
### Context: CREATE TABLE table_name_46 (round INTEGER, team VARCHAR, pick VARCHAR) ### Question: What is the top round for the baltimore bullets with a Pick larger than 6? ### Answer: SELECT MAX(round) FROM table_name_46 WHERE team = "baltimore bullets" AND pick > 6
What team was the away team when they played at lake oval?
CREATE TABLE table_name_84 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_84 WHERE venue = "lake oval"
### Context: CREATE TABLE table_name_84 (away_team VARCHAR, venue VARCHAR) ### Question: What team was the away team when they played at lake oval? ### Answer: SELECT away_team AS score FROM table_name_84 WHERE venue = "lake oval"
How many people were in the crowd when North Melbourne was the home team?
CREATE TABLE table_name_3 (crowd VARCHAR, home_team VARCHAR)
SELECT crowd FROM table_name_3 WHERE home_team = "north melbourne"
### Context: CREATE TABLE table_name_3 (crowd VARCHAR, home_team VARCHAR) ### Question: How many people were in the crowd when North Melbourne was the home team? ### Answer: SELECT crowd FROM table_name_3 WHERE home_team = "north melbourne"
What is Craig Whelihan's average when his yards are smaller than 0?
CREATE TABLE table_name_76 (avg INTEGER, player VARCHAR, yards VARCHAR)
SELECT SUM(avg) FROM table_name_76 WHERE player = "craig whelihan" AND yards < 0
### Context: CREATE TABLE table_name_76 (avg INTEGER, player VARCHAR, yards VARCHAR) ### Question: What is Craig Whelihan's average when his yards are smaller than 0? ### Answer: SELECT SUM(avg) FROM table_name_76 WHERE player = "craig whelihan" AND yards < 0
Which largest average had 1229 yards?
CREATE TABLE table_name_83 (avg INTEGER, yards VARCHAR)
SELECT MAX(avg) FROM table_name_83 WHERE yards = 1229
### Context: CREATE TABLE table_name_83 (avg INTEGER, yards VARCHAR) ### Question: Which largest average had 1229 yards? ### Answer: SELECT MAX(avg) FROM table_name_83 WHERE yards = 1229
What is the constructor where the circuit is Silverstone?
CREATE TABLE table_name_8 (constructor VARCHAR, circuit VARCHAR)
SELECT constructor FROM table_name_8 WHERE circuit = "silverstone"
### Context: CREATE TABLE table_name_8 (constructor VARCHAR, circuit VARCHAR) ### Question: What is the constructor where the circuit is Silverstone? ### Answer: SELECT constructor FROM table_name_8 WHERE circuit = "silverstone"
Who is the Winning Driver in the race viii gran premio di siracusa?
CREATE TABLE table_name_42 (winning_driver VARCHAR, race_name VARCHAR)
SELECT winning_driver FROM table_name_42 WHERE race_name = "viii gran premio di siracusa"
### Context: CREATE TABLE table_name_42 (winning_driver VARCHAR, race_name VARCHAR) ### Question: Who is the Winning Driver in the race viii gran premio di siracusa? ### Answer: SELECT winning_driver FROM table_name_42 WHERE race_name = "viii gran premio di siracusa"
What is the date that the winner driver is Stirling Moss in the race named vi grand prix de caen?
CREATE TABLE table_name_91 (date VARCHAR, winning_driver VARCHAR, race_name VARCHAR)
SELECT date FROM table_name_91 WHERE winning_driver = "stirling moss" AND race_name = "vi grand prix de caen"
### Context: CREATE TABLE table_name_91 (date VARCHAR, winning_driver VARCHAR, race_name VARCHAR) ### Question: What is the date that the winner driver is Stirling Moss in the race named vi grand prix de caen? ### Answer: SELECT date FROM table_name_91 WHERE winning_driver = "stirling moss" AND race_name = "vi grand prix de caen"
Which state is the location of 39.1178°n 106.4454°w in?
CREATE TABLE table_name_55 (state VARCHAR, location VARCHAR)
SELECT state FROM table_name_55 WHERE location = "39.1178°n 106.4454°w"
### Context: CREATE TABLE table_name_55 (state VARCHAR, location VARCHAR) ### Question: Which state is the location of 39.1178°n 106.4454°w in? ### Answer: SELECT state FROM table_name_55 WHERE location = "39.1178°n 106.4454°w"