question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What is the %2006 when the %2001 was more than 62.5? | CREATE TABLE table_name_52 (_percentage_2006 INTEGER, _percentage_2001 INTEGER) | SELECT AVG(_percentage_2006) FROM table_name_52 WHERE _percentage_2001 > 62.5 | ### Context: CREATE TABLE table_name_52 (_percentage_2006 INTEGER, _percentage_2001 INTEGER) ### Question: What is the %2006 when the %2001 was more than 62.5? ### Answer: SELECT AVG(_percentage_2006) FROM table_name_52 WHERE _percentage_2001 > 62.5 |
What is the sum of the losses by the Montreal Hockey Club, who have more than 15 Goals Against? | CREATE TABLE table_name_56 (losses INTEGER, team VARCHAR, goals_against VARCHAR) | SELECT SUM(losses) FROM table_name_56 WHERE team = "montreal hockey club" AND goals_against > 15 | ### Context: CREATE TABLE table_name_56 (losses INTEGER, team VARCHAR, goals_against VARCHAR) ### Question: What is the sum of the losses by the Montreal Hockey Club, who have more than 15 Goals Against? ### Answer: SELECT SUM(losses) FROM table_name_56 WHERE team = "montreal hockey club" AND goals_against > 15 |
What is the largest Goals For by a team that has more than 0 ties? | CREATE TABLE table_name_18 (goals_for INTEGER, ties INTEGER) | SELECT MAX(goals_for) FROM table_name_18 WHERE ties > 0 | ### Context: CREATE TABLE table_name_18 (goals_for INTEGER, ties INTEGER) ### Question: What is the largest Goals For by a team that has more than 0 ties? ### Answer: SELECT MAX(goals_for) FROM table_name_18 WHERE ties > 0 |
How many ties do teams with 25 Goals For and more than 5 wins have? | CREATE TABLE table_name_40 (ties INTEGER, goals_for VARCHAR, wins VARCHAR) | SELECT SUM(ties) FROM table_name_40 WHERE goals_for = 25 AND wins > 5 | ### Context: CREATE TABLE table_name_40 (ties INTEGER, goals_for VARCHAR, wins VARCHAR) ### Question: How many ties do teams with 25 Goals For and more than 5 wins have? ### Answer: SELECT SUM(ties) FROM table_name_40 WHERE goals_for = 25 AND wins > 5 |
What is the lowest Goals Against by a team with more than 5 wins? | CREATE TABLE table_name_18 (goals_against INTEGER, wins INTEGER) | SELECT MIN(goals_against) FROM table_name_18 WHERE wins > 5 | ### Context: CREATE TABLE table_name_18 (goals_against INTEGER, wins INTEGER) ### Question: What is the lowest Goals Against by a team with more than 5 wins? ### Answer: SELECT MIN(goals_against) FROM table_name_18 WHERE wins > 5 |
What is the total number of ties a team with less than 3 losses have? | CREATE TABLE table_name_98 (ties VARCHAR, losses INTEGER) | SELECT COUNT(ties) FROM table_name_98 WHERE losses < 3 | ### Context: CREATE TABLE table_name_98 (ties VARCHAR, losses INTEGER) ### Question: What is the total number of ties a team with less than 3 losses have? ### Answer: SELECT COUNT(ties) FROM table_name_98 WHERE losses < 3 |
Tell me the race name where stirling moss won on 16 april | CREATE TABLE table_name_61 (race_name VARCHAR, winning_driver VARCHAR, date VARCHAR) | SELECT race_name FROM table_name_61 WHERE winning_driver = "stirling moss" AND date = "16 april" | ### Context: CREATE TABLE table_name_61 (race_name VARCHAR, winning_driver VARCHAR, date VARCHAR) ### Question: Tell me the race name where stirling moss won on 16 april ### Answer: SELECT race_name FROM table_name_61 WHERE winning_driver = "stirling moss" AND date = "16 april" |
Tell me the report for circuit of modena | CREATE TABLE table_name_25 (report VARCHAR, circuit VARCHAR) | SELECT report FROM table_name_25 WHERE circuit = "modena" | ### Context: CREATE TABLE table_name_25 (report VARCHAR, circuit VARCHAR) ### Question: Tell me the report for circuit of modena ### Answer: SELECT report FROM table_name_25 WHERE circuit = "modena" |
Tell me the race name for ferrari on 25 april | CREATE TABLE table_name_17 (race_name VARCHAR, constructor VARCHAR, date VARCHAR) | SELECT race_name FROM table_name_17 WHERE constructor = "ferrari" AND date = "25 april" | ### Context: CREATE TABLE table_name_17 (race_name VARCHAR, constructor VARCHAR, date VARCHAR) ### Question: Tell me the race name for ferrari on 25 april ### Answer: SELECT race_name FROM table_name_17 WHERE constructor = "ferrari" AND date = "25 april" |
Name the constructor for vii kanonloppet | CREATE TABLE table_name_22 (constructor VARCHAR, race_name VARCHAR) | SELECT constructor FROM table_name_22 WHERE race_name = "vii kanonloppet" | ### Context: CREATE TABLE table_name_22 (constructor VARCHAR, race_name VARCHAR) ### Question: Name the constructor for vii kanonloppet ### Answer: SELECT constructor FROM table_name_22 WHERE race_name = "vii kanonloppet" |
Who is the opponent on May 7? | CREATE TABLE table_name_55 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_55 WHERE date = "may 7" | ### Context: CREATE TABLE table_name_55 (opponent VARCHAR, date VARCHAR) ### Question: Who is the opponent on May 7? ### Answer: SELECT opponent FROM table_name_55 WHERE date = "may 7" |
When the Home team was Carlton, what was the Away team score? | CREATE TABLE table_name_90 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_90 WHERE home_team = "carlton" | ### Context: CREATE TABLE table_name_90 (away_team VARCHAR, home_team VARCHAR) ### Question: When the Home team was Carlton, what was the Away team score? ### Answer: SELECT away_team AS score FROM table_name_90 WHERE home_team = "carlton" |
Who was the constructor for a FW20 chassis? | CREATE TABLE table_name_37 (constructor VARCHAR, chassis VARCHAR) | SELECT constructor FROM table_name_37 WHERE chassis = "fw20" | ### Context: CREATE TABLE table_name_37 (constructor VARCHAR, chassis VARCHAR) ### Question: Who was the constructor for a FW20 chassis? ### Answer: SELECT constructor FROM table_name_37 WHERE chassis = "fw20" |
What engine did David Coulthard have in his mp4-13 chassis? | CREATE TABLE table_name_86 (engine_† VARCHAR, chassis VARCHAR, driver VARCHAR) | SELECT engine_† FROM table_name_86 WHERE chassis = "mp4-13" AND driver = "david coulthard" | ### Context: CREATE TABLE table_name_86 (engine_† VARCHAR, chassis VARCHAR, driver VARCHAR) ### Question: What engine did David Coulthard have in his mp4-13 chassis? ### Answer: SELECT engine_† FROM table_name_86 WHERE chassis = "mp4-13" AND driver = "david coulthard" |
Which date has an Outcome of runner-up, and an Opponent in the final of gilles simon? | CREATE TABLE table_name_86 (date VARCHAR, outcome VARCHAR, opponent_in_the_final VARCHAR) | SELECT date FROM table_name_86 WHERE outcome = "runner-up" AND opponent_in_the_final = "gilles simon" | ### Context: CREATE TABLE table_name_86 (date VARCHAR, outcome VARCHAR, opponent_in_the_final VARCHAR) ### Question: Which date has an Outcome of runner-up, and an Opponent in the final of gilles simon? ### Answer: SELECT date FROM table_name_86 WHERE outcome = "runner-up" AND opponent_in_the_final = "gilles simon" |
Who was the opponent on the 28 july 2013 final? | CREATE TABLE table_name_33 (opponent_in_the_final VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_33 WHERE date = "28 july 2013" | ### Context: CREATE TABLE table_name_33 (opponent_in_the_final VARCHAR, date VARCHAR) ### Question: Who was the opponent on the 28 july 2013 final? ### Answer: SELECT opponent_in_the_final FROM table_name_33 WHERE date = "28 july 2013" |
Which date has a Score in the final of 4–6, 3–6? | CREATE TABLE table_name_11 (date VARCHAR, score_in_the_final VARCHAR) | SELECT date FROM table_name_11 WHERE score_in_the_final = "4–6, 3–6" | ### Context: CREATE TABLE table_name_11 (date VARCHAR, score_in_the_final VARCHAR) ### Question: Which date has a Score in the final of 4–6, 3–6? ### Answer: SELECT date FROM table_name_11 WHERE score_in_the_final = "4–6, 3–6" |
What is the prefix for the formula of Rsor'? | CREATE TABLE table_name_75 (prefix VARCHAR, formula VARCHAR) | SELECT prefix FROM table_name_75 WHERE formula = "rsor'" | ### Context: CREATE TABLE table_name_75 (prefix VARCHAR, formula VARCHAR) ### Question: What is the prefix for the formula of Rsor'? ### Answer: SELECT prefix FROM table_name_75 WHERE formula = "rsor'" |
Which group has the RNCS formula? | CREATE TABLE table_name_66 (group VARCHAR, formula VARCHAR) | SELECT group FROM table_name_66 WHERE formula = "rncs" | ### Context: CREATE TABLE table_name_66 (group VARCHAR, formula VARCHAR) ### Question: Which group has the RNCS formula? ### Answer: SELECT group FROM table_name_66 WHERE formula = "rncs" |
Which formula has a thial as a chemical class? | CREATE TABLE table_name_13 (formula VARCHAR, chemical_class VARCHAR) | SELECT formula FROM table_name_13 WHERE chemical_class = "thial" | ### Context: CREATE TABLE table_name_13 (formula VARCHAR, chemical_class VARCHAR) ### Question: Which formula has a thial as a chemical class? ### Answer: SELECT formula FROM table_name_13 WHERE chemical_class = "thial" |
Which suffix has the prefix of isothiocyanato- (-ncs)? | CREATE TABLE table_name_17 (suffix VARCHAR, prefix VARCHAR) | SELECT suffix FROM table_name_17 WHERE prefix = "isothiocyanato- (-ncs)" | ### Context: CREATE TABLE table_name_17 (suffix VARCHAR, prefix VARCHAR) ### Question: Which suffix has the prefix of isothiocyanato- (-ncs)? ### Answer: SELECT suffix FROM table_name_17 WHERE prefix = "isothiocyanato- (-ncs)" |
Which item has the suffix containing thiocyanato- (-scn) as a prefix? | CREATE TABLE table_name_77 (suffix VARCHAR, prefix VARCHAR) | SELECT suffix FROM table_name_77 WHERE prefix = "thiocyanato- (-scn)" | ### Context: CREATE TABLE table_name_77 (suffix VARCHAR, prefix VARCHAR) ### Question: Which item has the suffix containing thiocyanato- (-scn) as a prefix? ### Answer: SELECT suffix FROM table_name_77 WHERE prefix = "thiocyanato- (-scn)" |
Which formula has thial as a chemical class? | CREATE TABLE table_name_7 (formula VARCHAR, chemical_class VARCHAR) | SELECT formula FROM table_name_7 WHERE chemical_class = "thial" | ### Context: CREATE TABLE table_name_7 (formula VARCHAR, chemical_class VARCHAR) ### Question: Which formula has thial as a chemical class? ### Answer: SELECT formula FROM table_name_7 WHERE chemical_class = "thial" |
If fitzroy is the Away team, what Date did they play? | CREATE TABLE table_name_97 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_97 WHERE away_team = "fitzroy" | ### Context: CREATE TABLE table_name_97 (date VARCHAR, away_team VARCHAR) ### Question: If fitzroy is the Away team, what Date did they play? ### Answer: SELECT date FROM table_name_97 WHERE away_team = "fitzroy" |
When the Away team is fitzroy on the Date of 15 july 1967, what was the Home team playing? | CREATE TABLE table_name_89 (home_team VARCHAR, date VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_89 WHERE date = "15 july 1967" AND away_team = "fitzroy" | ### Context: CREATE TABLE table_name_89 (home_team VARCHAR, date VARCHAR, away_team VARCHAR) ### Question: When the Away team is fitzroy on the Date of 15 july 1967, what was the Home team playing? ### Answer: SELECT home_team FROM table_name_89 WHERE date = "15 july 1967" AND away_team = "fitzroy" |
Which Venue has an Away team of st kilda? | CREATE TABLE table_name_5 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_5 WHERE away_team = "st kilda" | ### Context: CREATE TABLE table_name_5 (venue VARCHAR, away_team VARCHAR) ### Question: Which Venue has an Away team of st kilda? ### Answer: SELECT venue FROM table_name_5 WHERE away_team = "st kilda" |
What place has a draw smaller than 2? | CREATE TABLE table_name_90 (place INTEGER, draw INTEGER) | SELECT AVG(place) FROM table_name_90 WHERE draw < 2 | ### Context: CREATE TABLE table_name_90 (place INTEGER, draw INTEGER) ### Question: What place has a draw smaller than 2? ### Answer: SELECT AVG(place) FROM table_name_90 WHERE draw < 2 |
What is the launch date of the satellite with a COSPAR ID of 1995-022a? | CREATE TABLE table_name_32 (launch_date__utc_ VARCHAR, cospar_id_satcat_№ VARCHAR) | SELECT launch_date__utc_ FROM table_name_32 WHERE cospar_id_satcat_№ = "1995-022a" | ### Context: CREATE TABLE table_name_32 (launch_date__utc_ VARCHAR, cospar_id_satcat_№ VARCHAR) ### Question: What is the launch date of the satellite with a COSPAR ID of 1995-022a? ### Answer: SELECT launch_date__utc_ FROM table_name_32 WHERE cospar_id_satcat_№ = "1995-022a" |
What is the COSPAR ID of the satellite with a titan iv(401)a launch vehicle? | CREATE TABLE table_name_20 (cospar_id_satcat_№ VARCHAR, launch_vehicle VARCHAR) | SELECT cospar_id_satcat_№ FROM table_name_20 WHERE launch_vehicle = "titan iv(401)a" | ### Context: CREATE TABLE table_name_20 (cospar_id_satcat_№ VARCHAR, launch_vehicle VARCHAR) ### Question: What is the COSPAR ID of the satellite with a titan iv(401)a launch vehicle? ### Answer: SELECT cospar_id_satcat_№ FROM table_name_20 WHERE launch_vehicle = "titan iv(401)a" |
What is the launch designation of the satellite with a 2009-001a COSPAR ID? | CREATE TABLE table_name_53 (launch_designation VARCHAR, cospar_id_satcat_№ VARCHAR) | SELECT launch_designation FROM table_name_53 WHERE cospar_id_satcat_№ = "2009-001a" | ### Context: CREATE TABLE table_name_53 (launch_designation VARCHAR, cospar_id_satcat_№ VARCHAR) ### Question: What is the launch designation of the satellite with a 2009-001a COSPAR ID? ### Answer: SELECT launch_designation FROM table_name_53 WHERE cospar_id_satcat_№ = "2009-001a" |
What is the launch site of the satellite with a 2003-041a COSPAR ID? | CREATE TABLE table_name_71 (launch_site VARCHAR, cospar_id_satcat_№ VARCHAR) | SELECT launch_site FROM table_name_71 WHERE cospar_id_satcat_№ = "2003-041a" | ### Context: CREATE TABLE table_name_71 (launch_site VARCHAR, cospar_id_satcat_№ VARCHAR) ### Question: What is the launch site of the satellite with a 2003-041a COSPAR ID? ### Answer: SELECT launch_site FROM table_name_71 WHERE cospar_id_satcat_№ = "2003-041a" |
What construction has a CERCLIS ID of ard092916188? | CREATE TABLE table_name_1 (construction_completed VARCHAR, cerclis_id VARCHAR) | SELECT construction_completed FROM table_name_1 WHERE cerclis_id = "ard092916188" | ### Context: CREATE TABLE table_name_1 (construction_completed VARCHAR, cerclis_id VARCHAR) ### Question: What construction has a CERCLIS ID of ard092916188? ### Answer: SELECT construction_completed FROM table_name_1 WHERE cerclis_id = "ard092916188" |
What CERCLIS ID is Deleted of 04/07/2008? | CREATE TABLE table_name_16 (cerclis_id VARCHAR, deleted VARCHAR) | SELECT cerclis_id FROM table_name_16 WHERE deleted = "04/07/2008" | ### Context: CREATE TABLE table_name_16 (cerclis_id VARCHAR, deleted VARCHAR) ### Question: What CERCLIS ID is Deleted of 04/07/2008? ### Answer: SELECT cerclis_id FROM table_name_16 WHERE deleted = "04/07/2008" |
What construction has a Listed 09/08/1983, and a Deleted of –, and a Name of mid-south wood products? | CREATE TABLE table_name_48 (construction_completed VARCHAR, name VARCHAR, listed VARCHAR, deleted VARCHAR) | SELECT construction_completed FROM table_name_48 WHERE listed = "09/08/1983" AND deleted = "–" AND name = "mid-south wood products" | ### Context: CREATE TABLE table_name_48 (construction_completed VARCHAR, name VARCHAR, listed VARCHAR, deleted VARCHAR) ### Question: What construction has a Listed 09/08/1983, and a Deleted of –, and a Name of mid-south wood products? ### Answer: SELECT construction_completed FROM table_name_48 WHERE listed = "09/08/1983" AND deleted = "–" AND name = "mid-south wood products" |
What is the Construction that has a Listed 09/08/1983, and a Name of cecil lindsey? | CREATE TABLE table_name_49 (construction_completed VARCHAR, listed VARCHAR, name VARCHAR) | SELECT construction_completed FROM table_name_49 WHERE listed = "09/08/1983" AND name = "cecil lindsey" | ### Context: CREATE TABLE table_name_49 (construction_completed VARCHAR, listed VARCHAR, name VARCHAR) ### Question: What is the Construction that has a Listed 09/08/1983, and a Name of cecil lindsey? ### Answer: SELECT construction_completed FROM table_name_49 WHERE listed = "09/08/1983" AND name = "cecil lindsey" |
What was the attendance at Kardinia Park? | CREATE TABLE table_name_63 (crowd INTEGER, venue VARCHAR) | SELECT AVG(crowd) FROM table_name_63 WHERE venue = "kardinia park" | ### Context: CREATE TABLE table_name_63 (crowd INTEGER, venue VARCHAR) ### Question: What was the attendance at Kardinia Park? ### Answer: SELECT AVG(crowd) FROM table_name_63 WHERE venue = "kardinia park" |
What was the Date of Week 16? | CREATE TABLE table_name_43 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_43 WHERE week = 16 | ### Context: CREATE TABLE table_name_43 (date VARCHAR, week VARCHAR) ### Question: What was the Date of Week 16? ### Answer: SELECT date FROM table_name_43 WHERE week = 16 |
What date was Colorado the home team? | CREATE TABLE table_name_85 (date VARCHAR, home VARCHAR) | SELECT date FROM table_name_85 WHERE home = "colorado" | ### Context: CREATE TABLE table_name_85 (date VARCHAR, home VARCHAR) ### Question: What date was Colorado the home team? ### Answer: SELECT date FROM table_name_85 WHERE home = "colorado" |
What was the record for the game on November 28 when the decision was Backstrom? | CREATE TABLE table_name_69 (record VARCHAR, decision VARCHAR, date VARCHAR) | SELECT record FROM table_name_69 WHERE decision = "backstrom" AND date = "november 28" | ### Context: CREATE TABLE table_name_69 (record VARCHAR, decision VARCHAR, date VARCHAR) ### Question: What was the record for the game on November 28 when the decision was Backstrom? ### Answer: SELECT record FROM table_name_69 WHERE decision = "backstrom" AND date = "november 28" |
What team was the home team when the record was 11–8–2? | CREATE TABLE table_name_26 (home VARCHAR, record VARCHAR) | SELECT home FROM table_name_26 WHERE record = "11–8–2" | ### Context: CREATE TABLE table_name_26 (home VARCHAR, record VARCHAR) ### Question: What team was the home team when the record was 11–8–2? ### Answer: SELECT home FROM table_name_26 WHERE record = "11–8–2" |
What was the score when Edmonton was the home team? | CREATE TABLE table_name_10 (score VARCHAR, home VARCHAR) | SELECT score FROM table_name_10 WHERE home = "edmonton" | ### Context: CREATE TABLE table_name_10 (score VARCHAR, home VARCHAR) ### Question: What was the score when Edmonton was the home team? ### Answer: SELECT score FROM table_name_10 WHERE home = "edmonton" |
Tell me the highest PI GP with pick # greater than 159 and reg GP more than 0 | CREATE TABLE table_name_97 (pl_gp INTEGER, pick__number VARCHAR, reg_gp VARCHAR) | SELECT MAX(pl_gp) FROM table_name_97 WHERE pick__number > 159 AND reg_gp > 0 | ### Context: CREATE TABLE table_name_97 (pl_gp INTEGER, pick__number VARCHAR, reg_gp VARCHAR) ### Question: Tell me the highest PI GP with pick # greater than 159 and reg GP more than 0 ### Answer: SELECT MAX(pl_gp) FROM table_name_97 WHERE pick__number > 159 AND reg_gp > 0 |
In the match where south melbourne was the away team, who was the home team? | CREATE TABLE table_name_34 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_34 WHERE away_team = "south melbourne" | ### Context: CREATE TABLE table_name_34 (home_team VARCHAR, away_team VARCHAR) ### Question: In the match where south melbourne was the away team, who was the home team? ### Answer: SELECT home_team FROM table_name_34 WHERE away_team = "south melbourne" |
Which Team 2 faced Team 1 from Barcelona? | CREATE TABLE table_name_48 (team_2 VARCHAR, team_1 VARCHAR) | SELECT team_2 FROM table_name_48 WHERE team_1 = "barcelona" | ### Context: CREATE TABLE table_name_48 (team_2 VARCHAR, team_1 VARCHAR) ### Question: Which Team 2 faced Team 1 from Barcelona? ### Answer: SELECT team_2 FROM table_name_48 WHERE team_1 = "barcelona" |
Which first leg had Galatasaray as Team 1? | CREATE TABLE table_name_34 (team_1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_34 WHERE team_1 = "galatasaray" | ### Context: CREATE TABLE table_name_34 (team_1 VARCHAR) ### Question: Which first leg had Galatasaray as Team 1? ### Answer: SELECT 1 AS st_leg FROM table_name_34 WHERE team_1 = "galatasaray" |
What was the name of the Event with a time of 2:19? | CREATE TABLE table_name_8 (event VARCHAR, time VARCHAR) | SELECT event FROM table_name_8 WHERE time = "2:19" | ### Context: CREATE TABLE table_name_8 (event VARCHAR, time VARCHAR) ### Question: What was the name of the Event with a time of 2:19? ### Answer: SELECT event FROM table_name_8 WHERE time = "2:19" |
Where was match which had Joe Lauzon as an opponent? | CREATE TABLE table_name_76 (location VARCHAR, opponent VARCHAR) | SELECT location FROM table_name_76 WHERE opponent = "joe lauzon" | ### Context: CREATE TABLE table_name_76 (location VARCHAR, opponent VARCHAR) ### Question: Where was match which had Joe Lauzon as an opponent? ### Answer: SELECT location FROM table_name_76 WHERE opponent = "joe lauzon" |
What is the name of the building that was the tallest from 1990–1997 in Frankfurt? | CREATE TABLE table_name_78 (name VARCHAR, city VARCHAR, years_as_tallest VARCHAR) | SELECT name FROM table_name_78 WHERE city = "frankfurt" AND years_as_tallest = "1990–1997" | ### Context: CREATE TABLE table_name_78 (name VARCHAR, city VARCHAR, years_as_tallest VARCHAR) ### Question: What is the name of the building that was the tallest from 1990–1997 in Frankfurt? ### Answer: SELECT name FROM table_name_78 WHERE city = "frankfurt" AND years_as_tallest = "1990–1997" |
For a height less than 122 meters, what is the greatest height in feet? | CREATE TABLE table_name_58 (height__ft_ INTEGER, height__m_ INTEGER) | SELECT MAX(height__ft_) FROM table_name_58 WHERE height__m_ < 122 | ### Context: CREATE TABLE table_name_58 (height__ft_ INTEGER, height__m_ INTEGER) ### Question: For a height less than 122 meters, what is the greatest height in feet? ### Answer: SELECT MAX(height__ft_) FROM table_name_58 WHERE height__m_ < 122 |
How high was the highest building in feet in the city of cologne? | CREATE TABLE table_name_66 (height__ft_ INTEGER, city VARCHAR) | SELECT MAX(height__ft_) FROM table_name_66 WHERE city = "cologne" | ### Context: CREATE TABLE table_name_66 (height__ft_ INTEGER, city VARCHAR) ### Question: How high was the highest building in feet in the city of cologne? ### Answer: SELECT MAX(height__ft_) FROM table_name_66 WHERE city = "cologne" |
What is the smallest height (ft) of a building in Frankfurt with a height (m) of 257 and less than 55 floors? | CREATE TABLE table_name_24 (height__ft_ INTEGER, floors VARCHAR, city VARCHAR, height__m_ VARCHAR) | SELECT MIN(height__ft_) FROM table_name_24 WHERE city = "frankfurt" AND height__m_ = 257 AND floors < 55 | ### Context: CREATE TABLE table_name_24 (height__ft_ INTEGER, floors VARCHAR, city VARCHAR, height__m_ VARCHAR) ### Question: What is the smallest height (ft) of a building in Frankfurt with a height (m) of 257 and less than 55 floors? ### Answer: SELECT MIN(height__ft_) FROM table_name_24 WHERE city = "frankfurt" AND height__m_ = 257 AND floors < 55 |
What is the height in meters for a building in Frankfurt that is 850 feet tall? | CREATE TABLE table_name_66 (height__m_ VARCHAR, city VARCHAR, height__ft_ VARCHAR) | SELECT height__m_ FROM table_name_66 WHERE city = "frankfurt" AND height__ft_ = 850 | ### Context: CREATE TABLE table_name_66 (height__m_ VARCHAR, city VARCHAR, height__ft_ VARCHAR) ### Question: What is the height in meters for a building in Frankfurt that is 850 feet tall? ### Answer: SELECT height__m_ FROM table_name_66 WHERE city = "frankfurt" AND height__ft_ = 850 |
What is the mintage of the coin with a Toronto Maple Leafs theme and an issue price below 24.95? | CREATE TABLE table_name_76 (mintage VARCHAR, theme VARCHAR, issue_price VARCHAR) | SELECT mintage FROM table_name_76 WHERE theme = "toronto maple leafs" AND issue_price < 24.95 | ### Context: CREATE TABLE table_name_76 (mintage VARCHAR, theme VARCHAR, issue_price VARCHAR) ### Question: What is the mintage of the coin with a Toronto Maple Leafs theme and an issue price below 24.95? ### Answer: SELECT mintage FROM table_name_76 WHERE theme = "toronto maple leafs" AND issue_price < 24.95 |
What was Collingwood's score in their away game? | CREATE TABLE table_name_39 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_39 WHERE away_team = "collingwood" | ### Context: CREATE TABLE table_name_39 (away_team VARCHAR) ### Question: What was Collingwood's score in their away game? ### Answer: SELECT away_team AS score FROM table_name_39 WHERE away_team = "collingwood" |
Where did Geelong play as the away team? | CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_14 WHERE away_team = "geelong" | ### Context: CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR) ### Question: Where did Geelong play as the away team? ### Answer: SELECT venue FROM table_name_14 WHERE away_team = "geelong" |
On what date was the I Dessau Autobahnspinne race? | CREATE TABLE table_name_66 (date VARCHAR, race_name VARCHAR) | SELECT date FROM table_name_66 WHERE race_name = "i dessau autobahnspinne" | ### Context: CREATE TABLE table_name_66 (date VARCHAR, race_name VARCHAR) ### Question: On what date was the I Dessau Autobahnspinne race? ### Answer: SELECT date FROM table_name_66 WHERE race_name = "i dessau autobahnspinne" |
Who was the winning driver in the Sachsenring circuit? | CREATE TABLE table_name_8 (winning_driver VARCHAR, circuit VARCHAR) | SELECT winning_driver FROM table_name_8 WHERE circuit = "sachsenring" | ### Context: CREATE TABLE table_name_8 (winning_driver VARCHAR, circuit VARCHAR) ### Question: Who was the winning driver in the Sachsenring circuit? ### Answer: SELECT winning_driver FROM table_name_8 WHERE circuit = "sachsenring" |
Where is Terry Mills from? | CREATE TABLE table_name_98 (hometown VARCHAR, player VARCHAR) | SELECT hometown FROM table_name_98 WHERE player = "terry mills" | ### Context: CREATE TABLE table_name_98 (hometown VARCHAR, player VARCHAR) ### Question: Where is Terry Mills from? ### Answer: SELECT hometown FROM table_name_98 WHERE player = "terry mills" |
When is the Mexican grand prix? | CREATE TABLE table_name_24 (date VARCHAR, race VARCHAR) | SELECT date FROM table_name_24 WHERE race = "mexican grand prix" | ### Context: CREATE TABLE table_name_24 (date VARCHAR, race VARCHAR) ### Question: When is the Mexican grand prix? ### Answer: SELECT date FROM table_name_24 WHERE race = "mexican grand prix" |
The person with a Height of 6-8 went to which School? | CREATE TABLE table_name_67 (school VARCHAR, height VARCHAR) | SELECT school FROM table_name_67 WHERE height = "6-8" | ### Context: CREATE TABLE table_name_67 (school VARCHAR, height VARCHAR) ### Question: The person with a Height of 6-8 went to which School? ### Answer: SELECT school FROM table_name_67 WHERE height = "6-8" |
What College did Player Dorian Finney-Smith play for? | CREATE TABLE table_name_68 (college VARCHAR, player VARCHAR) | SELECT college FROM table_name_68 WHERE player = "dorian finney-smith" | ### Context: CREATE TABLE table_name_68 (college VARCHAR, player VARCHAR) ### Question: What College did Player Dorian Finney-Smith play for? ### Answer: SELECT college FROM table_name_68 WHERE player = "dorian finney-smith" |
Which Player has a height of 6-10, and went to College at LSU? | CREATE TABLE table_name_66 (player VARCHAR, height VARCHAR, college VARCHAR) | SELECT player FROM table_name_66 WHERE height = "6-10" AND college = "lsu" | ### Context: CREATE TABLE table_name_66 (player VARCHAR, height VARCHAR, college VARCHAR) ### Question: Which Player has a height of 6-10, and went to College at LSU? ### Answer: SELECT player FROM table_name_66 WHERE height = "6-10" AND college = "lsu" |
Which School did Player Tyrone Johnson attend? | CREATE TABLE table_name_41 (school VARCHAR, player VARCHAR) | SELECT school FROM table_name_41 WHERE player = "tyrone johnson" | ### Context: CREATE TABLE table_name_41 (school VARCHAR, player VARCHAR) ### Question: Which School did Player Tyrone Johnson attend? ### Answer: SELECT school FROM table_name_41 WHERE player = "tyrone johnson" |
Which School did Player Tyrone Johnson attend? | CREATE TABLE table_name_42 (school VARCHAR, player VARCHAR) | SELECT school FROM table_name_42 WHERE player = "tyrone johnson" | ### Context: CREATE TABLE table_name_42 (school VARCHAR, player VARCHAR) ### Question: Which School did Player Tyrone Johnson attend? ### Answer: SELECT school FROM table_name_42 WHERE player = "tyrone johnson" |
Who had the time of 1:23.32.41? | CREATE TABLE table_name_17 (rider VARCHAR, time VARCHAR) | SELECT rider FROM table_name_17 WHERE time = "1:23.32.41" | ### Context: CREATE TABLE table_name_17 (rider VARCHAR, time VARCHAR) ### Question: Who had the time of 1:23.32.41? ### Answer: SELECT rider FROM table_name_17 WHERE time = "1:23.32.41" |
What is the time of the rider who has a rank smaller than 8 and speed of 104.567mph? | CREATE TABLE table_name_24 (time VARCHAR, rank VARCHAR, speed VARCHAR) | SELECT time FROM table_name_24 WHERE rank < 8 AND speed = "104.567mph" | ### Context: CREATE TABLE table_name_24 (time VARCHAR, rank VARCHAR, speed VARCHAR) ### Question: What is the time of the rider who has a rank smaller than 8 and speed of 104.567mph? ### Answer: SELECT time FROM table_name_24 WHERE rank < 8 AND speed = "104.567mph" |
What is the home team at the Junction Oval venue? | CREATE TABLE table_name_14 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_14 WHERE venue = "junction oval" | ### Context: CREATE TABLE table_name_14 (home_team VARCHAR, venue VARCHAR) ### Question: What is the home team at the Junction Oval venue? ### Answer: SELECT home_team FROM table_name_14 WHERE venue = "junction oval" |
What is the date where the away team is Richmond? | CREATE TABLE table_name_30 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_30 WHERE away_team = "richmond" | ### Context: CREATE TABLE table_name_30 (date VARCHAR, away_team VARCHAR) ### Question: What is the date where the away team is Richmond? ### Answer: SELECT date FROM table_name_30 WHERE away_team = "richmond" |
Name the circuit when the fastest lap was john surtees and the winning driver was john surtees. | CREATE TABLE table_name_53 (circuit VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR) | SELECT circuit FROM table_name_53 WHERE fastest_lap = "john surtees" AND winning_driver = "john surtees" | ### Context: CREATE TABLE table_name_53 (circuit VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR) ### Question: Name the circuit when the fastest lap was john surtees and the winning driver was john surtees. ### Answer: SELECT circuit FROM table_name_53 WHERE fastest_lap = "john surtees" AND winning_driver = "john surtees" |
Name the winning driver with circuit of monza | CREATE TABLE table_name_59 (winning_driver VARCHAR, circuit VARCHAR) | SELECT winning_driver FROM table_name_59 WHERE circuit = "monza" | ### Context: CREATE TABLE table_name_59 (winning_driver VARCHAR, circuit VARCHAR) ### Question: Name the winning driver with circuit of monza ### Answer: SELECT winning_driver FROM table_name_59 WHERE circuit = "monza" |
Name the pole position for 8 september | CREATE TABLE table_name_35 (pole_position VARCHAR, date VARCHAR) | SELECT pole_position FROM table_name_35 WHERE date = "8 september" | ### Context: CREATE TABLE table_name_35 (pole_position VARCHAR, date VARCHAR) ### Question: Name the pole position for 8 september ### Answer: SELECT pole_position FROM table_name_35 WHERE date = "8 september" |
Name the winning driver for belgian grand prix | CREATE TABLE table_name_45 (winning_driver VARCHAR, race VARCHAR) | SELECT winning_driver FROM table_name_45 WHERE race = "belgian grand prix" | ### Context: CREATE TABLE table_name_45 (winning_driver VARCHAR, race VARCHAR) ### Question: Name the winning driver for belgian grand prix ### Answer: SELECT winning_driver FROM table_name_45 WHERE race = "belgian grand prix" |
Name the circuit for italian grand prix | CREATE TABLE table_name_97 (circuit VARCHAR, race VARCHAR) | SELECT circuit FROM table_name_97 WHERE race = "italian grand prix" | ### Context: CREATE TABLE table_name_97 (circuit VARCHAR, race VARCHAR) ### Question: Name the circuit for italian grand prix ### Answer: SELECT circuit FROM table_name_97 WHERE race = "italian grand prix" |
How many grid numbers were there for the driver Giancarlo Fisichella? | CREATE TABLE table_name_3 (grid VARCHAR, driver VARCHAR) | SELECT COUNT(grid) FROM table_name_3 WHERE driver = "giancarlo fisichella" | ### Context: CREATE TABLE table_name_3 (grid VARCHAR, driver VARCHAR) ### Question: How many grid numbers were there for the driver Giancarlo Fisichella? ### Answer: SELECT COUNT(grid) FROM table_name_3 WHERE driver = "giancarlo fisichella" |
What is the mean number of laps for the constructor Ferrari when the time/retired was fuel pressure? | CREATE TABLE table_name_93 (laps INTEGER, constructor VARCHAR, time_retired VARCHAR) | SELECT AVG(laps) FROM table_name_93 WHERE constructor = "ferrari" AND time_retired = "fuel pressure" | ### Context: CREATE TABLE table_name_93 (laps INTEGER, constructor VARCHAR, time_retired VARCHAR) ### Question: What is the mean number of laps for the constructor Ferrari when the time/retired was fuel pressure? ### Answer: SELECT AVG(laps) FROM table_name_93 WHERE constructor = "ferrari" AND time_retired = "fuel pressure" |
What is the grid when the driver was Michael Schumacher? | CREATE TABLE table_name_20 (grid VARCHAR, driver VARCHAR) | SELECT grid FROM table_name_20 WHERE driver = "michael schumacher" | ### Context: CREATE TABLE table_name_20 (grid VARCHAR, driver VARCHAR) ### Question: What is the grid when the driver was Michael Schumacher? ### Answer: SELECT grid FROM table_name_20 WHERE driver = "michael schumacher" |
How many laps had a grid number of 7? | CREATE TABLE table_name_99 (laps INTEGER, grid VARCHAR) | SELECT SUM(laps) FROM table_name_99 WHERE grid = 7 | ### Context: CREATE TABLE table_name_99 (laps INTEGER, grid VARCHAR) ### Question: How many laps had a grid number of 7? ### Answer: SELECT SUM(laps) FROM table_name_99 WHERE grid = 7 |
Which lap number had a grid number of less than 17 when the driver was Giancarlo Fisichella? | CREATE TABLE table_name_1 (laps VARCHAR, grid VARCHAR, driver VARCHAR) | SELECT COUNT(laps) FROM table_name_1 WHERE grid < 17 AND driver = "giancarlo fisichella" | ### Context: CREATE TABLE table_name_1 (laps VARCHAR, grid VARCHAR, driver VARCHAR) ### Question: Which lap number had a grid number of less than 17 when the driver was Giancarlo Fisichella? ### Answer: SELECT COUNT(laps) FROM table_name_1 WHERE grid < 17 AND driver = "giancarlo fisichella" |
Name the winning driver for circuit of monza | CREATE TABLE table_name_36 (winning_driver VARCHAR, circuit VARCHAR) | SELECT winning_driver FROM table_name_36 WHERE circuit = "monza" | ### Context: CREATE TABLE table_name_36 (winning_driver VARCHAR, circuit VARCHAR) ### Question: Name the winning driver for circuit of monza ### Answer: SELECT winning_driver FROM table_name_36 WHERE circuit = "monza" |
Tell me the date for jody scheckter being the fastest lap at the french grand prix | CREATE TABLE table_name_14 (date VARCHAR, fastest_lap VARCHAR, race VARCHAR) | SELECT date FROM table_name_14 WHERE fastest_lap = "jody scheckter" AND race = "french grand prix" | ### Context: CREATE TABLE table_name_14 (date VARCHAR, fastest_lap VARCHAR, race VARCHAR) ### Question: Tell me the date for jody scheckter being the fastest lap at the french grand prix ### Answer: SELECT date FROM table_name_14 WHERE fastest_lap = "jody scheckter" AND race = "french grand prix" |
Name the date for circuit of interlagos | CREATE TABLE table_name_50 (date VARCHAR, circuit VARCHAR) | SELECT date FROM table_name_50 WHERE circuit = "interlagos" | ### Context: CREATE TABLE table_name_50 (date VARCHAR, circuit VARCHAR) ### Question: Name the date for circuit of interlagos ### Answer: SELECT date FROM table_name_50 WHERE circuit = "interlagos" |
What was the event for vinny magalhães? | CREATE TABLE table_name_74 (event VARCHAR, opponent VARCHAR) | SELECT event FROM table_name_74 WHERE opponent = "vinny magalhães" | ### Context: CREATE TABLE table_name_74 (event VARCHAR, opponent VARCHAR) ### Question: What was the event for vinny magalhães? ### Answer: SELECT event FROM table_name_74 WHERE opponent = "vinny magalhães" |
What was the date for renato ferreira? | CREATE TABLE table_name_9 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_9 WHERE opponent = "renato ferreira" | ### Context: CREATE TABLE table_name_9 (date VARCHAR, opponent VARCHAR) ### Question: What was the date for renato ferreira? ### Answer: SELECT date FROM table_name_9 WHERE opponent = "renato ferreira" |
What was the event with leonardo chocolate in 2009? | CREATE TABLE table_name_88 (event VARCHAR, date VARCHAR, opponent VARCHAR) | SELECT event FROM table_name_88 WHERE date = 2009 AND opponent = "leonardo chocolate" | ### Context: CREATE TABLE table_name_88 (event VARCHAR, date VARCHAR, opponent VARCHAR) ### Question: What was the event with leonardo chocolate in 2009? ### Answer: SELECT event FROM table_name_88 WHERE date = 2009 AND opponent = "leonardo chocolate" |
What was the result for the opponent being gerardi rinaldi in 2009? | CREATE TABLE table_name_14 (result VARCHAR, date VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_14 WHERE date = 2009 AND opponent = "gerardi rinaldi" | ### Context: CREATE TABLE table_name_14 (result VARCHAR, date VARCHAR, opponent VARCHAR) ### Question: What was the result for the opponent being gerardi rinaldi in 2009? ### Answer: SELECT result FROM table_name_14 WHERE date = 2009 AND opponent = "gerardi rinaldi" |
Tell me the eastern #1 for week of 5 | CREATE TABLE table_name_23 (eastern__number1 VARCHAR, week VARCHAR) | SELECT eastern__number1 FROM table_name_23 WHERE week = 5 | ### Context: CREATE TABLE table_name_23 (eastern__number1 VARCHAR, week VARCHAR) ### Question: Tell me the eastern #1 for week of 5 ### Answer: SELECT eastern__number1 FROM table_name_23 WHERE week = 5 |
Tell me the eastern #2 for western #2 of oakland | CREATE TABLE table_name_23 (eastern__number2 VARCHAR, western__number2 VARCHAR) | SELECT eastern__number2 FROM table_name_23 WHERE western__number2 = "oakland" | ### Context: CREATE TABLE table_name_23 (eastern__number2 VARCHAR, western__number2 VARCHAR) ### Question: Tell me the eastern #2 for western #2 of oakland ### Answer: SELECT eastern__number2 FROM table_name_23 WHERE western__number2 = "oakland" |
Tell me the wekk for eastern #2 of houston | CREATE TABLE table_name_37 (week VARCHAR, eastern__number2 VARCHAR) | SELECT week FROM table_name_37 WHERE eastern__number2 = "houston" | ### Context: CREATE TABLE table_name_37 (week VARCHAR, eastern__number2 VARCHAR) ### Question: Tell me the wekk for eastern #2 of houston ### Answer: SELECT week FROM table_name_37 WHERE eastern__number2 = "houston" |
Which home team played against the away team Carlton? | CREATE TABLE table_name_74 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_74 WHERE away_team = "carlton" | ### Context: CREATE TABLE table_name_74 (home_team VARCHAR, away_team VARCHAR) ### Question: Which home team played against the away team Carlton? ### Answer: SELECT home_team FROM table_name_74 WHERE away_team = "carlton" |
Where was the game played where the home team was Collingwood? | CREATE TABLE table_name_29 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_29 WHERE home_team = "collingwood" | ### Context: CREATE TABLE table_name_29 (venue VARCHAR, home_team VARCHAR) ### Question: Where was the game played where the home team was Collingwood? ### Answer: SELECT venue FROM table_name_29 WHERE home_team = "collingwood" |
What is the home score with a crowd larger than 25,603? | CREATE TABLE table_name_44 (home_team VARCHAR, crowd INTEGER) | SELECT home_team AS score FROM table_name_44 WHERE crowd > 25 OFFSET 603 | ### Context: CREATE TABLE table_name_44 (home_team VARCHAR, crowd INTEGER) ### Question: What is the home score with a crowd larger than 25,603? ### Answer: SELECT home_team AS score FROM table_name_44 WHERE crowd > 25 OFFSET 603 |
What is the date of the home team from South Melbourne? | CREATE TABLE table_name_41 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_41 WHERE home_team = "south melbourne" | ### Context: CREATE TABLE table_name_41 (date VARCHAR, home_team VARCHAR) ### Question: What is the date of the home team from South Melbourne? ### Answer: SELECT date FROM table_name_41 WHERE home_team = "south melbourne" |
What is the score of the away team with the home team Fitzroy? | CREATE TABLE table_name_88 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_88 WHERE home_team = "fitzroy" | ### Context: CREATE TABLE table_name_88 (away_team VARCHAR, home_team VARCHAR) ### Question: What is the score of the away team with the home team Fitzroy? ### Answer: SELECT away_team AS score FROM table_name_88 WHERE home_team = "fitzroy" |
What venue did the away team footscray play at? | CREATE TABLE table_name_63 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_63 WHERE away_team = "footscray" | ### Context: CREATE TABLE table_name_63 (venue VARCHAR, away_team VARCHAR) ### Question: What venue did the away team footscray play at? ### Answer: SELECT venue FROM table_name_63 WHERE away_team = "footscray" |
When melbourne was the away team, what was the lowest crowd turnout they had? | CREATE TABLE table_name_75 (crowd INTEGER, away_team VARCHAR) | SELECT MIN(crowd) FROM table_name_75 WHERE away_team = "melbourne" | ### Context: CREATE TABLE table_name_75 (crowd INTEGER, away_team VARCHAR) ### Question: When melbourne was the away team, what was the lowest crowd turnout they had? ### Answer: SELECT MIN(crowd) FROM table_name_75 WHERE away_team = "melbourne" |
Which away team plays at the venue glenferrie oval? | CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_63 WHERE venue = "glenferrie oval" | ### Context: CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR) ### Question: Which away team plays at the venue glenferrie oval? ### Answer: SELECT away_team FROM table_name_63 WHERE venue = "glenferrie oval" |
Tell me the lowest 2005 for 2010 less than 21 for 2009 being 19 | CREATE TABLE table_name_75 (Id VARCHAR) | SELECT MIN(2005) FROM table_name_75 WHERE 2009 = 19 AND 2010 < 21 | ### Context: CREATE TABLE table_name_75 (Id VARCHAR) ### Question: Tell me the lowest 2005 for 2010 less than 21 for 2009 being 19 ### Answer: SELECT MIN(2005) FROM table_name_75 WHERE 2009 = 19 AND 2010 < 21 |
Name the total number of 2010 for when 2009 is less than 14, 2008 is less than 15 and 2005 is 3 | CREATE TABLE table_name_85 (Id VARCHAR) | SELECT COUNT(2010) FROM table_name_85 WHERE 2009 < 14 AND 2008 < 15 AND 2005 = 3 | ### Context: CREATE TABLE table_name_85 (Id VARCHAR) ### Question: Name the total number of 2010 for when 2009 is less than 14, 2008 is less than 15 and 2005 is 3 ### Answer: SELECT COUNT(2010) FROM table_name_85 WHERE 2009 < 14 AND 2008 < 15 AND 2005 = 3 |
Name the average 2008 for beijing and 2005 more than 2 | CREATE TABLE table_name_21 (year VARCHAR) | SELECT AVG(2008) FROM table_name_21 WHERE year = "beijing" AND 2005 > 2 | ### Context: CREATE TABLE table_name_21 (year VARCHAR) ### Question: Name the average 2008 for beijing and 2005 more than 2 ### Answer: SELECT AVG(2008) FROM table_name_21 WHERE year = "beijing" AND 2005 > 2 |
Name the lowest 2008 for guizhou when 2005 is less than 31 | CREATE TABLE table_name_45 (year VARCHAR) | SELECT MIN(2008) FROM table_name_45 WHERE year = "guizhou" AND 2005 < 31 | ### Context: CREATE TABLE table_name_45 (year VARCHAR) ### Question: Name the lowest 2008 for guizhou when 2005 is less than 31 ### Answer: SELECT MIN(2008) FROM table_name_45 WHERE year = "guizhou" AND 2005 < 31 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.