question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What is Country, when Time is 1:29.43.60? | CREATE TABLE table_name_68 (country VARCHAR, time VARCHAR) | SELECT country FROM table_name_68 WHERE time = "1:29.43.60" | ### Context: CREATE TABLE table_name_68 (country VARCHAR, time VARCHAR) ### Question: What is Country, when Time is 1:29.43.60? ### Answer: SELECT country FROM table_name_68 WHERE time = "1:29.43.60" |
What is the lowest Place, when Points are greater than 2? | CREATE TABLE table_name_17 (place INTEGER, points INTEGER) | SELECT MIN(place) FROM table_name_17 WHERE points > 2 | ### Context: CREATE TABLE table_name_17 (place INTEGER, points INTEGER) ### Question: What is the lowest Place, when Points are greater than 2? ### Answer: SELECT MIN(place) FROM table_name_17 WHERE points > 2 |
What team was the opponent when the result was l 0-27? | CREATE TABLE table_name_21 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_21 WHERE result = "l 0-27" | ### Context: CREATE TABLE table_name_21 (opponent VARCHAR, result VARCHAR) ### Question: What team was the opponent when the result was l 0-27? ### Answer: SELECT opponent FROM table_name_21 WHERE result = "l 0-27" |
What team was the opponent on 09/20/1975? | CREATE TABLE table_name_62 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_62 WHERE date = "09/20/1975" | ### Context: CREATE TABLE table_name_62 (opponent VARCHAR, date VARCHAR) ### Question: What team was the opponent on 09/20/1975? ### Answer: SELECT opponent FROM table_name_62 WHERE date = "09/20/1975" |
What is the Location of the game on 11/08/1975*? | CREATE TABLE table_name_43 (location VARCHAR, date VARCHAR) | SELECT location FROM table_name_43 WHERE date = "11/08/1975*" | ### Context: CREATE TABLE table_name_43 (location VARCHAR, date VARCHAR) ### Question: What is the Location of the game on 11/08/1975*? ### Answer: SELECT location FROM table_name_43 WHERE date = "11/08/1975*" |
How many gold medals were awarded to the team with more than 2 bronze and exactly 29 silver medals? | CREATE TABLE table_name_19 (gold VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT gold FROM table_name_19 WHERE bronze > 2 AND silver = 29 | ### Context: CREATE TABLE table_name_19 (gold VARCHAR, bronze VARCHAR, silver VARCHAR) ### Question: How many gold medals were awarded to the team with more than 2 bronze and exactly 29 silver medals? ### Answer: SELECT gold FROM table_name_19 WHERE bronze > 2 AND silver = 29 |
What is the latest year that Cicely Tyson is the Golden Globe Award actor? | CREATE TABLE table_name_76 (year INTEGER, actor VARCHAR) | SELECT MAX(year) FROM table_name_76 WHERE actor = "cicely tyson" | ### Context: CREATE TABLE table_name_76 (year INTEGER, actor VARCHAR) ### Question: What is the latest year that Cicely Tyson is the Golden Globe Award actor? ### Answer: SELECT MAX(year) FROM table_name_76 WHERE actor = "cicely tyson" |
What Motion Picture after 2003 had Viola Davis nominated for Best Supporting Actress? | CREATE TABLE table_name_70 (motion_picture VARCHAR, award VARCHAR, actor VARCHAR, year VARCHAR, result VARCHAR) | SELECT motion_picture FROM table_name_70 WHERE year > 2003 AND result = "nominated" AND actor = "viola davis" AND award = "best supporting actress" | ### Context: CREATE TABLE table_name_70 (motion_picture VARCHAR, award VARCHAR, actor VARCHAR, year VARCHAR, result VARCHAR) ### Question: What Motion Picture after 2003 had Viola Davis nominated for Best Supporting Actress? ### Answer: SELECT motion_picture FROM table_name_70 WHERE year > 2003 AND result = "nominated" AND actor = "viola davis" AND award = "best supporting actress" |
What Award has a date of 2002? | CREATE TABLE table_name_5 (award VARCHAR, year VARCHAR) | SELECT award FROM table_name_5 WHERE year = 2002 | ### Context: CREATE TABLE table_name_5 (award VARCHAR, year VARCHAR) ### Question: What Award has a date of 2002? ### Answer: SELECT award FROM table_name_5 WHERE year = 2002 |
What Award was received bby the Motion Picture What's Love Got To Do With It? | CREATE TABLE table_name_97 (award VARCHAR, motion_picture VARCHAR) | SELECT award FROM table_name_97 WHERE motion_picture = "what's love got to do with it" | ### Context: CREATE TABLE table_name_97 (award VARCHAR, motion_picture VARCHAR) ### Question: What Award was received bby the Motion Picture What's Love Got To Do With It? ### Answer: SELECT award FROM table_name_97 WHERE motion_picture = "what's love got to do with it" |
What is the latest Year with Marianne Jean-Baptiste as the Golden Globe Actor? | CREATE TABLE table_name_50 (year INTEGER, actor VARCHAR) | SELECT MAX(year) FROM table_name_50 WHERE actor = "marianne jean-baptiste" | ### Context: CREATE TABLE table_name_50 (year INTEGER, actor VARCHAR) ### Question: What is the latest Year with Marianne Jean-Baptiste as the Golden Globe Actor? ### Answer: SELECT MAX(year) FROM table_name_50 WHERE actor = "marianne jean-baptiste" |
Which film was released in August 2004? | CREATE TABLE table_name_67 (title VARCHAR, date VARCHAR) | SELECT title FROM table_name_67 WHERE date = "august 2004" | ### Context: CREATE TABLE table_name_67 (title VARCHAR, date VARCHAR) ### Question: Which film was released in August 2004? ### Answer: SELECT title FROM table_name_67 WHERE date = "august 2004" |
What was the production cost for the film directed by 2004? | CREATE TABLE table_name_39 (production_cost VARCHAR, director VARCHAR) | SELECT production_cost FROM table_name_39 WHERE director = "2004" | ### Context: CREATE TABLE table_name_39 (production_cost VARCHAR, director VARCHAR) ### Question: What was the production cost for the film directed by 2004? ### Answer: SELECT production_cost FROM table_name_39 WHERE director = "2004" |
What film did Pen-Ek Ratanaruang direct? | CREATE TABLE table_name_62 (title VARCHAR, director VARCHAR) | SELECT title FROM table_name_62 WHERE director = "pen-ek ratanaruang" | ### Context: CREATE TABLE table_name_62 (title VARCHAR, director VARCHAR) ### Question: What film did Pen-Ek Ratanaruang direct? ### Answer: SELECT title FROM table_name_62 WHERE director = "pen-ek ratanaruang" |
When was the film directed by Pen-Ek Ratanaruang released? | CREATE TABLE table_name_13 (date VARCHAR, director VARCHAR) | SELECT date FROM table_name_13 WHERE director = "pen-ek ratanaruang" | ### Context: CREATE TABLE table_name_13 (date VARCHAR, director VARCHAR) ### Question: When was the film directed by Pen-Ek Ratanaruang released? ### Answer: SELECT date FROM table_name_13 WHERE director = "pen-ek ratanaruang" |
Who directed Tequila? | CREATE TABLE table_name_50 (director VARCHAR, title VARCHAR) | SELECT director FROM table_name_50 WHERE title = "tequila" | ### Context: CREATE TABLE table_name_50 (director VARCHAR, title VARCHAR) ### Question: Who directed Tequila? ### Answer: SELECT director FROM table_name_50 WHERE title = "tequila" |
Who left office in June 2011? | CREATE TABLE table_name_1 (name VARCHAR, left_office VARCHAR) | SELECT name FROM table_name_1 WHERE left_office = "june 2011" | ### Context: CREATE TABLE table_name_1 (name VARCHAR, left_office VARCHAR) ### Question: Who left office in June 2011? ### Answer: SELECT name FROM table_name_1 WHERE left_office = "june 2011" |
What is the Born-Died date for the Representative of Italy? | CREATE TABLE table_name_16 (born_died VARCHAR, country VARCHAR) | SELECT born_died FROM table_name_16 WHERE country = "italy" | ### Context: CREATE TABLE table_name_16 (born_died VARCHAR, country VARCHAR) ### Question: What is the Born-Died date for the Representative of Italy? ### Answer: SELECT born_died FROM table_name_16 WHERE country = "italy" |
What is the country of the Representative that left office as incumbent? | CREATE TABLE table_name_29 (country VARCHAR, left_office VARCHAR) | SELECT country FROM table_name_29 WHERE left_office = "incumbent" | ### Context: CREATE TABLE table_name_29 (country VARCHAR, left_office VARCHAR) ### Question: What is the country of the Representative that left office as incumbent? ### Answer: SELECT country FROM table_name_29 WHERE left_office = "incumbent" |
What is Package/Option, when Language is Italian, and when Television Service is Sky Radio? | CREATE TABLE table_name_51 (package_option VARCHAR, language VARCHAR, television_service VARCHAR) | SELECT package_option FROM table_name_51 WHERE language = "italian" AND television_service = "sky radio" | ### Context: CREATE TABLE table_name_51 (package_option VARCHAR, language VARCHAR, television_service VARCHAR) ### Question: What is Package/Option, when Language is Italian, and when Television Service is Sky Radio? ### Answer: SELECT package_option FROM table_name_51 WHERE language = "italian" AND television_service = "sky radio" |
What is HDTV, when Television Service is MTV Rocks? | CREATE TABLE table_name_21 (hdtv VARCHAR, television_service VARCHAR) | SELECT hdtv FROM table_name_21 WHERE television_service = "mtv rocks" | ### Context: CREATE TABLE table_name_21 (hdtv VARCHAR, television_service VARCHAR) ### Question: What is HDTV, when Television Service is MTV Rocks? ### Answer: SELECT hdtv FROM table_name_21 WHERE television_service = "mtv rocks" |
What is Television Service, when HDTV is No, and when Language is Italian? | CREATE TABLE table_name_11 (television_service VARCHAR, hdtv VARCHAR, language VARCHAR) | SELECT television_service FROM table_name_11 WHERE hdtv = "no" AND language = "italian" | ### Context: CREATE TABLE table_name_11 (television_service VARCHAR, hdtv VARCHAR, language VARCHAR) ### Question: What is Television Service, when HDTV is No, and when Language is Italian? ### Answer: SELECT television_service FROM table_name_11 WHERE hdtv = "no" AND language = "italian" |
What is Television Service, when Package/Option is Sky Famiglia, and when Language is Italian? | CREATE TABLE table_name_54 (television_service VARCHAR, package_option VARCHAR, language VARCHAR) | SELECT television_service FROM table_name_54 WHERE package_option = "sky famiglia" AND language = "italian" | ### Context: CREATE TABLE table_name_54 (television_service VARCHAR, package_option VARCHAR, language VARCHAR) ### Question: What is Television Service, when Package/Option is Sky Famiglia, and when Language is Italian? ### Answer: SELECT television_service FROM table_name_54 WHERE package_option = "sky famiglia" AND language = "italian" |
What is HDTV, when Language is English, and when Television Service is MTV Dance? | CREATE TABLE table_name_82 (hdtv VARCHAR, language VARCHAR, television_service VARCHAR) | SELECT hdtv FROM table_name_82 WHERE language = "english" AND television_service = "mtv dance" | ### Context: CREATE TABLE table_name_82 (hdtv VARCHAR, language VARCHAR, television_service VARCHAR) ### Question: What is HDTV, when Language is English, and when Television Service is MTV Dance? ### Answer: SELECT hdtv FROM table_name_82 WHERE language = "english" AND television_service = "mtv dance" |
How many average 100s were there for Tim Bresnan? | CREATE TABLE table_name_51 (player VARCHAR) | SELECT AVG(100 AS s) FROM table_name_51 WHERE player = "tim bresnan" | ### Context: CREATE TABLE table_name_51 (player VARCHAR) ### Question: How many average 100s were there for Tim Bresnan? ### Answer: SELECT AVG(100 AS s) FROM table_name_51 WHERE player = "tim bresnan" |
How many Platforms have a Frequency of less than 2? | CREATE TABLE table_name_60 (platform VARCHAR, frequency__per_hour_ INTEGER) | SELECT COUNT(platform) FROM table_name_60 WHERE frequency__per_hour_ < 2 | ### Context: CREATE TABLE table_name_60 (platform VARCHAR, frequency__per_hour_ INTEGER) ### Question: How many Platforms have a Frequency of less than 2? ### Answer: SELECT COUNT(platform) FROM table_name_60 WHERE frequency__per_hour_ < 2 |
What is the 1999-2000 team, when the Height (cm) is less than 187, and when the Birthplace is Cloquet, Minnesota? | CREATE TABLE table_name_93 (height__cm_ VARCHAR, birthplace VARCHAR) | SELECT 1999 AS _2000_team FROM table_name_93 WHERE height__cm_ < 187 AND birthplace = "cloquet, minnesota" | ### Context: CREATE TABLE table_name_93 (height__cm_ VARCHAR, birthplace VARCHAR) ### Question: What is the 1999-2000 team, when the Height (cm) is less than 187, and when the Birthplace is Cloquet, Minnesota? ### Answer: SELECT 1999 AS _2000_team FROM table_name_93 WHERE height__cm_ < 187 AND birthplace = "cloquet, minnesota" |
What is the sum of Height (cm), when the Weight (kg) is 90? | CREATE TABLE table_name_13 (height__cm_ INTEGER, weight__kg_ VARCHAR) | SELECT SUM(height__cm_) FROM table_name_13 WHERE weight__kg_ = 90 | ### Context: CREATE TABLE table_name_13 (height__cm_ INTEGER, weight__kg_ VARCHAR) ### Question: What is the sum of Height (cm), when the Weight (kg) is 90? ### Answer: SELECT SUM(height__cm_) FROM table_name_13 WHERE weight__kg_ = 90 |
Which Losses have a Pct of .451 and Finished 6th? | CREATE TABLE table_name_92 (losses VARCHAR, pct VARCHAR, finish VARCHAR) | SELECT losses FROM table_name_92 WHERE pct = ".451" AND finish = "6th" | ### Context: CREATE TABLE table_name_92 (losses VARCHAR, pct VARCHAR, finish VARCHAR) ### Question: Which Losses have a Pct of .451 and Finished 6th? ### Answer: SELECT losses FROM table_name_92 WHERE pct = ".451" AND finish = "6th" |
Which season has Losses of 30? | CREATE TABLE table_name_65 (season VARCHAR, losses VARCHAR) | SELECT season FROM table_name_65 WHERE losses = "30" | ### Context: CREATE TABLE table_name_65 (season VARCHAR, losses VARCHAR) ### Question: Which season has Losses of 30? ### Answer: SELECT season FROM table_name_65 WHERE losses = "30" |
In which Season was the Division Washington Bullets? | CREATE TABLE table_name_4 (season VARCHAR, division VARCHAR) | SELECT season FROM table_name_4 WHERE division = "washington bullets" | ### Context: CREATE TABLE table_name_4 (season VARCHAR, division VARCHAR) ### Question: In which Season was the Division Washington Bullets? ### Answer: SELECT season FROM table_name_4 WHERE division = "washington bullets" |
In which season were there Wins of 29 and a Finished place of 3rd? | CREATE TABLE table_name_10 (season VARCHAR, wins VARCHAR, finish VARCHAR) | SELECT season FROM table_name_10 WHERE wins = "29" AND finish = "3rd" | ### Context: CREATE TABLE table_name_10 (season VARCHAR, wins VARCHAR, finish VARCHAR) ### Question: In which season were there Wins of 29 and a Finished place of 3rd? ### Answer: SELECT season FROM table_name_10 WHERE wins = "29" AND finish = "3rd" |
What is the EASA (EU) when the notes show aoc 135? | CREATE TABLE table_name_76 (easa__eu_ VARCHAR, notes VARCHAR) | SELECT easa__eu_ FROM table_name_76 WHERE notes = "aoc 135" | ### Context: CREATE TABLE table_name_76 (easa__eu_ VARCHAR, notes VARCHAR) ### Question: What is the EASA (EU) when the notes show aoc 135? ### Answer: SELECT easa__eu_ FROM table_name_76 WHERE notes = "aoc 135" |
What is the Notes when the fleet size is 3? | CREATE TABLE table_name_39 (notes VARCHAR, fleet_size VARCHAR) | SELECT notes FROM table_name_39 WHERE fleet_size = 3 | ### Context: CREATE TABLE table_name_39 (notes VARCHAR, fleet_size VARCHAR) ### Question: What is the Notes when the fleet size is 3? ### Answer: SELECT notes FROM table_name_39 WHERE fleet_size = 3 |
What is the Fleet Size when the EASA (EU) is no? | CREATE TABLE table_name_27 (fleet_size VARCHAR, easa__eu_ VARCHAR) | SELECT fleet_size FROM table_name_27 WHERE easa__eu_ = "no" | ### Context: CREATE TABLE table_name_27 (fleet_size VARCHAR, easa__eu_ VARCHAR) ### Question: What is the Fleet Size when the EASA (EU) is no? ### Answer: SELECT fleet_size FROM table_name_27 WHERE easa__eu_ = "no" |
hat is the Airline when the EASA (EU) is yes? | CREATE TABLE table_name_55 (airline VARCHAR, easa__eu_ VARCHAR) | SELECT airline FROM table_name_55 WHERE easa__eu_ = "yes" | ### Context: CREATE TABLE table_name_55 (airline VARCHAR, easa__eu_ VARCHAR) ### Question: hat is the Airline when the EASA (EU) is yes? ### Answer: SELECT airline FROM table_name_55 WHERE easa__eu_ = "yes" |
What is the Airline when the notes show aoc 135? | CREATE TABLE table_name_51 (airline VARCHAR, notes VARCHAR) | SELECT airline FROM table_name_51 WHERE notes = "aoc 135" | ### Context: CREATE TABLE table_name_51 (airline VARCHAR, notes VARCHAR) ### Question: What is the Airline when the notes show aoc 135? ### Answer: SELECT airline FROM table_name_51 WHERE notes = "aoc 135" |
What is the highest Year with a Competition that is new york city marathon? | CREATE TABLE table_name_10 (year INTEGER, competition VARCHAR) | SELECT MAX(year) FROM table_name_10 WHERE competition = "new york city marathon" | ### Context: CREATE TABLE table_name_10 (year INTEGER, competition VARCHAR) ### Question: What is the highest Year with a Competition that is new york city marathon? ### Answer: SELECT MAX(year) FROM table_name_10 WHERE competition = "new york city marathon" |
What is the Notes with a Venue that is venice, italy? | CREATE TABLE table_name_23 (notes VARCHAR, venue VARCHAR) | SELECT notes FROM table_name_23 WHERE venue = "venice, italy" | ### Context: CREATE TABLE table_name_23 (notes VARCHAR, venue VARCHAR) ### Question: What is the Notes with a Venue that is venice, italy? ### Answer: SELECT notes FROM table_name_23 WHERE venue = "venice, italy" |
What is 1994, when 2002 is ATP Masters Series? | CREATE TABLE table_name_76 (Id VARCHAR) | SELECT 1994 FROM table_name_76 WHERE 2002 = "atp masters series" | ### Context: CREATE TABLE table_name_76 (Id VARCHAR) ### Question: What is 1994, when 2002 is ATP Masters Series? ### Answer: SELECT 1994 FROM table_name_76 WHERE 2002 = "atp masters series" |
What is 2001, when 1987 is N/A, and when Career SR is N/A? | CREATE TABLE table_name_50 (career_sr VARCHAR) | SELECT 2001 FROM table_name_50 WHERE 1987 = "n/a" AND career_sr = "n/a" | ### Context: CREATE TABLE table_name_50 (career_sr VARCHAR) ### Question: What is 2001, when 1987 is N/A, and when Career SR is N/A? ### Answer: SELECT 2001 FROM table_name_50 WHERE 1987 = "n/a" AND career_sr = "n/a" |
What is 1989, when 1999 is F, and when 1994 is 2R? | CREATE TABLE table_name_39 (Id VARCHAR) | SELECT 1989 FROM table_name_39 WHERE 1999 = "f" AND 1994 = "2r" | ### Context: CREATE TABLE table_name_39 (Id VARCHAR) ### Question: What is 1989, when 1999 is F, and when 1994 is 2R? ### Answer: SELECT 1989 FROM table_name_39 WHERE 1999 = "f" AND 1994 = "2r" |
What is 2001, when 1990 is A, when 1987 is NME, and when 1997 is 1R? | CREATE TABLE table_name_33 (Id VARCHAR) | SELECT 2001 FROM table_name_33 WHERE 1990 = "a" AND 1987 = "nme" AND 1997 = "1r" | ### Context: CREATE TABLE table_name_33 (Id VARCHAR) ### Question: What is 2001, when 1990 is A, when 1987 is NME, and when 1997 is 1R? ### Answer: SELECT 2001 FROM table_name_33 WHERE 1990 = "a" AND 1987 = "nme" AND 1997 = "1r" |
What is 1997, when 2003 is 0 / 4? | CREATE TABLE table_name_22 (Id VARCHAR) | SELECT 1997 FROM table_name_22 WHERE 2003 = "0 / 4" | ### Context: CREATE TABLE table_name_22 (Id VARCHAR) ### Question: What is 1997, when 2003 is 0 / 4? ### Answer: SELECT 1997 FROM table_name_22 WHERE 2003 = "0 / 4" |
What is the average total 0 are nominated by the Taoiseach and the agricultural panel is greater than 5? | CREATE TABLE table_name_38 (total INTEGER, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR) | SELECT AVG(total) FROM table_name_38 WHERE nominated_by_the_taoiseach = 0 AND agricultural_panel > 5 | ### Context: CREATE TABLE table_name_38 (total INTEGER, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR) ### Question: What is the average total 0 are nominated by the Taoiseach and the agricultural panel is greater than 5? ### Answer: SELECT AVG(total) FROM table_name_38 WHERE nominated_by_the_taoiseach = 0 AND agricultural_panel > 5 |
What is the total of the cultural and educational panel when the industrial and commercial panel is 0 and the agricultural panel is greater than 0? | CREATE TABLE table_name_90 (cultural_and_educational_panel INTEGER, industrial_and_commercial_panel VARCHAR, agricultural_panel VARCHAR) | SELECT SUM(cultural_and_educational_panel) FROM table_name_90 WHERE industrial_and_commercial_panel = 0 AND agricultural_panel > 0 | ### Context: CREATE TABLE table_name_90 (cultural_and_educational_panel INTEGER, industrial_and_commercial_panel VARCHAR, agricultural_panel VARCHAR) ### Question: What is the total of the cultural and educational panel when the industrial and commercial panel is 0 and the agricultural panel is greater than 0? ### Answer: SELECT SUM(cultural_and_educational_panel) FROM table_name_90 WHERE industrial_and_commercial_panel = 0 AND agricultural_panel > 0 |
What is the total for the University of Dublin when 2 are nominated by Taoiseach and the industrial and commercial panel is greater than 0? | CREATE TABLE table_name_71 (university_of_dublin INTEGER, nominated_by_the_taoiseach VARCHAR, industrial_and_commercial_panel VARCHAR) | SELECT SUM(university_of_dublin) FROM table_name_71 WHERE nominated_by_the_taoiseach = 2 AND industrial_and_commercial_panel > 0 | ### Context: CREATE TABLE table_name_71 (university_of_dublin INTEGER, nominated_by_the_taoiseach VARCHAR, industrial_and_commercial_panel VARCHAR) ### Question: What is the total for the University of Dublin when 2 are nominated by Taoiseach and the industrial and commercial panel is greater than 0? ### Answer: SELECT SUM(university_of_dublin) FROM table_name_71 WHERE nominated_by_the_taoiseach = 2 AND industrial_and_commercial_panel > 0 |
What is the highest labour panel when the university of dublin is less than 2 and the agricultural panel is greater than 5? | CREATE TABLE table_name_46 (labour_panel INTEGER, university_of_dublin VARCHAR, agricultural_panel VARCHAR) | SELECT MAX(labour_panel) FROM table_name_46 WHERE university_of_dublin < 2 AND agricultural_panel > 5 | ### Context: CREATE TABLE table_name_46 (labour_panel INTEGER, university_of_dublin VARCHAR, agricultural_panel VARCHAR) ### Question: What is the highest labour panel when the university of dublin is less than 2 and the agricultural panel is greater than 5? ### Answer: SELECT MAX(labour_panel) FROM table_name_46 WHERE university_of_dublin < 2 AND agricultural_panel > 5 |
What is the average for the university of dublin when the industrial and commercial panel is greater than 4 and the total of the national university of ireland is larger than 3? | CREATE TABLE table_name_75 (university_of_dublin INTEGER, industrial_and_commercial_panel VARCHAR, national_university_of_ireland VARCHAR) | SELECT AVG(university_of_dublin) FROM table_name_75 WHERE industrial_and_commercial_panel > 4 AND national_university_of_ireland > 3 | ### Context: CREATE TABLE table_name_75 (university_of_dublin INTEGER, industrial_and_commercial_panel VARCHAR, national_university_of_ireland VARCHAR) ### Question: What is the average for the university of dublin when the industrial and commercial panel is greater than 4 and the total of the national university of ireland is larger than 3? ### Answer: SELECT AVG(university_of_dublin) FROM table_name_75 WHERE industrial_and_commercial_panel > 4 AND national_university_of_ireland > 3 |
When has a Site of tainan city and a Score of 8–6? | CREATE TABLE table_name_21 (year VARCHAR, site VARCHAR, score VARCHAR) | SELECT year FROM table_name_21 WHERE site = "tainan city" AND score = "8–6" | ### Context: CREATE TABLE table_name_21 (year VARCHAR, site VARCHAR, score VARCHAR) ### Question: When has a Site of tainan city and a Score of 8–6? ### Answer: SELECT year FROM table_name_21 WHERE site = "tainan city" AND score = "8–6" |
Which Score that has a Winning team of wei chuan dragons? | CREATE TABLE table_name_35 (score VARCHAR, winning_team VARCHAR) | SELECT score FROM table_name_35 WHERE winning_team = "wei chuan dragons" | ### Context: CREATE TABLE table_name_35 (score VARCHAR, winning_team VARCHAR) ### Question: Which Score that has a Winning team of wei chuan dragons? ### Answer: SELECT score FROM table_name_35 WHERE winning_team = "wei chuan dragons" |
What is the number of 2011 passengers in millions that have traveled a distance of 1271km? | CREATE TABLE table_name_37 (distance VARCHAR) | SELECT 2011 AS _passengers__in_millions_ FROM table_name_37 WHERE distance = "1271km" | ### Context: CREATE TABLE table_name_37 (distance VARCHAR) ### Question: What is the number of 2011 passengers in millions that have traveled a distance of 1271km? ### Answer: SELECT 2011 AS _passengers__in_millions_ FROM table_name_37 WHERE distance = "1271km" |
What is the number of 2012 passengers in millions that have traveled a distance of 1075km? | CREATE TABLE table_name_56 (distance VARCHAR) | SELECT COUNT(2012 AS _passengers__in_millions_) FROM table_name_56 WHERE distance = "1075km" | ### Context: CREATE TABLE table_name_56 (distance VARCHAR) ### Question: What is the number of 2012 passengers in millions that have traveled a distance of 1075km? ### Answer: SELECT COUNT(2012 AS _passengers__in_millions_) FROM table_name_56 WHERE distance = "1075km" |
What is SECOND, when SIXTH is Victoria? | CREATE TABLE table_name_18 (second VARCHAR, sixth VARCHAR) | SELECT second FROM table_name_18 WHERE sixth = "victoria" | ### Context: CREATE TABLE table_name_18 (second VARCHAR, sixth VARCHAR) ### Question: What is SECOND, when SIXTH is Victoria? ### Answer: SELECT second FROM table_name_18 WHERE sixth = "victoria" |
What is SECOND, when FIRST is Western Australia? | CREATE TABLE table_name_64 (second VARCHAR, first VARCHAR) | SELECT second FROM table_name_64 WHERE first = "western australia" | ### Context: CREATE TABLE table_name_64 (second VARCHAR, first VARCHAR) ### Question: What is SECOND, when FIRST is Western Australia? ### Answer: SELECT second FROM table_name_64 WHERE first = "western australia" |
How many losses does corinthians have when they scored over 22 points? | CREATE TABLE table_name_21 (lost VARCHAR, team VARCHAR, points VARCHAR) | SELECT COUNT(lost) FROM table_name_21 WHERE team = "corinthians" AND points > 22 | ### Context: CREATE TABLE table_name_21 (lost VARCHAR, team VARCHAR, points VARCHAR) ### Question: How many losses does corinthians have when they scored over 22 points? ### Answer: SELECT COUNT(lost) FROM table_name_21 WHERE team = "corinthians" AND points > 22 |
What was the termination type for the headphones with comfort pads and selling for $150? | CREATE TABLE table_name_2 (termination VARCHAR, earpads VARCHAR, us_msrp VARCHAR) | SELECT termination FROM table_name_2 WHERE earpads = "comfort pads" AND us_msrp = "$150" | ### Context: CREATE TABLE table_name_2 (termination VARCHAR, earpads VARCHAR, us_msrp VARCHAR) ### Question: What was the termination type for the headphones with comfort pads and selling for $150? ### Answer: SELECT termination FROM table_name_2 WHERE earpads = "comfort pads" AND us_msrp = "$150" |
What are the earpads for the headphones that are Reference class and have MSRP of $695? | CREATE TABLE table_name_88 (earpads VARCHAR, headphone_class VARCHAR, us_msrp VARCHAR) | SELECT earpads FROM table_name_88 WHERE headphone_class = "reference" AND us_msrp = "$695" | ### Context: CREATE TABLE table_name_88 (earpads VARCHAR, headphone_class VARCHAR, us_msrp VARCHAR) ### Question: What are the earpads for the headphones that are Reference class and have MSRP of $695? ### Answer: SELECT earpads FROM table_name_88 WHERE headphone_class = "reference" AND us_msrp = "$695" |
What earpads do the headphones with driver-matched dB over 0.05 and MSRP of $79 have? | CREATE TABLE table_name_49 (earpads VARCHAR, driver_matched_db VARCHAR, us_msrp VARCHAR) | SELECT earpads FROM table_name_49 WHERE driver_matched_db > 0.05 AND us_msrp = "$79" | ### Context: CREATE TABLE table_name_49 (earpads VARCHAR, driver_matched_db VARCHAR, us_msrp VARCHAR) ### Question: What earpads do the headphones with driver-matched dB over 0.05 and MSRP of $79 have? ### Answer: SELECT earpads FROM table_name_49 WHERE driver_matched_db > 0.05 AND us_msrp = "$79" |
What is the name of the race from round 1? | CREATE TABLE table_name_90 (race_name VARCHAR, round VARCHAR) | SELECT race_name FROM table_name_90 WHERE round = 1 | ### Context: CREATE TABLE table_name_90 (race_name VARCHAR, round VARCHAR) ### Question: What is the name of the race from round 1? ### Answer: SELECT race_name FROM table_name_90 WHERE round = 1 |
Which race was in Sydney, New South Wales? | CREATE TABLE table_name_37 (race_name VARCHAR, city_state VARCHAR) | SELECT race_name FROM table_name_37 WHERE city_state = "sydney, new south wales" | ### Context: CREATE TABLE table_name_37 (race_name VARCHAR, city_state VARCHAR) ### Question: Which race was in Sydney, New South Wales? ### Answer: SELECT race_name FROM table_name_37 WHERE city_state = "sydney, new south wales" |
Which circuit had a round larger than 5? | CREATE TABLE table_name_30 (circuit VARCHAR, round INTEGER) | SELECT circuit FROM table_name_30 WHERE round > 5 | ### Context: CREATE TABLE table_name_30 (circuit VARCHAR, round INTEGER) ### Question: Which circuit had a round larger than 5? ### Answer: SELECT circuit FROM table_name_30 WHERE round > 5 |
What is the title of the story published on October 19, 2011? | CREATE TABLE table_name_42 (story VARCHAR, date VARCHAR) | SELECT story FROM table_name_42 WHERE date = "october 19, 2011" | ### Context: CREATE TABLE table_name_42 (story VARCHAR, date VARCHAR) ### Question: What is the title of the story published on October 19, 2011? ### Answer: SELECT story FROM table_name_42 WHERE date = "october 19, 2011" |
What Issue number was released on August 17, 2011? | CREATE TABLE table_name_22 (issue VARCHAR, date VARCHAR) | SELECT issue FROM table_name_22 WHERE date = "august 17, 2011" | ### Context: CREATE TABLE table_name_22 (issue VARCHAR, date VARCHAR) ### Question: What Issue number was released on August 17, 2011? ### Answer: SELECT issue FROM table_name_22 WHERE date = "august 17, 2011" |
What story title was included in Issue #8? | CREATE TABLE table_name_47 (story VARCHAR, issue VARCHAR) | SELECT story FROM table_name_47 WHERE issue = "#8" | ### Context: CREATE TABLE table_name_47 (story VARCHAR, issue VARCHAR) ### Question: What story title was included in Issue #8? ### Answer: SELECT story FROM table_name_47 WHERE issue = "#8" |
Which young classification has general classification of Christian Vande Velde for Team Columbia and Mark Cavendish? | CREATE TABLE table_name_26 (young_classification VARCHAR, sprint_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR) | SELECT young_classification FROM table_name_26 WHERE general_classification = "christian vande velde" AND team_classification = "team columbia" AND sprint_classification = "mark cavendish" | ### Context: CREATE TABLE table_name_26 (young_classification VARCHAR, sprint_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR) ### Question: Which young classification has general classification of Christian Vande Velde for Team Columbia and Mark Cavendish? ### Answer: SELECT young_classification FROM table_name_26 WHERE general_classification = "christian vande velde" AND team_classification = "team columbia" AND sprint_classification = "mark cavendish" |
What mountains classification corresponds to Mark Cavendish and the Garmin-Chipotle-H30? | CREATE TABLE table_name_80 (mountains_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR) | SELECT mountains_classification FROM table_name_80 WHERE general_classification = "mark cavendish" AND team_classification = "garmin-chipotle-h30" | ### Context: CREATE TABLE table_name_80 (mountains_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR) ### Question: What mountains classification corresponds to Mark Cavendish and the Garmin-Chipotle-H30? ### Answer: SELECT mountains_classification FROM table_name_80 WHERE general_classification = "mark cavendish" AND team_classification = "garmin-chipotle-h30" |
Who was the winner for a Sprint Classification and Young Classification to Mark Cavendish and Garmin-Chipotle-H30 for team? | CREATE TABLE table_name_42 (stage__winner_ VARCHAR, young_classification VARCHAR, sprint_classification VARCHAR, team_classification VARCHAR) | SELECT stage__winner_ FROM table_name_42 WHERE sprint_classification = "mark cavendish" AND team_classification = "garmin-chipotle-h30" AND young_classification = "mark cavendish" | ### Context: CREATE TABLE table_name_42 (stage__winner_ VARCHAR, young_classification VARCHAR, sprint_classification VARCHAR, team_classification VARCHAR) ### Question: Who was the winner for a Sprint Classification and Young Classification to Mark Cavendish and Garmin-Chipotle-H30 for team? ### Answer: SELECT stage__winner_ FROM table_name_42 WHERE sprint_classification = "mark cavendish" AND team_classification = "garmin-chipotle-h30" AND young_classification = "mark cavendish" |
Which outcome has a partner named Mark Dickson, with the opponents of Hans Gildemeister Belus Prajoux? | CREATE TABLE table_name_66 (outcome VARCHAR, partner VARCHAR, opponents_in_the_final VARCHAR) | SELECT outcome FROM table_name_66 WHERE partner = "mark dickson" AND opponents_in_the_final = "hans gildemeister belus prajoux" | ### Context: CREATE TABLE table_name_66 (outcome VARCHAR, partner VARCHAR, opponents_in_the_final VARCHAR) ### Question: Which outcome has a partner named Mark Dickson, with the opponents of Hans Gildemeister Belus Prajoux? ### Answer: SELECT outcome FROM table_name_66 WHERE partner = "mark dickson" AND opponents_in_the_final = "hans gildemeister belus prajoux" |
What is the Format with a Catalog that is vcrd 103? | CREATE TABLE table_name_78 (format VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_78 WHERE catalog = "vcrd 103" | ### Context: CREATE TABLE table_name_78 (format VARCHAR, catalog VARCHAR) ### Question: What is the Format with a Catalog that is vcrd 103? ### Answer: SELECT format FROM table_name_78 WHERE catalog = "vcrd 103" |
What is the Region with a Catalog that is vlmx 1087-3? | CREATE TABLE table_name_27 (region VARCHAR, catalog VARCHAR) | SELECT region FROM table_name_27 WHERE catalog = "vlmx 1087-3" | ### Context: CREATE TABLE table_name_27 (region VARCHAR, catalog VARCHAR) ### Question: What is the Region with a Catalog that is vlmx 1087-3? ### Answer: SELECT region FROM table_name_27 WHERE catalog = "vlmx 1087-3" |
What is the Format with a Label of electropolis and a Date that is 2002? | CREATE TABLE table_name_90 (format VARCHAR, label VARCHAR, date VARCHAR) | SELECT format FROM table_name_90 WHERE label = "electropolis" AND date = "2002" | ### Context: CREATE TABLE table_name_90 (format VARCHAR, label VARCHAR, date VARCHAR) ### Question: What is the Format with a Label of electropolis and a Date that is 2002? ### Answer: SELECT format FROM table_name_90 WHERE label = "electropolis" AND date = "2002" |
How many in the cultural and educational panel have a university of Dublin of 3 & A labor panel larger than 11? | CREATE TABLE table_name_41 (cultural_and_educational_panel VARCHAR, university_of_dublin VARCHAR, labour_panel VARCHAR) | SELECT COUNT(cultural_and_educational_panel) FROM table_name_41 WHERE university_of_dublin = 3 AND labour_panel > 11 | ### Context: CREATE TABLE table_name_41 (cultural_and_educational_panel VARCHAR, university_of_dublin VARCHAR, labour_panel VARCHAR) ### Question: How many in the cultural and educational panel have a university of Dublin of 3 & A labor panel larger than 11? ### Answer: SELECT COUNT(cultural_and_educational_panel) FROM table_name_41 WHERE university_of_dublin = 3 AND labour_panel > 11 |
What is Margin, when Match Date is Oct 17, 2007? | CREATE TABLE table_name_86 (margin VARCHAR, match_date VARCHAR) | SELECT margin FROM table_name_86 WHERE match_date = "oct 17, 2007" | ### Context: CREATE TABLE table_name_86 (margin VARCHAR, match_date VARCHAR) ### Question: What is Margin, when Match Date is Oct 17, 2007? ### Answer: SELECT margin FROM table_name_86 WHERE match_date = "oct 17, 2007" |
What is Team (B), when S No is greater than 17? | CREATE TABLE table_name_10 (team__b_ VARCHAR, s_no INTEGER) | SELECT team__b_ FROM table_name_10 WHERE s_no > 17 | ### Context: CREATE TABLE table_name_10 (team__b_ VARCHAR, s_no INTEGER) ### Question: What is Team (B), when S No is greater than 17? ### Answer: SELECT team__b_ FROM table_name_10 WHERE s_no > 17 |
What is the total number of S No(s), when the Margin is 16 runs? | CREATE TABLE table_name_88 (s_no VARCHAR, margin VARCHAR) | SELECT COUNT(s_no) FROM table_name_88 WHERE margin = "16 runs" | ### Context: CREATE TABLE table_name_88 (s_no VARCHAR, margin VARCHAR) ### Question: What is the total number of S No(s), when the Margin is 16 runs? ### Answer: SELECT COUNT(s_no) FROM table_name_88 WHERE margin = "16 runs" |
What is the highest S No, when the Match Date is Nov 1, 2003? | CREATE TABLE table_name_8 (s_no INTEGER, match_date VARCHAR) | SELECT MAX(s_no) FROM table_name_8 WHERE match_date = "nov 1, 2003" | ### Context: CREATE TABLE table_name_8 (s_no INTEGER, match_date VARCHAR) ### Question: What is the highest S No, when the Match Date is Nov 1, 2003? ### Answer: SELECT MAX(s_no) FROM table_name_8 WHERE match_date = "nov 1, 2003" |
What is Team (B), when S No is less than 18, when Margin is 8 Wickets, and when Match Date is Oct 30, 1989? | CREATE TABLE table_name_31 (team__b_ VARCHAR, match_date VARCHAR, s_no VARCHAR, margin VARCHAR) | SELECT team__b_ FROM table_name_31 WHERE s_no < 18 AND margin = "8 wickets" AND match_date = "oct 30, 1989" | ### Context: CREATE TABLE table_name_31 (team__b_ VARCHAR, match_date VARCHAR, s_no VARCHAR, margin VARCHAR) ### Question: What is Team (B), when S No is less than 18, when Margin is 8 Wickets, and when Match Date is Oct 30, 1989? ### Answer: SELECT team__b_ FROM table_name_31 WHERE s_no < 18 AND margin = "8 wickets" AND match_date = "oct 30, 1989" |
When was the last time, since December 14, 1986, that the attendance was lower than 47,096? | CREATE TABLE table_name_51 (week INTEGER, date VARCHAR, attendance VARCHAR) | SELECT MAX(week) FROM table_name_51 WHERE date = "december 14, 1986" AND attendance < 47 OFFSET 096 | ### Context: CREATE TABLE table_name_51 (week INTEGER, date VARCHAR, attendance VARCHAR) ### Question: When was the last time, since December 14, 1986, that the attendance was lower than 47,096? ### Answer: SELECT MAX(week) FROM table_name_51 WHERE date = "december 14, 1986" AND attendance < 47 OFFSET 096 |
What is the Surface of indoor/carpet Outcome on 13 October 1996 | CREATE TABLE table_name_33 (outcome VARCHAR, surface VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_33 WHERE surface = "indoor/carpet" AND date = "13 october 1996" | ### Context: CREATE TABLE table_name_33 (outcome VARCHAR, surface VARCHAR, date VARCHAR) ### Question: What is the Surface of indoor/carpet Outcome on 13 October 1996 ### Answer: SELECT outcome FROM table_name_33 WHERE surface = "indoor/carpet" AND date = "13 october 1996" |
What the Outcome for the Tournament of Johannesburg, South Africa | CREATE TABLE table_name_5 (outcome VARCHAR, tournament VARCHAR) | SELECT outcome FROM table_name_5 WHERE tournament = "johannesburg, south africa" | ### Context: CREATE TABLE table_name_5 (outcome VARCHAR, tournament VARCHAR) ### Question: What the Outcome for the Tournament of Johannesburg, South Africa ### Answer: SELECT outcome FROM table_name_5 WHERE tournament = "johannesburg, south africa" |
What is the launch site of the delta iv rocket? | CREATE TABLE table_name_26 (launch_site VARCHAR, rocket VARCHAR) | SELECT launch_site FROM table_name_26 WHERE rocket = "delta iv" | ### Context: CREATE TABLE table_name_26 (launch_site VARCHAR, rocket VARCHAR) ### Question: What is the launch site of the delta iv rocket? ### Answer: SELECT launch_site FROM table_name_26 WHERE rocket = "delta iv" |
What is the type of the gps iif-10 satellite with an unknown date? | CREATE TABLE table_name_13 (type VARCHAR, date VARCHAR, satellite VARCHAR) | SELECT type FROM table_name_13 WHERE date = "unknown" AND satellite = "gps iif-10" | ### Context: CREATE TABLE table_name_13 (type VARCHAR, date VARCHAR, satellite VARCHAR) ### Question: What is the type of the gps iif-10 satellite with an unknown date? ### Answer: SELECT type FROM table_name_13 WHERE date = "unknown" AND satellite = "gps iif-10" |
What is the type of the gps iif-10 satellite? | CREATE TABLE table_name_38 (type VARCHAR, satellite VARCHAR) | SELECT type FROM table_name_38 WHERE satellite = "gps iif-10" | ### Context: CREATE TABLE table_name_38 (type VARCHAR, satellite VARCHAR) ### Question: What is the type of the gps iif-10 satellite? ### Answer: SELECT type FROM table_name_38 WHERE satellite = "gps iif-10" |
What is the launch site of the delta iv rocket with an unknown date and a gps iif-10 satellite? | CREATE TABLE table_name_86 (launch_site VARCHAR, satellite VARCHAR, date VARCHAR, rocket VARCHAR) | SELECT launch_site FROM table_name_86 WHERE date = "unknown" AND rocket = "delta iv" AND satellite = "gps iif-10" | ### Context: CREATE TABLE table_name_86 (launch_site VARCHAR, satellite VARCHAR, date VARCHAR, rocket VARCHAR) ### Question: What is the launch site of the delta iv rocket with an unknown date and a gps iif-10 satellite? ### Answer: SELECT launch_site FROM table_name_86 WHERE date = "unknown" AND rocket = "delta iv" AND satellite = "gps iif-10" |
What is the date of the gps iif-7 satellite? | CREATE TABLE table_name_48 (date VARCHAR, satellite VARCHAR) | SELECT date FROM table_name_48 WHERE satellite = "gps iif-7" | ### Context: CREATE TABLE table_name_48 (date VARCHAR, satellite VARCHAR) ### Question: What is the date of the gps iif-7 satellite? ### Answer: SELECT date FROM table_name_48 WHERE satellite = "gps iif-7" |
What was the finish for 1992? | CREATE TABLE table_name_89 (finish VARCHAR, year VARCHAR) | SELECT finish FROM table_name_89 WHERE year = 1992 | ### Context: CREATE TABLE table_name_89 (finish VARCHAR, year VARCHAR) ### Question: What was the finish for 1992? ### Answer: SELECT finish FROM table_name_89 WHERE year = 1992 |
What was Andretti's finish for the year he had a Buick engine and started 16th? | CREATE TABLE table_name_50 (finish VARCHAR, engine VARCHAR, start VARCHAR) | SELECT finish FROM table_name_50 WHERE engine = "buick" AND start = "16th" | ### Context: CREATE TABLE table_name_50 (finish VARCHAR, engine VARCHAR, start VARCHAR) ### Question: What was Andretti's finish for the year he had a Buick engine and started 16th? ### Answer: SELECT finish FROM table_name_50 WHERE engine = "buick" AND start = "16th" |
What was Andretti's finish the year he started 16th with a Buick engine? | CREATE TABLE table_name_62 (finish VARCHAR, engine VARCHAR, start VARCHAR) | SELECT finish FROM table_name_62 WHERE engine = "buick" AND start = "16th" | ### Context: CREATE TABLE table_name_62 (finish VARCHAR, engine VARCHAR, start VARCHAR) ### Question: What was Andretti's finish the year he started 16th with a Buick engine? ### Answer: SELECT finish FROM table_name_62 WHERE engine = "buick" AND start = "16th" |
Which Drawn has a Points of 6, and a Against larger than 16? | CREATE TABLE table_name_17 (drawn INTEGER, points VARCHAR, against VARCHAR) | SELECT SUM(drawn) FROM table_name_17 WHERE points = 6 AND against > 16 | ### Context: CREATE TABLE table_name_17 (drawn INTEGER, points VARCHAR, against VARCHAR) ### Question: Which Drawn has a Points of 6, and a Against larger than 16? ### Answer: SELECT SUM(drawn) FROM table_name_17 WHERE points = 6 AND against > 16 |
Which Points has a Difference of 3, and a Played smaller than 10? | CREATE TABLE table_name_80 (points INTEGER, difference VARCHAR, played VARCHAR) | SELECT AVG(points) FROM table_name_80 WHERE difference = "3" AND played < 10 | ### Context: CREATE TABLE table_name_80 (points INTEGER, difference VARCHAR, played VARCHAR) ### Question: Which Points has a Difference of 3, and a Played smaller than 10? ### Answer: SELECT AVG(points) FROM table_name_80 WHERE difference = "3" AND played < 10 |
Which Points has a Team of são paulo athletic, and a Position larger than 5? | CREATE TABLE table_name_15 (points INTEGER, team VARCHAR, position VARCHAR) | SELECT SUM(points) FROM table_name_15 WHERE team = "são paulo athletic" AND position > 5 | ### Context: CREATE TABLE table_name_15 (points INTEGER, team VARCHAR, position VARCHAR) ### Question: Which Points has a Team of são paulo athletic, and a Position larger than 5? ### Answer: SELECT SUM(points) FROM table_name_15 WHERE team = "são paulo athletic" AND position > 5 |
Which Position has a Played larger than 9, and a Points smaller than 11, and a Drawn smaller than 0? | CREATE TABLE table_name_95 (position INTEGER, drawn VARCHAR, played VARCHAR, points VARCHAR) | SELECT MIN(position) FROM table_name_95 WHERE played > 9 AND points < 11 AND drawn < 0 | ### Context: CREATE TABLE table_name_95 (position INTEGER, drawn VARCHAR, played VARCHAR, points VARCHAR) ### Question: Which Position has a Played larger than 9, and a Points smaller than 11, and a Drawn smaller than 0? ### Answer: SELECT MIN(position) FROM table_name_95 WHERE played > 9 AND points < 11 AND drawn < 0 |
What track has a catalogue of 47-9465? | CREATE TABLE table_name_21 (track INTEGER, catalogue VARCHAR) | SELECT SUM(track) FROM table_name_21 WHERE catalogue = "47-9465" | ### Context: CREATE TABLE table_name_21 (track INTEGER, catalogue VARCHAR) ### Question: What track has a catalogue of 47-9465? ### Answer: SELECT SUM(track) FROM table_name_21 WHERE catalogue = "47-9465" |
What track has a time of 2:30? | CREATE TABLE table_name_23 (track VARCHAR, time VARCHAR) | SELECT track FROM table_name_23 WHERE time = "2:30" | ### Context: CREATE TABLE table_name_23 (track VARCHAR, time VARCHAR) ### Question: What track has a time of 2:30? ### Answer: SELECT track FROM table_name_23 WHERE time = "2:30" |
What catalogue was recorded on 9/10/67 and a release date of 1/9/68? | CREATE TABLE table_name_77 (catalogue VARCHAR, recorded VARCHAR, release_date VARCHAR) | SELECT catalogue FROM table_name_77 WHERE recorded = "9/10/67" AND release_date = "1/9/68" | ### Context: CREATE TABLE table_name_77 (catalogue VARCHAR, recorded VARCHAR, release_date VARCHAR) ### Question: What catalogue was recorded on 9/10/67 and a release date of 1/9/68? ### Answer: SELECT catalogue FROM table_name_77 WHERE recorded = "9/10/67" AND release_date = "1/9/68" |
Where does Norway rank in total medals among countries with fewer than 7 bronzes? | CREATE TABLE table_name_96 (rank VARCHAR, bronze VARCHAR, nation VARCHAR) | SELECT rank FROM table_name_96 WHERE bronze < 7 AND nation = "norway" | ### Context: CREATE TABLE table_name_96 (rank VARCHAR, bronze VARCHAR, nation VARCHAR) ### Question: Where does Norway rank in total medals among countries with fewer than 7 bronzes? ### Answer: SELECT rank FROM table_name_96 WHERE bronze < 7 AND nation = "norway" |
What is the Inns of 435 Runs? | CREATE TABLE table_name_80 (inns VARCHAR, runs VARCHAR) | SELECT inns FROM table_name_80 WHERE runs = 435 | ### Context: CREATE TABLE table_name_80 (inns VARCHAR, runs VARCHAR) ### Question: What is the Inns of 435 Runs? ### Answer: SELECT inns FROM table_name_80 WHERE runs = 435 |
What is the average 1st place with a Rank that is larger than 10? | CREATE TABLE table_name_26 (rank INTEGER) | SELECT AVG(1 AS st_place) FROM table_name_26 WHERE rank > 10 | ### Context: CREATE TABLE table_name_26 (rank INTEGER) ### Question: What is the average 1st place with a Rank that is larger than 10? ### Answer: SELECT AVG(1 AS st_place) FROM table_name_26 WHERE rank > 10 |
What week was the Runner-up Lori McNeil? | CREATE TABLE table_name_70 (week_of VARCHAR, runner_up VARCHAR) | SELECT week_of FROM table_name_70 WHERE runner_up = "lori mcneil" | ### Context: CREATE TABLE table_name_70 (week_of VARCHAR, runner_up VARCHAR) ### Question: What week was the Runner-up Lori McNeil? ### Answer: SELECT week_of FROM table_name_70 WHERE runner_up = "lori mcneil" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.