question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
| text
stringlengths 114
1.06k
|
---|---|---|---|
What is the First Performance when the status is past and the style was ballet, tap?
|
CREATE TABLE table_name_74 (first_performance VARCHAR, status VARCHAR, style VARCHAR)
|
SELECT first_performance FROM table_name_74 WHERE status = "past" AND style = "ballet, tap"
|
### Context: CREATE TABLE table_name_74 (first_performance VARCHAR, status VARCHAR, style VARCHAR) ### Question: What is the First Performance when the status is past and the style was ballet, tap? ### Answer: SELECT first_performance FROM table_name_74 WHERE status = "past" AND style = "ballet, tap"
|
What was the Last Performance when the status is current cast, and a Name of noah parets?
|
CREATE TABLE table_name_16 (last_performance VARCHAR, status VARCHAR, name VARCHAR)
|
SELECT last_performance FROM table_name_16 WHERE status = "current cast" AND name = "noah parets"
|
### Context: CREATE TABLE table_name_16 (last_performance VARCHAR, status VARCHAR, name VARCHAR) ### Question: What was the Last Performance when the status is current cast, and a Name of noah parets? ### Answer: SELECT last_performance FROM table_name_16 WHERE status = "current cast" AND name = "noah parets"
|
What is the style for Giuseppe Bausilio?
|
CREATE TABLE table_name_31 (style VARCHAR, name VARCHAR)
|
SELECT style FROM table_name_31 WHERE name = "giuseppe bausilio"
|
### Context: CREATE TABLE table_name_31 (style VARCHAR, name VARCHAR) ### Question: What is the style for Giuseppe Bausilio? ### Answer: SELECT style FROM table_name_31 WHERE name = "giuseppe bausilio"
|
Which opponent has the event Jungle Fight 6?
|
CREATE TABLE table_name_56 (opponent VARCHAR, event VARCHAR)
|
SELECT opponent FROM table_name_56 WHERE event = "jungle fight 6"
|
### Context: CREATE TABLE table_name_56 (opponent VARCHAR, event VARCHAR) ### Question: Which opponent has the event Jungle Fight 6? ### Answer: SELECT opponent FROM table_name_56 WHERE event = "jungle fight 6"
|
Which is the method under the event Jungle Fight 2?
|
CREATE TABLE table_name_24 (method VARCHAR, event VARCHAR)
|
SELECT method FROM table_name_24 WHERE event = "jungle fight 2"
|
### Context: CREATE TABLE table_name_24 (method VARCHAR, event VARCHAR) ### Question: Which is the method under the event Jungle Fight 2? ### Answer: SELECT method FROM table_name_24 WHERE event = "jungle fight 2"
|
What is the total number of points when draw is 4?
|
CREATE TABLE table_name_71 (points VARCHAR, draw VARCHAR)
|
SELECT COUNT(points) FROM table_name_71 WHERE draw = 4
|
### Context: CREATE TABLE table_name_71 (points VARCHAR, draw VARCHAR) ### Question: What is the total number of points when draw is 4? ### Answer: SELECT COUNT(points) FROM table_name_71 WHERE draw = 4
|
what is the goals scored when draw is less than 8, points is 19 and goals conceded is more than 26?
|
CREATE TABLE table_name_44 (goals_scored INTEGER, goals_conceded VARCHAR, draw VARCHAR, points VARCHAR)
|
SELECT SUM(goals_scored) FROM table_name_44 WHERE draw < 8 AND points = 19 AND goals_conceded > 26
|
### Context: CREATE TABLE table_name_44 (goals_scored INTEGER, goals_conceded VARCHAR, draw VARCHAR, points VARCHAR) ### Question: what is the goals scored when draw is less than 8, points is 19 and goals conceded is more than 26? ### Answer: SELECT SUM(goals_scored) FROM table_name_44 WHERE draw < 8 AND points = 19 AND goals_conceded > 26
|
what is the points when the goals conceded is less than 24, place is less than 6 and goals scored is less than 26?
|
CREATE TABLE table_name_15 (points INTEGER, goals_scored VARCHAR, goals_conceded VARCHAR, place VARCHAR)
|
SELECT SUM(points) FROM table_name_15 WHERE goals_conceded < 24 AND place < 6 AND goals_scored < 26
|
### Context: CREATE TABLE table_name_15 (points INTEGER, goals_scored VARCHAR, goals_conceded VARCHAR, place VARCHAR) ### Question: what is the points when the goals conceded is less than 24, place is less than 6 and goals scored is less than 26? ### Answer: SELECT SUM(points) FROM table_name_15 WHERE goals_conceded < 24 AND place < 6 AND goals_scored < 26
|
what is the place when losses is less than 12 and points is less than 19?
|
CREATE TABLE table_name_12 (place INTEGER, lost VARCHAR, points VARCHAR)
|
SELECT SUM(place) FROM table_name_12 WHERE lost < 12 AND points < 19
|
### Context: CREATE TABLE table_name_12 (place INTEGER, lost VARCHAR, points VARCHAR) ### Question: what is the place when losses is less than 12 and points is less than 19? ### Answer: SELECT SUM(place) FROM table_name_12 WHERE lost < 12 AND points < 19
|
what is the average place when lost is more than 12?
|
CREATE TABLE table_name_13 (place INTEGER, lost INTEGER)
|
SELECT AVG(place) FROM table_name_13 WHERE lost > 12
|
### Context: CREATE TABLE table_name_13 (place INTEGER, lost INTEGER) ### Question: what is the average place when lost is more than 12? ### Answer: SELECT AVG(place) FROM table_name_13 WHERE lost > 12
|
In what Year were there 48 of 120 Seats and a % votes larger than 34.18?
|
CREATE TABLE table_name_94 (year INTEGER, seats VARCHAR, _percentage_votes VARCHAR)
|
SELECT SUM(year) FROM table_name_94 WHERE seats = "48 of 120" AND _percentage_votes > 34.18
|
### Context: CREATE TABLE table_name_94 (year INTEGER, seats VARCHAR, _percentage_votes VARCHAR) ### Question: In what Year were there 48 of 120 Seats and a % votes larger than 34.18? ### Answer: SELECT SUM(year) FROM table_name_94 WHERE seats = "48 of 120" AND _percentage_votes > 34.18
|
After 1993, what is the Seats with a % votes of 38.72?
|
CREATE TABLE table_name_26 (seats VARCHAR, year VARCHAR, _percentage_votes VARCHAR)
|
SELECT seats FROM table_name_26 WHERE year > 1993 AND _percentage_votes = 38.72
|
### Context: CREATE TABLE table_name_26 (seats VARCHAR, year VARCHAR, _percentage_votes VARCHAR) ### Question: After 1993, what is the Seats with a % votes of 38.72? ### Answer: SELECT seats FROM table_name_26 WHERE year > 1993 AND _percentage_votes = 38.72
|
What is the highest Isolation (km) when the elevation was smaller than 1320, and a Municipality of hinnøya?
|
CREATE TABLE table_name_61 (isolation__km_ INTEGER, elevation__m_ VARCHAR, municipality VARCHAR)
|
SELECT MAX(isolation__km_) FROM table_name_61 WHERE elevation__m_ < 1320 AND municipality = "hinnøya"
|
### Context: CREATE TABLE table_name_61 (isolation__km_ INTEGER, elevation__m_ VARCHAR, municipality VARCHAR) ### Question: What is the highest Isolation (km) when the elevation was smaller than 1320, and a Municipality of hinnøya? ### Answer: SELECT MAX(isolation__km_) FROM table_name_61 WHERE elevation__m_ < 1320 AND municipality = "hinnøya"
|
What is the average Isolation in the municipality of Sunndal at an elevation of more than 1850?
|
CREATE TABLE table_name_83 (isolation__km_ INTEGER, municipality VARCHAR, elevation__m_ VARCHAR)
|
SELECT AVG(isolation__km_) FROM table_name_83 WHERE municipality = "sunndal" AND elevation__m_ > 1850
|
### Context: CREATE TABLE table_name_83 (isolation__km_ INTEGER, municipality VARCHAR, elevation__m_ VARCHAR) ### Question: What is the average Isolation in the municipality of Sunndal at an elevation of more than 1850? ### Answer: SELECT AVG(isolation__km_) FROM table_name_83 WHERE municipality = "sunndal" AND elevation__m_ > 1850
|
What is the highest elevation for the peak daurmål, and an Isolation (km) larger than 4?
|
CREATE TABLE table_name_83 (elevation__m_ INTEGER, peak VARCHAR, isolation__km_ VARCHAR)
|
SELECT MAX(elevation__m_) FROM table_name_83 WHERE peak = "daurmål" AND isolation__km_ > 4
|
### Context: CREATE TABLE table_name_83 (elevation__m_ INTEGER, peak VARCHAR, isolation__km_ VARCHAR) ### Question: What is the highest elevation for the peak daurmål, and an Isolation (km) larger than 4? ### Answer: SELECT MAX(elevation__m_) FROM table_name_83 WHERE peak = "daurmål" AND isolation__km_ > 4
|
What country has an Elevation less than 1833 and an Isolation (km) larger than 18, and a Peak of store lenangstind?
|
CREATE TABLE table_name_64 (county VARCHAR, peak VARCHAR, elevation__m_ VARCHAR, isolation__km_ VARCHAR)
|
SELECT county FROM table_name_64 WHERE elevation__m_ < 1833 AND isolation__km_ > 18 AND peak = "store lenangstind"
|
### Context: CREATE TABLE table_name_64 (county VARCHAR, peak VARCHAR, elevation__m_ VARCHAR, isolation__km_ VARCHAR) ### Question: What country has an Elevation less than 1833 and an Isolation (km) larger than 18, and a Peak of store lenangstind? ### Answer: SELECT county FROM table_name_64 WHERE elevation__m_ < 1833 AND isolation__km_ > 18 AND peak = "store lenangstind"
|
What country has a prominence less than 1292 and an Isolation (km) of 14?
|
CREATE TABLE table_name_9 (county VARCHAR, prominence__m_ VARCHAR, isolation__km_ VARCHAR)
|
SELECT county FROM table_name_9 WHERE prominence__m_ < 1292 AND isolation__km_ = 14
|
### Context: CREATE TABLE table_name_9 (county VARCHAR, prominence__m_ VARCHAR, isolation__km_ VARCHAR) ### Question: What country has a prominence less than 1292 and an Isolation (km) of 14? ### Answer: SELECT county FROM table_name_9 WHERE prominence__m_ < 1292 AND isolation__km_ = 14
|
Which lane did George Bovell swim in?
|
CREATE TABLE table_name_20 (lane INTEGER, name VARCHAR)
|
SELECT SUM(lane) FROM table_name_20 WHERE name = "george bovell"
|
### Context: CREATE TABLE table_name_20 (lane INTEGER, name VARCHAR) ### Question: Which lane did George Bovell swim in? ### Answer: SELECT SUM(lane) FROM table_name_20 WHERE name = "george bovell"
|
What is the average of the top-25 with 16 cuts and less than 23 events?
|
CREATE TABLE table_name_79 (top_25 INTEGER, cuts_made VARCHAR, events VARCHAR)
|
SELECT AVG(top_25) FROM table_name_79 WHERE cuts_made = 16 AND events < 23
|
### Context: CREATE TABLE table_name_79 (top_25 INTEGER, cuts_made VARCHAR, events VARCHAR) ### Question: What is the average of the top-25 with 16 cuts and less than 23 events? ### Answer: SELECT AVG(top_25) FROM table_name_79 WHERE cuts_made = 16 AND events < 23
|
What is the highest top-25 with more than 9 top-10 but less than 29 events?
|
CREATE TABLE table_name_17 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR)
|
SELECT MAX(top_25) FROM table_name_17 WHERE top_10 > 9 AND events < 29
|
### Context: CREATE TABLE table_name_17 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR) ### Question: What is the highest top-25 with more than 9 top-10 but less than 29 events? ### Answer: SELECT MAX(top_25) FROM table_name_17 WHERE top_10 > 9 AND events < 29
|
What's the Overall average that has brad scioli, and a Pick # larger than 5?
|
CREATE TABLE table_name_60 (overall INTEGER, name VARCHAR, pick__number VARCHAR)
|
SELECT AVG(overall) FROM table_name_60 WHERE name = "brad scioli" AND pick__number > 5
|
### Context: CREATE TABLE table_name_60 (overall INTEGER, name VARCHAR, pick__number VARCHAR) ### Question: What's the Overall average that has brad scioli, and a Pick # larger than 5? ### Answer: SELECT AVG(overall) FROM table_name_60 WHERE name = "brad scioli" AND pick__number > 5
|
What's the lowest Overall average that has a College of Arkansas, and a Round larger than 3?
|
CREATE TABLE table_name_51 (overall INTEGER, college VARCHAR, round VARCHAR)
|
SELECT MIN(overall) FROM table_name_51 WHERE college = "arkansas" AND round > 3
|
### Context: CREATE TABLE table_name_51 (overall INTEGER, college VARCHAR, round VARCHAR) ### Question: What's the lowest Overall average that has a College of Arkansas, and a Round larger than 3? ### Answer: SELECT MIN(overall) FROM table_name_51 WHERE college = "arkansas" AND round > 3
|
Which highest Overall has a Pick # of 4, and a Round larger than 7?
|
CREATE TABLE table_name_65 (overall INTEGER, pick__number VARCHAR, round VARCHAR)
|
SELECT MAX(overall) FROM table_name_65 WHERE pick__number = 4 AND round > 7
|
### Context: CREATE TABLE table_name_65 (overall INTEGER, pick__number VARCHAR, round VARCHAR) ### Question: Which highest Overall has a Pick # of 4, and a Round larger than 7? ### Answer: SELECT MAX(overall) FROM table_name_65 WHERE pick__number = 4 AND round > 7
|
What's the overall average that has a round less than 7, and a Pick # of 4?
|
CREATE TABLE table_name_63 (overall INTEGER, round VARCHAR, pick__number VARCHAR)
|
SELECT AVG(overall) FROM table_name_63 WHERE round < 7 AND pick__number = 4
|
### Context: CREATE TABLE table_name_63 (overall INTEGER, round VARCHAR, pick__number VARCHAR) ### Question: What's the overall average that has a round less than 7, and a Pick # of 4? ### Answer: SELECT AVG(overall) FROM table_name_63 WHERE round < 7 AND pick__number = 4
|
Who is the no. 4 team that has the no. 5 player Susana Telmo?
|
CREATE TABLE table_name_46 (no4 VARCHAR, no5 VARCHAR)
|
SELECT no4 FROM table_name_46 WHERE no5 = "susana telmo"
|
### Context: CREATE TABLE table_name_46 (no4 VARCHAR, no5 VARCHAR) ### Question: Who is the no. 4 team that has the no. 5 player Susana Telmo? ### Answer: SELECT no4 FROM table_name_46 WHERE no5 = "susana telmo"
|
Who is the no. 9 team that has a no. 6 player of paulo?
|
CREATE TABLE table_name_85 (no9 VARCHAR, no6 VARCHAR)
|
SELECT no9 FROM table_name_85 WHERE no6 = "paulo"
|
### Context: CREATE TABLE table_name_85 (no9 VARCHAR, no6 VARCHAR) ### Question: Who is the no. 9 team that has a no. 6 player of paulo? ### Answer: SELECT no9 FROM table_name_85 WHERE no6 = "paulo"
|
Who this the no. 8 team that has a no. 9 player, Telmo?
|
CREATE TABLE table_name_72 (no8 VARCHAR, no9 VARCHAR)
|
SELECT no8 FROM table_name_72 WHERE no9 = "telmo"
|
### Context: CREATE TABLE table_name_72 (no8 VARCHAR, no9 VARCHAR) ### Question: Who this the no. 8 team that has a no. 9 player, Telmo? ### Answer: SELECT no8 FROM table_name_72 WHERE no9 = "telmo"
|
Name the nickname with age of 4.9
|
CREATE TABLE table_name_73 (nickname VARCHAR, age___ma__ VARCHAR)
|
SELECT nickname FROM table_name_73 WHERE age___ma__ = "4.9"
|
### Context: CREATE TABLE table_name_73 (nickname VARCHAR, age___ma__ VARCHAR) ### Question: Name the nickname with age of 4.9 ### Answer: SELECT nickname FROM table_name_73 WHERE age___ma__ = "4.9"
|
Name the island with age ma of 1.0
|
CREATE TABLE table_name_73 (island VARCHAR, age___ma__ VARCHAR)
|
SELECT island FROM table_name_73 WHERE age___ma__ = "1.0"
|
### Context: CREATE TABLE table_name_73 (island VARCHAR, age___ma__ VARCHAR) ### Question: Name the island with age ma of 1.0 ### Answer: SELECT island FROM table_name_73 WHERE age___ma__ = "1.0"
|
Name the elevation of the gathering place
|
CREATE TABLE table_name_79 (elevation VARCHAR, nickname VARCHAR)
|
SELECT elevation FROM table_name_79 WHERE nickname = "the gathering place"
|
### Context: CREATE TABLE table_name_79 (elevation VARCHAR, nickname VARCHAR) ### Question: Name the elevation of the gathering place ### Answer: SELECT elevation FROM table_name_79 WHERE nickname = "the gathering place"
|
Game site of kingdome, and a Result of w 24-6 has what record?
|
CREATE TABLE table_name_32 (record VARCHAR, game_site VARCHAR, result VARCHAR)
|
SELECT record FROM table_name_32 WHERE game_site = "kingdome" AND result = "w 24-6"
|
### Context: CREATE TABLE table_name_32 (record VARCHAR, game_site VARCHAR, result VARCHAR) ### Question: Game site of kingdome, and a Result of w 24-6 has what record? ### Answer: SELECT record FROM table_name_32 WHERE game_site = "kingdome" AND result = "w 24-6"
|
Date of september 25, 1983 is what game site?
|
CREATE TABLE table_name_68 (game_site VARCHAR, date VARCHAR)
|
SELECT game_site FROM table_name_68 WHERE date = "september 25, 1983"
|
### Context: CREATE TABLE table_name_68 (game_site VARCHAR, date VARCHAR) ### Question: Date of september 25, 1983 is what game site? ### Answer: SELECT game_site FROM table_name_68 WHERE date = "september 25, 1983"
|
What stadium held the game that had a score of 6–3?
|
CREATE TABLE table_name_71 (stadium VARCHAR, score VARCHAR)
|
SELECT stadium FROM table_name_71 WHERE score = "6–3"
|
### Context: CREATE TABLE table_name_71 (stadium VARCHAR, score VARCHAR) ### Question: What stadium held the game that had a score of 6–3? ### Answer: SELECT stadium FROM table_name_71 WHERE score = "6–3"
|
What was the date of the game that had a loss of Reed (0–2)?
|
CREATE TABLE table_name_29 (date VARCHAR, loss VARCHAR)
|
SELECT date FROM table_name_29 WHERE loss = "reed (0–2)"
|
### Context: CREATE TABLE table_name_29 (date VARCHAR, loss VARCHAR) ### Question: What was the date of the game that had a loss of Reed (0–2)? ### Answer: SELECT date FROM table_name_29 WHERE loss = "reed (0–2)"
|
On which Date was there a record of 11-8?
|
CREATE TABLE table_name_37 (date VARCHAR, record VARCHAR)
|
SELECT date FROM table_name_37 WHERE record = "11-8"
|
### Context: CREATE TABLE table_name_37 (date VARCHAR, record VARCHAR) ### Question: On which Date was there a record of 11-8? ### Answer: SELECT date FROM table_name_37 WHERE record = "11-8"
|
How many podiums associated with 1 vuelta and over 7 tours?
|
CREATE TABLE table_name_1 (total VARCHAR, vuelta VARCHAR, tour VARCHAR)
|
SELECT COUNT(total) FROM table_name_1 WHERE vuelta = 1 AND tour > 7
|
### Context: CREATE TABLE table_name_1 (total VARCHAR, vuelta VARCHAR, tour VARCHAR) ### Question: How many podiums associated with 1 vuelta and over 7 tours? ### Answer: SELECT COUNT(total) FROM table_name_1 WHERE vuelta = 1 AND tour > 7
|
What is the total for miguel induráin with a Vuelta larger than 1?
|
CREATE TABLE table_name_33 (total INTEGER, name VARCHAR, vuelta VARCHAR)
|
SELECT MIN(total) FROM table_name_33 WHERE name = "miguel induráin" AND vuelta > 1
|
### Context: CREATE TABLE table_name_33 (total INTEGER, name VARCHAR, vuelta VARCHAR) ### Question: What is the total for miguel induráin with a Vuelta larger than 1? ### Answer: SELECT MIN(total) FROM table_name_33 WHERE name = "miguel induráin" AND vuelta > 1
|
What is the grid associated with a Time/Retired of + 1 lap, and under 7 points?
|
CREATE TABLE table_name_99 (grid INTEGER, time_retired VARCHAR, points VARCHAR)
|
SELECT MIN(grid) FROM table_name_99 WHERE time_retired = "+ 1 lap" AND points < 7
|
### Context: CREATE TABLE table_name_99 (grid INTEGER, time_retired VARCHAR, points VARCHAR) ### Question: What is the grid associated with a Time/Retired of + 1 lap, and under 7 points? ### Answer: SELECT MIN(grid) FROM table_name_99 WHERE time_retired = "+ 1 lap" AND points < 7
|
What grid is associated with 67 laps?
|
CREATE TABLE table_name_45 (grid VARCHAR, laps VARCHAR)
|
SELECT grid FROM table_name_45 WHERE laps = 67
|
### Context: CREATE TABLE table_name_45 (grid VARCHAR, laps VARCHAR) ### Question: What grid is associated with 67 laps? ### Answer: SELECT grid FROM table_name_45 WHERE laps = 67
|
Name the nation for 8 june 1983 for marlies gohr
|
CREATE TABLE table_name_27 (nation VARCHAR, date VARCHAR, athlete VARCHAR)
|
SELECT nation FROM table_name_27 WHERE date = "8 june 1983" AND athlete = "marlies gohr"
|
### Context: CREATE TABLE table_name_27 (nation VARCHAR, date VARCHAR, athlete VARCHAR) ### Question: Name the nation for 8 june 1983 for marlies gohr ### Answer: SELECT nation FROM table_name_27 WHERE date = "8 june 1983" AND athlete = "marlies gohr"
|
Name the athlete for bulgaria with rank less than 22
|
CREATE TABLE table_name_46 (athlete VARCHAR, rank VARCHAR, nation VARCHAR)
|
SELECT athlete FROM table_name_46 WHERE rank < 22 AND nation = "bulgaria"
|
### Context: CREATE TABLE table_name_46 (athlete VARCHAR, rank VARCHAR, nation VARCHAR) ### Question: Name the athlete for bulgaria with rank less than 22 ### Answer: SELECT athlete FROM table_name_46 WHERE rank < 22 AND nation = "bulgaria"
|
What engine was used by Ram Penthouse Rizla Racing in 1978?
|
CREATE TABLE table_name_97 (engine VARCHAR, year VARCHAR, entrant VARCHAR)
|
SELECT engine FROM table_name_97 WHERE year > 1978 AND entrant = "ram penthouse rizla racing"
|
### Context: CREATE TABLE table_name_97 (engine VARCHAR, year VARCHAR, entrant VARCHAR) ### Question: What engine was used by Ram Penthouse Rizla Racing in 1978? ### Answer: SELECT engine FROM table_name_97 WHERE year > 1978 AND entrant = "ram penthouse rizla racing"
|
Which College has a Year smaller than 1962, and a Position of rb?
|
CREATE TABLE table_name_98 (college VARCHAR, year VARCHAR, position VARCHAR)
|
SELECT college FROM table_name_98 WHERE year < 1962 AND position = "rb"
|
### Context: CREATE TABLE table_name_98 (college VARCHAR, year VARCHAR, position VARCHAR) ### Question: Which College has a Year smaller than 1962, and a Position of rb? ### Answer: SELECT college FROM table_name_98 WHERE year < 1962 AND position = "rb"
|
Which Year has a College of nebraska, and a Pick of 2?
|
CREATE TABLE table_name_96 (year VARCHAR, college VARCHAR, pick VARCHAR)
|
SELECT year FROM table_name_96 WHERE college = "nebraska" AND pick = "2"
|
### Context: CREATE TABLE table_name_96 (year VARCHAR, college VARCHAR, pick VARCHAR) ### Question: Which Year has a College of nebraska, and a Pick of 2? ### Answer: SELECT year FROM table_name_96 WHERE college = "nebraska" AND pick = "2"
|
Which Pick has a Year larger than 1983, and a Player name of brian jozwiak?
|
CREATE TABLE table_name_56 (pick VARCHAR, year VARCHAR, player_name VARCHAR)
|
SELECT pick FROM table_name_56 WHERE year > 1983 AND player_name = "brian jozwiak"
|
### Context: CREATE TABLE table_name_56 (pick VARCHAR, year VARCHAR, player_name VARCHAR) ### Question: Which Pick has a Year larger than 1983, and a Player name of brian jozwiak? ### Answer: SELECT pick FROM table_name_56 WHERE year > 1983 AND player_name = "brian jozwiak"
|
Which lowest year has a Position of rb, and a College of louisiana state?
|
CREATE TABLE table_name_27 (year INTEGER, position VARCHAR, college VARCHAR)
|
SELECT MIN(year) FROM table_name_27 WHERE position = "rb" AND college = "louisiana state"
|
### Context: CREATE TABLE table_name_27 (year INTEGER, position VARCHAR, college VARCHAR) ### Question: Which lowest year has a Position of rb, and a College of louisiana state? ### Answer: SELECT MIN(year) FROM table_name_27 WHERE position = "rb" AND college = "louisiana state"
|
How many years have a Player name of ronnie bull?
|
CREATE TABLE table_name_75 (year INTEGER, player_name VARCHAR)
|
SELECT SUM(year) FROM table_name_75 WHERE player_name = "ronnie bull"
|
### Context: CREATE TABLE table_name_75 (year INTEGER, player_name VARCHAR) ### Question: How many years have a Player name of ronnie bull? ### Answer: SELECT SUM(year) FROM table_name_75 WHERE player_name = "ronnie bull"
|
Who was the recipient of an award of £4,203?
|
CREATE TABLE table_name_22 (recipient VARCHAR, award VARCHAR)
|
SELECT recipient FROM table_name_22 WHERE award = "£4,203"
|
### Context: CREATE TABLE table_name_22 (recipient VARCHAR, award VARCHAR) ### Question: Who was the recipient of an award of £4,203? ### Answer: SELECT recipient FROM table_name_22 WHERE award = "£4,203"
|
Who directed the film that received an award of £6,245?
|
CREATE TABLE table_name_10 (director_s_ VARCHAR, award VARCHAR)
|
SELECT director_s_ FROM table_name_10 WHERE award = "£6,245"
|
### Context: CREATE TABLE table_name_10 (director_s_ VARCHAR, award VARCHAR) ### Question: Who directed the film that received an award of £6,245? ### Answer: SELECT director_s_ FROM table_name_10 WHERE award = "£6,245"
|
Who directed the film that Avie Luthra received an award for?
|
CREATE TABLE table_name_63 (director_s_ VARCHAR, recipient VARCHAR)
|
SELECT director_s_ FROM table_name_63 WHERE recipient = "avie luthra"
|
### Context: CREATE TABLE table_name_63 (director_s_ VARCHAR, recipient VARCHAR) ### Question: Who directed the film that Avie Luthra received an award for? ### Answer: SELECT director_s_ FROM table_name_63 WHERE recipient = "avie luthra"
|
Who directed the film Antonio's Breakfast?
|
CREATE TABLE table_name_44 (director_s_ VARCHAR, film VARCHAR)
|
SELECT director_s_ FROM table_name_44 WHERE film = "antonio's breakfast"
|
### Context: CREATE TABLE table_name_44 (director_s_ VARCHAR, film VARCHAR) ### Question: Who directed the film Antonio's Breakfast? ### Answer: SELECT director_s_ FROM table_name_44 WHERE film = "antonio's breakfast"
|
Who was the director of the film that Sister Films received an award for on 2/3/05?
|
CREATE TABLE table_name_48 (director_s_ VARCHAR, date VARCHAR, recipient VARCHAR)
|
SELECT director_s_ FROM table_name_48 WHERE date = "2/3/05" AND recipient = "sister films"
|
### Context: CREATE TABLE table_name_48 (director_s_ VARCHAR, date VARCHAR, recipient VARCHAR) ### Question: Who was the director of the film that Sister Films received an award for on 2/3/05? ### Answer: SELECT director_s_ FROM table_name_48 WHERE date = "2/3/05" AND recipient = "sister films"
|
What is the score of the game on June 9?
|
CREATE TABLE table_name_75 (score VARCHAR, date VARCHAR)
|
SELECT score FROM table_name_75 WHERE date = "june 9"
|
### Context: CREATE TABLE table_name_75 (score VARCHAR, date VARCHAR) ### Question: What is the score of the game on June 9? ### Answer: SELECT score FROM table_name_75 WHERE date = "june 9"
|
What is the usual attendance for july 2?
|
CREATE TABLE table_name_6 (attendance INTEGER, date VARCHAR)
|
SELECT AVG(attendance) FROM table_name_6 WHERE date = "july 2"
|
### Context: CREATE TABLE table_name_6 (attendance INTEGER, date VARCHAR) ### Question: What is the usual attendance for july 2? ### Answer: SELECT AVG(attendance) FROM table_name_6 WHERE date = "july 2"
|
What was the value for deleted for CERCLIS ID of il0210090049?
|
CREATE TABLE table_name_53 (deleted VARCHAR, cerclis_id VARCHAR)
|
SELECT deleted FROM table_name_53 WHERE cerclis_id = "il0210090049"
|
### Context: CREATE TABLE table_name_53 (deleted VARCHAR, cerclis_id VARCHAR) ### Question: What was the value for deleted for CERCLIS ID of il0210090049? ### Answer: SELECT deleted FROM table_name_53 WHERE cerclis_id = "il0210090049"
|
What is the date construction is completed in Jo Daviess county?
|
CREATE TABLE table_name_70 (construction_completed VARCHAR, county VARCHAR)
|
SELECT construction_completed FROM table_name_70 WHERE county = "jo daviess"
|
### Context: CREATE TABLE table_name_70 (construction_completed VARCHAR, county VARCHAR) ### Question: What is the date construction is completed in Jo Daviess county? ### Answer: SELECT construction_completed FROM table_name_70 WHERE county = "jo daviess"
|
Role of narrator, and a Year larger than 2009, and a Release/Air Date of 7 october 2010 belongs to what author?
|
CREATE TABLE table_name_62 (author VARCHAR, release_air_date VARCHAR, role VARCHAR, year VARCHAR)
|
SELECT author FROM table_name_62 WHERE role = "narrator" AND year > 2009 AND release_air_date = "7 october 2010"
|
### Context: CREATE TABLE table_name_62 (author VARCHAR, release_air_date VARCHAR, role VARCHAR, year VARCHAR) ### Question: Role of narrator, and a Year larger than 2009, and a Release/Air Date of 7 october 2010 belongs to what author? ### Answer: SELECT author FROM table_name_62 WHERE role = "narrator" AND year > 2009 AND release_air_date = "7 october 2010"
|
Role of narrator, and a Radio Station/Production Company of bbc audiobooks, and a Release/Air Date of 13 november 2008 is what sum of the year?
|
CREATE TABLE table_name_96 (year INTEGER, release_air_date VARCHAR, role VARCHAR, radio_station_production_company VARCHAR)
|
SELECT SUM(year) FROM table_name_96 WHERE role = "narrator" AND radio_station_production_company = "bbc audiobooks" AND release_air_date = "13 november 2008"
|
### Context: CREATE TABLE table_name_96 (year INTEGER, release_air_date VARCHAR, role VARCHAR, radio_station_production_company VARCHAR) ### Question: Role of narrator, and a Radio Station/Production Company of bbc audiobooks, and a Release/Air Date of 13 november 2008 is what sum of the year? ### Answer: SELECT SUM(year) FROM table_name_96 WHERE role = "narrator" AND radio_station_production_company = "bbc audiobooks" AND release_air_date = "13 november 2008"
|
Radio Station/Production Company that has a Role of interviewee & monologues is what radio station?
|
CREATE TABLE table_name_73 (radio_station_production_company VARCHAR, role VARCHAR)
|
SELECT radio_station_production_company FROM table_name_73 WHERE role = "interviewee & monologues"
|
### Context: CREATE TABLE table_name_73 (radio_station_production_company VARCHAR, role VARCHAR) ### Question: Radio Station/Production Company that has a Role of interviewee & monologues is what radio station? ### Answer: SELECT radio_station_production_company FROM table_name_73 WHERE role = "interviewee & monologues"
|
What was the position of the Racing Organisation Course team?
|
CREATE TABLE table_name_79 (pos VARCHAR, team VARCHAR)
|
SELECT pos FROM table_name_79 WHERE team = "racing organisation course"
|
### Context: CREATE TABLE table_name_79 (pos VARCHAR, team VARCHAR) ### Question: What was the position of the Racing Organisation Course team? ### Answer: SELECT pos FROM table_name_79 WHERE team = "racing organisation course"
|
Who were the co-drivers for the Racing Organisation Course team in years before 2011, who had a position of DNF?
|
CREATE TABLE table_name_92 (co_drivers VARCHAR, team VARCHAR, pos VARCHAR, year VARCHAR)
|
SELECT co_drivers FROM table_name_92 WHERE pos = "dnf" AND year < 2011 AND team = "racing organisation course"
|
### Context: CREATE TABLE table_name_92 (co_drivers VARCHAR, team VARCHAR, pos VARCHAR, year VARCHAR) ### Question: Who were the co-drivers for the Racing Organisation Course team in years before 2011, who had a position of DNF? ### Answer: SELECT co_drivers FROM table_name_92 WHERE pos = "dnf" AND year < 2011 AND team = "racing organisation course"
|
Who were the co-drivers in years after 2010?
|
CREATE TABLE table_name_49 (co_drivers VARCHAR, year INTEGER)
|
SELECT co_drivers FROM table_name_49 WHERE year > 2010
|
### Context: CREATE TABLE table_name_49 (co_drivers VARCHAR, year INTEGER) ### Question: Who were the co-drivers in years after 2010? ### Answer: SELECT co_drivers FROM table_name_49 WHERE year > 2010
|
What is the date made that has an associated fleet number of 4?
|
CREATE TABLE table_name_99 (date_made VARCHAR, fleet_numbers VARCHAR)
|
SELECT date_made FROM table_name_99 WHERE fleet_numbers = "4"
|
### Context: CREATE TABLE table_name_99 (date_made VARCHAR, fleet_numbers VARCHAR) ### Question: What is the date made that has an associated fleet number of 4? ### Answer: SELECT date_made FROM table_name_99 WHERE fleet_numbers = "4"
|
What is the withdrawal date associated with a date made of 1904?
|
CREATE TABLE table_name_92 (date_withdrawn VARCHAR, date_made VARCHAR)
|
SELECT date_withdrawn FROM table_name_92 WHERE date_made = "1904"
|
### Context: CREATE TABLE table_name_92 (date_withdrawn VARCHAR, date_made VARCHAR) ### Question: What is the withdrawal date associated with a date made of 1904? ### Answer: SELECT date_withdrawn FROM table_name_92 WHERE date_made = "1904"
|
Name the game site with result of l 7-38
|
CREATE TABLE table_name_36 (game_site VARCHAR, result VARCHAR)
|
SELECT game_site FROM table_name_36 WHERE result = "l 7-38"
|
### Context: CREATE TABLE table_name_36 (game_site VARCHAR, result VARCHAR) ### Question: Name the game site with result of l 7-38 ### Answer: SELECT game_site FROM table_name_36 WHERE result = "l 7-38"
|
Name the result for arrowhead stadium
|
CREATE TABLE table_name_45 (result VARCHAR, game_site VARCHAR)
|
SELECT result FROM table_name_45 WHERE game_site = "arrowhead stadium"
|
### Context: CREATE TABLE table_name_45 (result VARCHAR, game_site VARCHAR) ### Question: Name the result for arrowhead stadium ### Answer: SELECT result FROM table_name_45 WHERE game_site = "arrowhead stadium"
|
Name the least attendance for opponent of new orleans saints and week more than 2
|
CREATE TABLE table_name_5 (attendance INTEGER, week VARCHAR, opponent VARCHAR)
|
SELECT MIN(attendance) FROM table_name_5 WHERE week > 2 AND opponent = "new orleans saints"
|
### Context: CREATE TABLE table_name_5 (attendance INTEGER, week VARCHAR, opponent VARCHAR) ### Question: Name the least attendance for opponent of new orleans saints and week more than 2 ### Answer: SELECT MIN(attendance) FROM table_name_5 WHERE week > 2 AND opponent = "new orleans saints"
|
What amount of earnings corresponds with a Top 10s rank of 23?
|
CREATE TABLE table_name_7 (earnings___$__ VARCHAR, top_10s VARCHAR)
|
SELECT earnings___$__ FROM table_name_7 WHERE top_10s = 23
|
### Context: CREATE TABLE table_name_7 (earnings___$__ VARCHAR, top_10s VARCHAR) ### Question: What amount of earnings corresponds with a Top 10s rank of 23? ### Answer: SELECT earnings___$__ FROM table_name_7 WHERE top_10s = 23
|
What 2012 amount of earnings corresponds with less than 28 tournaments played?
|
CREATE TABLE table_name_59 (earnings___$__ VARCHAR, tournaments_played VARCHAR, year VARCHAR)
|
SELECT earnings___$__ FROM table_name_59 WHERE tournaments_played < 28 AND year = "2012"
|
### Context: CREATE TABLE table_name_59 (earnings___$__ VARCHAR, tournaments_played VARCHAR, year VARCHAR) ### Question: What 2012 amount of earnings corresponds with less than 28 tournaments played? ### Answer: SELECT earnings___$__ FROM table_name_59 WHERE tournaments_played < 28 AND year = "2012"
|
Tell me the year with Laps less than 197 and start of 2
|
CREATE TABLE table_name_96 (year VARCHAR, laps VARCHAR, start VARCHAR)
|
SELECT year FROM table_name_96 WHERE laps < 197 AND start = "2"
|
### Context: CREATE TABLE table_name_96 (year VARCHAR, laps VARCHAR, start VARCHAR) ### Question: Tell me the year with Laps less than 197 and start of 2 ### Answer: SELECT year FROM table_name_96 WHERE laps < 197 AND start = "2"
|
Name the qual with start of totals
|
CREATE TABLE table_name_61 (qual VARCHAR, start VARCHAR)
|
SELECT qual FROM table_name_61 WHERE start = "totals"
|
### Context: CREATE TABLE table_name_61 (qual VARCHAR, start VARCHAR) ### Question: Name the qual with start of totals ### Answer: SELECT qual FROM table_name_61 WHERE start = "totals"
|
Name the total number of laps with rank of 8
|
CREATE TABLE table_name_90 (laps VARCHAR, rank VARCHAR)
|
SELECT COUNT(laps) FROM table_name_90 WHERE rank = "8"
|
### Context: CREATE TABLE table_name_90 (laps VARCHAR, rank VARCHAR) ### Question: Name the total number of laps with rank of 8 ### Answer: SELECT COUNT(laps) FROM table_name_90 WHERE rank = "8"
|
Name the start with Laps of 199 with qual of 224.838
|
CREATE TABLE table_name_13 (start VARCHAR, laps VARCHAR, qual VARCHAR)
|
SELECT start FROM table_name_13 WHERE laps = 199 AND qual = "224.838"
|
### Context: CREATE TABLE table_name_13 (start VARCHAR, laps VARCHAR, qual VARCHAR) ### Question: Name the start with Laps of 199 with qual of 224.838 ### Answer: SELECT start FROM table_name_13 WHERE laps = 199 AND qual = "224.838"
|
On what date was the score 1-2 at Athens Olympic Stadium?
|
CREATE TABLE table_name_37 (date VARCHAR, score VARCHAR, venue VARCHAR)
|
SELECT date FROM table_name_37 WHERE score = "1-2" AND venue = "athens olympic stadium"
|
### Context: CREATE TABLE table_name_37 (date VARCHAR, score VARCHAR, venue VARCHAR) ### Question: On what date was the score 1-2 at Athens Olympic Stadium? ### Answer: SELECT date FROM table_name_37 WHERE score = "1-2" AND venue = "athens olympic stadium"
|
What was the Match Report for the Euro2008q at the Athens Olympic Stadium on November 17, 2007?
|
CREATE TABLE table_name_89 (match_report VARCHAR, date VARCHAR, competition VARCHAR, venue VARCHAR)
|
SELECT match_report FROM table_name_89 WHERE competition = "euro2008q" AND venue = "athens olympic stadium" AND date = "november 17, 2007"
|
### Context: CREATE TABLE table_name_89 (match_report VARCHAR, date VARCHAR, competition VARCHAR, venue VARCHAR) ### Question: What was the Match Report for the Euro2008q at the Athens Olympic Stadium on November 17, 2007? ### Answer: SELECT match_report FROM table_name_89 WHERE competition = "euro2008q" AND venue = "athens olympic stadium" AND date = "november 17, 2007"
|
What was the Match Report for the Euro2008q at the Athens Olympic Stadium and a score of 1-2?
|
CREATE TABLE table_name_44 (match_report VARCHAR, score VARCHAR, competition VARCHAR, venue VARCHAR)
|
SELECT match_report FROM table_name_44 WHERE competition = "euro2008q" AND venue = "athens olympic stadium" AND score = "1-2"
|
### Context: CREATE TABLE table_name_44 (match_report VARCHAR, score VARCHAR, competition VARCHAR, venue VARCHAR) ### Question: What was the Match Report for the Euro2008q at the Athens Olympic Stadium and a score of 1-2? ### Answer: SELECT match_report FROM table_name_44 WHERE competition = "euro2008q" AND venue = "athens olympic stadium" AND score = "1-2"
|
On what date was the score 2-1?
|
CREATE TABLE table_name_38 (date VARCHAR, score VARCHAR)
|
SELECT date FROM table_name_38 WHERE score = "2-1"
|
### Context: CREATE TABLE table_name_38 (date VARCHAR, score VARCHAR) ### Question: On what date was the score 2-1? ### Answer: SELECT date FROM table_name_38 WHERE score = "2-1"
|
On what date was the Competition of Friendly held?
|
CREATE TABLE table_name_70 (date VARCHAR, competition VARCHAR)
|
SELECT date FROM table_name_70 WHERE competition = "friendly"
|
### Context: CREATE TABLE table_name_70 (date VARCHAR, competition VARCHAR) ### Question: On what date was the Competition of Friendly held? ### Answer: SELECT date FROM table_name_70 WHERE competition = "friendly"
|
What was the score at Pankritio Stadium on June 6, 2007?
|
CREATE TABLE table_name_81 (score VARCHAR, venue VARCHAR, date VARCHAR)
|
SELECT score FROM table_name_81 WHERE venue = "pankritio stadium" AND date = "june 6, 2007"
|
### Context: CREATE TABLE table_name_81 (score VARCHAR, venue VARCHAR, date VARCHAR) ### Question: What was the score at Pankritio Stadium on June 6, 2007? ### Answer: SELECT score FROM table_name_81 WHERE venue = "pankritio stadium" AND date = "june 6, 2007"
|
On what date was there a draw at Sydney Cricket Ground?
|
CREATE TABLE table_name_83 (date VARCHAR, result VARCHAR, venue VARCHAR)
|
SELECT date FROM table_name_83 WHERE result = "draw" AND venue = "sydney cricket ground"
|
### Context: CREATE TABLE table_name_83 (date VARCHAR, result VARCHAR, venue VARCHAR) ### Question: On what date was there a draw at Sydney Cricket Ground? ### Answer: SELECT date FROM table_name_83 WHERE result = "draw" AND venue = "sydney cricket ground"
|
In what venue was the result a draw?
|
CREATE TABLE table_name_20 (venue VARCHAR, result VARCHAR)
|
SELECT venue FROM table_name_20 WHERE result = "draw"
|
### Context: CREATE TABLE table_name_20 (venue VARCHAR, result VARCHAR) ### Question: In what venue was the result a draw? ### Answer: SELECT venue FROM table_name_20 WHERE result = "draw"
|
On what date was the result Wi by 1 run?
|
CREATE TABLE table_name_24 (date VARCHAR, result VARCHAR)
|
SELECT date FROM table_name_24 WHERE result = "wi by 1 run"
|
### Context: CREATE TABLE table_name_24 (date VARCHAR, result VARCHAR) ### Question: On what date was the result Wi by 1 run? ### Answer: SELECT date FROM table_name_24 WHERE result = "wi by 1 run"
|
What venue had a draw?
|
CREATE TABLE table_name_77 (venue VARCHAR, result VARCHAR)
|
SELECT venue FROM table_name_77 WHERE result = "draw"
|
### Context: CREATE TABLE table_name_77 (venue VARCHAR, result VARCHAR) ### Question: What venue had a draw? ### Answer: SELECT venue FROM table_name_77 WHERE result = "draw"
|
What is the total number of points for entrants with a Jordan 192 chassis?
|
CREATE TABLE table_name_98 (pts INTEGER, chassis VARCHAR)
|
SELECT SUM(pts) FROM table_name_98 WHERE chassis = "jordan 192"
|
### Context: CREATE TABLE table_name_98 (pts INTEGER, chassis VARCHAR) ### Question: What is the total number of points for entrants with a Jordan 192 chassis? ### Answer: SELECT SUM(pts) FROM table_name_98 WHERE chassis = "jordan 192"
|
Which entrant had a chassis of March CG891?
|
CREATE TABLE table_name_20 (entrant VARCHAR, chassis VARCHAR)
|
SELECT entrant FROM table_name_20 WHERE chassis = "march cg891"
|
### Context: CREATE TABLE table_name_20 (entrant VARCHAR, chassis VARCHAR) ### Question: Which entrant had a chassis of March CG891? ### Answer: SELECT entrant FROM table_name_20 WHERE chassis = "march cg891"
|
What is the lowest number of points for an entrant with a Jordan 192 chassis?
|
CREATE TABLE table_name_20 (pts INTEGER, chassis VARCHAR)
|
SELECT MIN(pts) FROM table_name_20 WHERE chassis = "jordan 192"
|
### Context: CREATE TABLE table_name_20 (pts INTEGER, chassis VARCHAR) ### Question: What is the lowest number of points for an entrant with a Jordan 192 chassis? ### Answer: SELECT MIN(pts) FROM table_name_20 WHERE chassis = "jordan 192"
|
What Opponent has the Attendance of 14,029?
|
CREATE TABLE table_name_77 (opponent VARCHAR, attendance VARCHAR)
|
SELECT opponent FROM table_name_77 WHERE attendance = "14,029"
|
### Context: CREATE TABLE table_name_77 (opponent VARCHAR, attendance VARCHAR) ### Question: What Opponent has the Attendance of 14,029? ### Answer: SELECT opponent FROM table_name_77 WHERE attendance = "14,029"
|
Can you tell me the Attendance that has the Date of april 12?
|
CREATE TABLE table_name_63 (attendance VARCHAR, date VARCHAR)
|
SELECT attendance FROM table_name_63 WHERE date = "april 12"
|
### Context: CREATE TABLE table_name_63 (attendance VARCHAR, date VARCHAR) ### Question: Can you tell me the Attendance that has the Date of april 12? ### Answer: SELECT attendance FROM table_name_63 WHERE date = "april 12"
|
Can you tell me the Score that has the Opponent of brewers, and the Attendance of 11,235?
|
CREATE TABLE table_name_98 (score VARCHAR, opponent VARCHAR, attendance VARCHAR)
|
SELECT score FROM table_name_98 WHERE opponent = "brewers" AND attendance = "11,235"
|
### Context: CREATE TABLE table_name_98 (score VARCHAR, opponent VARCHAR, attendance VARCHAR) ### Question: Can you tell me the Score that has the Opponent of brewers, and the Attendance of 11,235? ### Answer: SELECT score FROM table_name_98 WHERE opponent = "brewers" AND attendance = "11,235"
|
Can you tell me the Score that has the Attendance of 4,567?
|
CREATE TABLE table_name_94 (score VARCHAR, attendance VARCHAR)
|
SELECT score FROM table_name_94 WHERE attendance = "4,567"
|
### Context: CREATE TABLE table_name_94 (score VARCHAR, attendance VARCHAR) ### Question: Can you tell me the Score that has the Attendance of 4,567? ### Answer: SELECT score FROM table_name_94 WHERE attendance = "4,567"
|
What is the date with the distance of km (mi) at the course of roccaraso to san giorgio del sannio?
|
CREATE TABLE table_name_20 (date VARCHAR, distance VARCHAR, course VARCHAR)
|
SELECT date FROM table_name_20 WHERE distance = "km (mi)" AND course = "roccaraso to san giorgio del sannio"
|
### Context: CREATE TABLE table_name_20 (date VARCHAR, distance VARCHAR, course VARCHAR) ### Question: What is the date with the distance of km (mi) at the course of roccaraso to san giorgio del sannio? ### Answer: SELECT date FROM table_name_20 WHERE distance = "km (mi)" AND course = "roccaraso to san giorgio del sannio"
|
Name the engine with entrant of larrousse f1
|
CREATE TABLE table_name_59 (engine VARCHAR, entrant VARCHAR)
|
SELECT engine FROM table_name_59 WHERE entrant = "larrousse f1"
|
### Context: CREATE TABLE table_name_59 (engine VARCHAR, entrant VARCHAR) ### Question: Name the engine with entrant of larrousse f1 ### Answer: SELECT engine FROM table_name_59 WHERE entrant = "larrousse f1"
|
Name the average yeara for engine of renault v10 with points more than 4
|
CREATE TABLE table_name_19 (year INTEGER, engine VARCHAR, points VARCHAR)
|
SELECT AVG(year) FROM table_name_19 WHERE engine = "renault v10" AND points > 4
|
### Context: CREATE TABLE table_name_19 (year INTEGER, engine VARCHAR, points VARCHAR) ### Question: Name the average yeara for engine of renault v10 with points more than 4 ### Answer: SELECT AVG(year) FROM table_name_19 WHERE engine = "renault v10" AND points > 4
|
Name the sumof points for year less than 1994 and chassis of lola lc89b
|
CREATE TABLE table_name_47 (points INTEGER, year VARCHAR, chassis VARCHAR)
|
SELECT SUM(points) FROM table_name_47 WHERE year < 1994 AND chassis = "lola lc89b"
|
### Context: CREATE TABLE table_name_47 (points INTEGER, year VARCHAR, chassis VARCHAR) ### Question: Name the sumof points for year less than 1994 and chassis of lola lc89b ### Answer: SELECT SUM(points) FROM table_name_47 WHERE year < 1994 AND chassis = "lola lc89b"
|
Name the entrant for year more than 1991 and chassis of lotus 109
|
CREATE TABLE table_name_92 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)
|
SELECT entrant FROM table_name_92 WHERE year > 1991 AND chassis = "lotus 109"
|
### Context: CREATE TABLE table_name_92 (entrant VARCHAR, year VARCHAR, chassis VARCHAR) ### Question: Name the entrant for year more than 1991 and chassis of lotus 109 ### Answer: SELECT entrant FROM table_name_92 WHERE year > 1991 AND chassis = "lotus 109"
|
Name the sum of points for 1991
|
CREATE TABLE table_name_79 (points INTEGER, year VARCHAR)
|
SELECT SUM(points) FROM table_name_79 WHERE year = 1991
|
### Context: CREATE TABLE table_name_79 (points INTEGER, year VARCHAR) ### Question: Name the sum of points for 1991 ### Answer: SELECT SUM(points) FROM table_name_79 WHERE year = 1991
|
Which type has turin to monza as a course?
|
CREATE TABLE table_name_85 (type VARCHAR, course VARCHAR)
|
SELECT type FROM table_name_85 WHERE course = "turin to monza"
|
### Context: CREATE TABLE table_name_85 (type VARCHAR, course VARCHAR) ### Question: Which type has turin to monza as a course? ### Answer: SELECT type FROM table_name_85 WHERE course = "turin to monza"
|
Which course has km (mi) as a type?
|
CREATE TABLE table_name_15 (course VARCHAR, type VARCHAR)
|
SELECT course FROM table_name_15 WHERE type = "km (mi)"
|
### Context: CREATE TABLE table_name_15 (course VARCHAR, type VARCHAR) ### Question: Which course has km (mi) as a type? ### Answer: SELECT course FROM table_name_15 WHERE type = "km (mi)"
|
What winner has the sanremo to cuneo as the course?
|
CREATE TABLE table_name_51 (winner VARCHAR, course VARCHAR)
|
SELECT winner FROM table_name_51 WHERE course = "sanremo to cuneo"
|
### Context: CREATE TABLE table_name_51 (winner VARCHAR, course VARCHAR) ### Question: What winner has the sanremo to cuneo as the course? ### Answer: SELECT winner FROM table_name_51 WHERE course = "sanremo to cuneo"
|
Name the distance for stage of 2
|
CREATE TABLE table_name_5 (distance VARCHAR, stage VARCHAR)
|
SELECT distance FROM table_name_5 WHERE stage = "2"
|
### Context: CREATE TABLE table_name_5 (distance VARCHAR, stage VARCHAR) ### Question: Name the distance for stage of 2 ### Answer: SELECT distance FROM table_name_5 WHERE stage = "2"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.