question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What is the lowest wins with less than 2 Byes? | CREATE TABLE table_name_15 (wins INTEGER, byes INTEGER) | SELECT MIN(wins) FROM table_name_15 WHERE byes < 2 | ### Context: CREATE TABLE table_name_15 (wins INTEGER, byes INTEGER) ### Question: What is the lowest wins with less than 2 Byes? ### Answer: SELECT MIN(wins) FROM table_name_15 WHERE byes < 2 |
What is the highest score with 0 wins and more than 2 Byes? | CREATE TABLE table_name_4 (against INTEGER, wins VARCHAR, byes VARCHAR) | SELECT MAX(against) FROM table_name_4 WHERE wins = 0 AND byes > 2 | ### Context: CREATE TABLE table_name_4 (against INTEGER, wins VARCHAR, byes VARCHAR) ### Question: What is the highest score with 0 wins and more than 2 Byes? ### Answer: SELECT MAX(against) FROM table_name_4 WHERE wins = 0 AND byes > 2 |
What is the sum of wins against the smaller score 1148? | CREATE TABLE table_name_80 (wins INTEGER, against INTEGER) | SELECT SUM(wins) FROM table_name_80 WHERE against < 1148 | ### Context: CREATE TABLE table_name_80 (wins INTEGER, against INTEGER) ### Question: What is the sum of wins against the smaller score 1148? ### Answer: SELECT SUM(wins) FROM table_name_80 WHERE against < 1148 |
Who had a rank larger than 7, less than 305 goals, and 418 matches? | CREATE TABLE table_name_36 (name VARCHAR, matches VARCHAR, rank VARCHAR, goals VARCHAR) | SELECT name FROM table_name_36 WHERE rank > 7 AND goals < 305 AND matches = "418" | ### Context: CREATE TABLE table_name_36 (name VARCHAR, matches VARCHAR, rank VARCHAR, goals VARCHAR) ### Question: Who had a rank larger than 7, less than 305 goals, and 418 matches? ### Answer: SELECT name FROM table_name_36 WHERE rank > 7 AND goals < 305 AND matches = "418" |
How many goals ranked 6? | CREATE TABLE table_name_36 (goals VARCHAR, rank VARCHAR) | SELECT COUNT(goals) FROM table_name_36 WHERE rank = 6 | ### Context: CREATE TABLE table_name_36 (goals VARCHAR, rank VARCHAR) ### Question: How many goals ranked 6? ### Answer: SELECT COUNT(goals) FROM table_name_36 WHERE rank = 6 |
How many matches had 360 goals? | CREATE TABLE table_name_31 (matches VARCHAR, goals VARCHAR) | SELECT matches FROM table_name_31 WHERE goals = 360 | ### Context: CREATE TABLE table_name_31 (matches VARCHAR, goals VARCHAR) ### Question: How many matches had 360 goals? ### Answer: SELECT matches FROM table_name_31 WHERE goals = 360 |
What is the Nominee from the Category that is best costume design? | CREATE TABLE table_name_64 (nominee VARCHAR, category VARCHAR) | SELECT nominee FROM table_name_64 WHERE category = "best costume design" | ### Context: CREATE TABLE table_name_64 (nominee VARCHAR, category VARCHAR) ### Question: What is the Nominee from the Category that is best costume design? ### Answer: SELECT nominee FROM table_name_64 WHERE category = "best costume design" |
Which Total has a Bronze larger than 12, and a Silver larger than 772, and a Country of thailand? | CREATE TABLE table_name_70 (total INTEGER, country VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT SUM(total) FROM table_name_70 WHERE bronze > 12 AND silver > 772 AND country = "thailand" | ### Context: CREATE TABLE table_name_70 (total INTEGER, country VARCHAR, bronze VARCHAR, silver VARCHAR) ### Question: Which Total has a Bronze larger than 12, and a Silver larger than 772, and a Country of thailand? ### Answer: SELECT SUM(total) FROM table_name_70 WHERE bronze > 12 AND silver > 772 AND country = "thailand" |
Which Gold has a Total of 2998, and a Bronze smaller than 1191? | CREATE TABLE table_name_68 (gold INTEGER, total VARCHAR, bronze VARCHAR) | SELECT AVG(gold) FROM table_name_68 WHERE total = 2998 AND bronze < 1191 | ### Context: CREATE TABLE table_name_68 (gold INTEGER, total VARCHAR, bronze VARCHAR) ### Question: Which Gold has a Total of 2998, and a Bronze smaller than 1191? ### Answer: SELECT AVG(gold) FROM table_name_68 WHERE total = 2998 AND bronze < 1191 |
Which Bronze has a Country of malaysia, and a Total smaller than 2644? | CREATE TABLE table_name_75 (bronze INTEGER, country VARCHAR, total VARCHAR) | SELECT SUM(bronze) FROM table_name_75 WHERE country = "malaysia" AND total < 2644 | ### Context: CREATE TABLE table_name_75 (bronze INTEGER, country VARCHAR, total VARCHAR) ### Question: Which Bronze has a Country of malaysia, and a Total smaller than 2644? ### Answer: SELECT SUM(bronze) FROM table_name_75 WHERE country = "malaysia" AND total < 2644 |
Which Silver has a Bronze smaller than 618, and a Country of laos? | CREATE TABLE table_name_65 (silver VARCHAR, bronze VARCHAR, country VARCHAR) | SELECT silver FROM table_name_65 WHERE bronze < 618 AND country = "laos" | ### Context: CREATE TABLE table_name_65 (silver VARCHAR, bronze VARCHAR, country VARCHAR) ### Question: Which Silver has a Bronze smaller than 618, and a Country of laos? ### Answer: SELECT silver FROM table_name_65 WHERE bronze < 618 AND country = "laos" |
What is the Score with a Team that is @ portland? | CREATE TABLE table_name_1 (score VARCHAR, team VARCHAR) | SELECT score FROM table_name_1 WHERE team = "@ portland" | ### Context: CREATE TABLE table_name_1 (score VARCHAR, team VARCHAR) ### Question: What is the Score with a Team that is @ portland? ### Answer: SELECT score FROM table_name_1 WHERE team = "@ portland" |
What is the High points with a Date that is january 20? | CREATE TABLE table_name_35 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_name_35 WHERE date = "january 20" | ### Context: CREATE TABLE table_name_35 (high_points VARCHAR, date VARCHAR) ### Question: What is the High points with a Date that is january 20? ### Answer: SELECT high_points FROM table_name_35 WHERE date = "january 20" |
Who was the home team that the Clippers played? | CREATE TABLE table_name_64 (home VARCHAR, visitor VARCHAR) | SELECT home FROM table_name_64 WHERE visitor = "clippers" | ### Context: CREATE TABLE table_name_64 (home VARCHAR, visitor VARCHAR) ### Question: Who was the home team that the Clippers played? ### Answer: SELECT home FROM table_name_64 WHERE visitor = "clippers" |
What's the record of the game where Lebron James (16) was the leading scorer? | CREATE TABLE table_name_69 (record VARCHAR, leading_scorer VARCHAR) | SELECT record FROM table_name_69 WHERE leading_scorer = "lebron james (16)" | ### Context: CREATE TABLE table_name_69 (record VARCHAR, leading_scorer VARCHAR) ### Question: What's the record of the game where Lebron James (16) was the leading scorer? ### Answer: SELECT record FROM table_name_69 WHERE leading_scorer = "lebron james (16)" |
When the venue was A and the date was 2 january 2008, what was the average attendance? | CREATE TABLE table_name_61 (attendance INTEGER, venue VARCHAR, date VARCHAR) | SELECT AVG(attendance) FROM table_name_61 WHERE venue = "a" AND date = "2 january 2008" | ### Context: CREATE TABLE table_name_61 (attendance INTEGER, venue VARCHAR, date VARCHAR) ### Question: When the venue was A and the date was 2 january 2008, what was the average attendance? ### Answer: SELECT AVG(attendance) FROM table_name_61 WHERE venue = "a" AND date = "2 january 2008" |
On 10 November 2007, what was the venue? | CREATE TABLE table_name_60 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_60 WHERE date = "10 november 2007" | ### Context: CREATE TABLE table_name_60 (venue VARCHAR, date VARCHAR) ### Question: On 10 November 2007, what was the venue? ### Answer: SELECT venue FROM table_name_60 WHERE date = "10 november 2007" |
On what date was the opponent Ayr United, the result 1–0, and the attendance more than 668? | CREATE TABLE table_name_17 (date VARCHAR, opponent VARCHAR, result VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_17 WHERE result = "1–0" AND attendance > 668 AND opponent = "ayr united" | ### Context: CREATE TABLE table_name_17 (date VARCHAR, opponent VARCHAR, result VARCHAR, attendance VARCHAR) ### Question: On what date was the opponent Ayr United, the result 1–0, and the attendance more than 668? ### Answer: SELECT date FROM table_name_17 WHERE result = "1–0" AND attendance > 668 AND opponent = "ayr united" |
When the opponent was Brechin City and the attendance was 656, what was the Result? | CREATE TABLE table_name_47 (result VARCHAR, opponent VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_47 WHERE opponent = "brechin city" AND attendance = 656 | ### Context: CREATE TABLE table_name_47 (result VARCHAR, opponent VARCHAR, attendance VARCHAR) ### Question: When the opponent was Brechin City and the attendance was 656, what was the Result? ### Answer: SELECT result FROM table_name_47 WHERE opponent = "brechin city" AND attendance = 656 |
On 1 september 2007, at the Venue A, what was the average attendance? | CREATE TABLE table_name_45 (attendance INTEGER, venue VARCHAR, date VARCHAR) | SELECT AVG(attendance) FROM table_name_45 WHERE venue = "a" AND date = "1 september 2007" | ### Context: CREATE TABLE table_name_45 (attendance INTEGER, venue VARCHAR, date VARCHAR) ### Question: On 1 september 2007, at the Venue A, what was the average attendance? ### Answer: SELECT AVG(attendance) FROM table_name_45 WHERE venue = "a" AND date = "1 september 2007" |
Which Score has a Country of england, and a Year larger than 1971? | CREATE TABLE table_name_77 (score VARCHAR, country VARCHAR, year VARCHAR) | SELECT score FROM table_name_77 WHERE country = "england" AND year > 1971 | ### Context: CREATE TABLE table_name_77 (score VARCHAR, country VARCHAR, year VARCHAR) ### Question: Which Score has a Country of england, and a Year larger than 1971? ### Answer: SELECT score FROM table_name_77 WHERE country = "england" AND year > 1971 |
What is Scotland's winner? | CREATE TABLE table_name_37 (winner VARCHAR, country VARCHAR) | SELECT winner FROM table_name_37 WHERE country = "scotland" | ### Context: CREATE TABLE table_name_37 (winner VARCHAR, country VARCHAR) ### Question: What is Scotland's winner? ### Answer: SELECT winner FROM table_name_37 WHERE country = "scotland" |
What time was the game in week 2? | CREATE TABLE table_name_15 (time VARCHAR, week VARCHAR) | SELECT time FROM table_name_15 WHERE week = 2 | ### Context: CREATE TABLE table_name_15 (time VARCHAR, week VARCHAR) ### Question: What time was the game in week 2? ### Answer: SELECT time FROM table_name_15 WHERE week = 2 |
What was the score of the game on September 14, 2008? | CREATE TABLE table_name_88 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_88 WHERE date = "september 14, 2008" | ### Context: CREATE TABLE table_name_88 (result VARCHAR, date VARCHAR) ### Question: What was the score of the game on September 14, 2008? ### Answer: SELECT result FROM table_name_88 WHERE date = "september 14, 2008" |
What was the final score of the game on November 23, 2008? | CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_66 WHERE date = "november 23, 2008" | ### Context: CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR) ### Question: What was the final score of the game on November 23, 2008? ### Answer: SELECT result FROM table_name_66 WHERE date = "november 23, 2008" |
Which species has a Voges-Proskauer reading of negative and an indole reading of negative? | CREATE TABLE table_name_43 (species VARCHAR, voges_proskauer VARCHAR, indole VARCHAR) | SELECT species FROM table_name_43 WHERE voges_proskauer = "negative" AND indole = "negative" | ### Context: CREATE TABLE table_name_43 (species VARCHAR, voges_proskauer VARCHAR, indole VARCHAR) ### Question: Which species has a Voges-Proskauer reading of negative and an indole reading of negative? ### Answer: SELECT species FROM table_name_43 WHERE voges_proskauer = "negative" AND indole = "negative" |
What is the Voges-Proskauer reading for proteus mirabilis? | CREATE TABLE table_name_70 (voges_proskauer VARCHAR, species VARCHAR) | SELECT voges_proskauer FROM table_name_70 WHERE species = "proteus mirabilis" | ### Context: CREATE TABLE table_name_70 (voges_proskauer VARCHAR, species VARCHAR) ### Question: What is the Voges-Proskauer reading for proteus mirabilis? ### Answer: SELECT voges_proskauer FROM table_name_70 WHERE species = "proteus mirabilis" |
What is the methyl red reading for the species that tests positive for indole? | CREATE TABLE table_name_98 (methyl_red VARCHAR, indole VARCHAR) | SELECT methyl_red FROM table_name_98 WHERE indole = "positive" | ### Context: CREATE TABLE table_name_98 (methyl_red VARCHAR, indole VARCHAR) ### Question: What is the methyl red reading for the species that tests positive for indole? ### Answer: SELECT methyl_red FROM table_name_98 WHERE indole = "positive" |
What is the methyl red reading for proteus mirabilis? | CREATE TABLE table_name_77 (methyl_red VARCHAR, species VARCHAR) | SELECT methyl_red FROM table_name_77 WHERE species = "proteus mirabilis" | ### Context: CREATE TABLE table_name_77 (methyl_red VARCHAR, species VARCHAR) ### Question: What is the methyl red reading for proteus mirabilis? ### Answer: SELECT methyl_red FROM table_name_77 WHERE species = "proteus mirabilis" |
What is the highest silver medals for Russia with more than 5 bronze medals? | CREATE TABLE table_name_15 (silver INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT MAX(silver) FROM table_name_15 WHERE nation = "russia" AND bronze > 5 | ### Context: CREATE TABLE table_name_15 (silver INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: What is the highest silver medals for Russia with more than 5 bronze medals? ### Answer: SELECT MAX(silver) FROM table_name_15 WHERE nation = "russia" AND bronze > 5 |
What package/option has sky arte hd as the television service? | CREATE TABLE table_name_51 (package_option VARCHAR, television_service VARCHAR) | SELECT package_option FROM table_name_51 WHERE television_service = "sky arte hd" | ### Context: CREATE TABLE table_name_51 (package_option VARCHAR, television_service VARCHAR) ### Question: What package/option has sky arte hd as the television service? ### Answer: SELECT package_option FROM table_name_51 WHERE television_service = "sky arte hd" |
What language has NO, as the HDTV, sky famiglia as the package/option, and national geographic channel as the television service? | CREATE TABLE table_name_23 (language VARCHAR, television_service VARCHAR, hdtv VARCHAR, package_option VARCHAR) | SELECT language FROM table_name_23 WHERE hdtv = "no" AND package_option = "sky famiglia" AND television_service = "national geographic channel" | ### Context: CREATE TABLE table_name_23 (language VARCHAR, television_service VARCHAR, hdtv VARCHAR, package_option VARCHAR) ### Question: What language has NO, as the HDTV, sky famiglia as the package/option, and national geographic channel as the television service? ### Answer: SELECT language FROM table_name_23 WHERE hdtv = "no" AND package_option = "sky famiglia" AND television_service = "national geographic channel" |
What language has sky famiglia as the package/option? | CREATE TABLE table_name_82 (language VARCHAR, package_option VARCHAR) | SELECT language FROM table_name_82 WHERE package_option = "sky famiglia" | ### Context: CREATE TABLE table_name_82 (language VARCHAR, package_option VARCHAR) ### Question: What language has sky famiglia as the package/option? ### Answer: SELECT language FROM table_name_82 WHERE package_option = "sky famiglia" |
What language has viaggi as the content? | CREATE TABLE table_name_65 (language VARCHAR, content VARCHAR) | SELECT language FROM table_name_65 WHERE content = "viaggi" | ### Context: CREATE TABLE table_name_65 (language VARCHAR, content VARCHAR) ### Question: What language has viaggi as the content? ### Answer: SELECT language FROM table_name_65 WHERE content = "viaggi" |
What television service has italian as the language, and sky famiglia as the package option? | CREATE TABLE table_name_20 (television_service VARCHAR, language VARCHAR, package_option VARCHAR) | SELECT television_service FROM table_name_20 WHERE language = "italian" AND package_option = "sky famiglia" | ### Context: CREATE TABLE table_name_20 (television_service VARCHAR, language VARCHAR, package_option VARCHAR) ### Question: What television service has italian as the language, and sky famiglia as the package option? ### Answer: SELECT television_service FROM table_name_20 WHERE language = "italian" AND package_option = "sky famiglia" |
What package/option has documentaries as the content, yes as the HDTV, and a television service of history hd? | CREATE TABLE table_name_56 (package_option VARCHAR, television_service VARCHAR, content VARCHAR, hdtv VARCHAR) | SELECT package_option FROM table_name_56 WHERE content = "documentaries" AND hdtv = "yes" AND television_service = "history hd" | ### Context: CREATE TABLE table_name_56 (package_option VARCHAR, television_service VARCHAR, content VARCHAR, hdtv VARCHAR) ### Question: What package/option has documentaries as the content, yes as the HDTV, and a television service of history hd? ### Answer: SELECT package_option FROM table_name_56 WHERE content = "documentaries" AND hdtv = "yes" AND television_service = "history hd" |
What was the resolution for the match that ended by Submission (armbar)? | CREATE TABLE table_name_91 (res VARCHAR, method VARCHAR) | SELECT res FROM table_name_91 WHERE method = "submission (armbar)" | ### Context: CREATE TABLE table_name_91 (res VARCHAR, method VARCHAR) ### Question: What was the resolution for the match that ended by Submission (armbar)? ### Answer: SELECT res FROM table_name_91 WHERE method = "submission (armbar)" |
What was the total time for the match that ocurred in Round 3 with opponent Keith Wisniewski? | CREATE TABLE table_name_39 (time VARCHAR, round VARCHAR, opponent VARCHAR) | SELECT time FROM table_name_39 WHERE round = "3" AND opponent = "keith wisniewski" | ### Context: CREATE TABLE table_name_39 (time VARCHAR, round VARCHAR, opponent VARCHAR) ### Question: What was the total time for the match that ocurred in Round 3 with opponent Keith Wisniewski? ### Answer: SELECT time FROM table_name_39 WHERE round = "3" AND opponent = "keith wisniewski" |
Where did the match with opponent Laverne Clark occur? | CREATE TABLE table_name_14 (location VARCHAR, opponent VARCHAR) | SELECT location FROM table_name_14 WHERE opponent = "laverne clark" | ### Context: CREATE TABLE table_name_14 (location VARCHAR, opponent VARCHAR) ### Question: Where did the match with opponent Laverne Clark occur? ### Answer: SELECT location FROM table_name_14 WHERE opponent = "laverne clark" |
What is the Diameter (mi) when the Longitude is 79.8° e? | CREATE TABLE table_name_65 (diameter__mi_ VARCHAR, longitude VARCHAR) | SELECT diameter__mi_ FROM table_name_65 WHERE longitude = "79.8° e" | ### Context: CREATE TABLE table_name_65 (diameter__mi_ VARCHAR, longitude VARCHAR) ### Question: What is the Diameter (mi) when the Longitude is 79.8° e? ### Answer: SELECT diameter__mi_ FROM table_name_65 WHERE longitude = "79.8° e" |
What is the Latitude when the Diameter (km) is 13km, and the Longitude is 72.9° e? | CREATE TABLE table_name_94 (latitude VARCHAR, diameter__km_ VARCHAR, longitude VARCHAR) | SELECT latitude FROM table_name_94 WHERE diameter__km_ = "13km" AND longitude = "72.9° e" | ### Context: CREATE TABLE table_name_94 (latitude VARCHAR, diameter__km_ VARCHAR, longitude VARCHAR) ### Question: What is the Latitude when the Diameter (km) is 13km, and the Longitude is 72.9° e? ### Answer: SELECT latitude FROM table_name_94 WHERE diameter__km_ = "13km" AND longitude = "72.9° e" |
What shows for the Longitude when there is a Diameter (km) of 31km? | CREATE TABLE table_name_54 (longitude VARCHAR, diameter__km_ VARCHAR) | SELECT longitude FROM table_name_54 WHERE diameter__km_ = "31km" | ### Context: CREATE TABLE table_name_54 (longitude VARCHAR, diameter__km_ VARCHAR) ### Question: What shows for the Longitude when there is a Diameter (km) of 31km? ### Answer: SELECT longitude FROM table_name_54 WHERE diameter__km_ = "31km" |
What shows for the Diameter (km) when the Diameter (mi) is 8mi, and a Gill is e? | CREATE TABLE table_name_66 (diameter__km_ VARCHAR, diameter__mi_ VARCHAR, gill VARCHAR) | SELECT diameter__km_ FROM table_name_66 WHERE diameter__mi_ = "8mi" AND gill = "e" | ### Context: CREATE TABLE table_name_66 (diameter__km_ VARCHAR, diameter__mi_ VARCHAR, gill VARCHAR) ### Question: What shows for the Diameter (km) when the Diameter (mi) is 8mi, and a Gill is e? ### Answer: SELECT diameter__km_ FROM table_name_66 WHERE diameter__mi_ = "8mi" AND gill = "e" |
What shows as the Diameter (km) when the Diameter (mi) is 5mi? | CREATE TABLE table_name_5 (diameter__km_ VARCHAR, diameter__mi_ VARCHAR) | SELECT diameter__km_ FROM table_name_5 WHERE diameter__mi_ = "5mi" | ### Context: CREATE TABLE table_name_5 (diameter__km_ VARCHAR, diameter__mi_ VARCHAR) ### Question: What shows as the Diameter (km) when the Diameter (mi) is 5mi? ### Answer: SELECT diameter__km_ FROM table_name_5 WHERE diameter__mi_ = "5mi" |
What was the lowest squad with 0 goals? | CREATE TABLE table_name_81 (squad_no INTEGER, goals INTEGER) | SELECT MIN(squad_no) FROM table_name_81 WHERE goals < 0 | ### Context: CREATE TABLE table_name_81 (squad_no INTEGER, goals INTEGER) ### Question: What was the lowest squad with 0 goals? ### Answer: SELECT MIN(squad_no) FROM table_name_81 WHERE goals < 0 |
What is the number for overall for angelo craig? | CREATE TABLE table_name_30 (overall VARCHAR, player VARCHAR) | SELECT COUNT(overall) FROM table_name_30 WHERE player = "angelo craig" | ### Context: CREATE TABLE table_name_30 (overall VARCHAR, player VARCHAR) ### Question: What is the number for overall for angelo craig? ### Answer: SELECT COUNT(overall) FROM table_name_30 WHERE player = "angelo craig" |
What is the Round when there is an overall of 246? | CREATE TABLE table_name_85 (round VARCHAR, overall VARCHAR) | SELECT round FROM table_name_85 WHERE overall = 246 | ### Context: CREATE TABLE table_name_85 (round VARCHAR, overall VARCHAR) ### Question: What is the Round when there is an overall of 246? ### Answer: SELECT round FROM table_name_85 WHERE overall = 246 |
What is the lowest Overall for the wide receiver in a round less than 2? | CREATE TABLE table_name_93 (overall INTEGER, position VARCHAR, round VARCHAR) | SELECT MIN(overall) FROM table_name_93 WHERE position = "wide receiver" AND round < 2 | ### Context: CREATE TABLE table_name_93 (overall INTEGER, position VARCHAR, round VARCHAR) ### Question: What is the lowest Overall for the wide receiver in a round less than 2? ### Answer: SELECT MIN(overall) FROM table_name_93 WHERE position = "wide receiver" AND round < 2 |
What is the Player from appalachian state? | CREATE TABLE table_name_73 (player VARCHAR, college VARCHAR) | SELECT player FROM table_name_73 WHERE college = "appalachian state" | ### Context: CREATE TABLE table_name_73 (player VARCHAR, college VARCHAR) ### Question: What is the Player from appalachian state? ### Answer: SELECT player FROM table_name_73 WHERE college = "appalachian state" |
What is the Production Cost with a Date that is february 2000? | CREATE TABLE table_name_34 (production_cost VARCHAR, date VARCHAR) | SELECT production_cost FROM table_name_34 WHERE date = "february 2000" | ### Context: CREATE TABLE table_name_34 (production_cost VARCHAR, date VARCHAR) ### Question: What is the Production Cost with a Date that is february 2000? ### Answer: SELECT production_cost FROM table_name_34 WHERE date = "february 2000" |
What is the Singapore Gross with a Title that is 2000? | CREATE TABLE table_name_74 (singapore_gross VARCHAR, title VARCHAR) | SELECT singapore_gross FROM table_name_74 WHERE title = "2000" | ### Context: CREATE TABLE table_name_74 (singapore_gross VARCHAR, title VARCHAR) ### Question: What is the Singapore Gross with a Title that is 2000? ### Answer: SELECT singapore_gross FROM table_name_74 WHERE title = "2000" |
What is the Singapore Gross with a Producer that is 2000? | CREATE TABLE table_name_72 (singapore_gross VARCHAR, producer VARCHAR) | SELECT singapore_gross FROM table_name_72 WHERE producer = "2000" | ### Context: CREATE TABLE table_name_72 (singapore_gross VARCHAR, producer VARCHAR) ### Question: What is the Singapore Gross with a Producer that is 2000? ### Answer: SELECT singapore_gross FROM table_name_72 WHERE producer = "2000" |
What is Average Height, when Weight is less than 93, when Spike is less than 336, and when Block is 305? | CREATE TABLE table_name_82 (height INTEGER, block VARCHAR, weight VARCHAR, spike VARCHAR) | SELECT AVG(height) FROM table_name_82 WHERE weight < 93 AND spike < 336 AND block = 305 | ### Context: CREATE TABLE table_name_82 (height INTEGER, block VARCHAR, weight VARCHAR, spike VARCHAR) ### Question: What is Average Height, when Weight is less than 93, when Spike is less than 336, and when Block is 305? ### Answer: SELECT AVG(height) FROM table_name_82 WHERE weight < 93 AND spike < 336 AND block = 305 |
What is Name, when Block is 320, when Spike is more than 336, and when Date of Birth is 12.10.1978? | CREATE TABLE table_name_39 (name VARCHAR, date_of_birth VARCHAR, block VARCHAR, spike VARCHAR) | SELECT name FROM table_name_39 WHERE block = 320 AND spike > 336 AND date_of_birth = "12.10.1978" | ### Context: CREATE TABLE table_name_39 (name VARCHAR, date_of_birth VARCHAR, block VARCHAR, spike VARCHAR) ### Question: What is Name, when Block is 320, when Spike is more than 336, and when Date of Birth is 12.10.1978? ### Answer: SELECT name FROM table_name_39 WHERE block = 320 AND spike > 336 AND date_of_birth = "12.10.1978" |
What is the total number of Block(s), when Spike is less than 341, when Weight is greater than 82, and when Name is Theodoros Baev? | CREATE TABLE table_name_41 (block VARCHAR, name VARCHAR, spike VARCHAR, weight VARCHAR) | SELECT COUNT(block) FROM table_name_41 WHERE spike < 341 AND weight > 82 AND name = "theodoros baev" | ### Context: CREATE TABLE table_name_41 (block VARCHAR, name VARCHAR, spike VARCHAR, weight VARCHAR) ### Question: What is the total number of Block(s), when Spike is less than 341, when Weight is greater than 82, and when Name is Theodoros Baev? ### Answer: SELECT COUNT(block) FROM table_name_41 WHERE spike < 341 AND weight > 82 AND name = "theodoros baev" |
What is Name, when Spike is greater than 343, and when Date of Birth is 02.03.1973? | CREATE TABLE table_name_98 (name VARCHAR, spike VARCHAR, date_of_birth VARCHAR) | SELECT name FROM table_name_98 WHERE spike > 343 AND date_of_birth = "02.03.1973" | ### Context: CREATE TABLE table_name_98 (name VARCHAR, spike VARCHAR, date_of_birth VARCHAR) ### Question: What is Name, when Spike is greater than 343, and when Date of Birth is 02.03.1973? ### Answer: SELECT name FROM table_name_98 WHERE spike > 343 AND date_of_birth = "02.03.1973" |
What was the date of the Paco Rabanne Open de France? | CREATE TABLE table_name_95 (date VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_95 WHERE tournament = "paco rabanne open de france" | ### Context: CREATE TABLE table_name_95 (date VARCHAR, tournament VARCHAR) ### Question: What was the date of the Paco Rabanne Open de France? ### Answer: SELECT date FROM table_name_95 WHERE tournament = "paco rabanne open de france" |
On which date did Ian Mosey finish runner-up? | CREATE TABLE table_name_49 (date VARCHAR, runner_s__up VARCHAR) | SELECT date FROM table_name_49 WHERE runner_s__up = "ian mosey" | ### Context: CREATE TABLE table_name_49 (date VARCHAR, runner_s__up VARCHAR) ### Question: On which date did Ian Mosey finish runner-up? ### Answer: SELECT date FROM table_name_49 WHERE runner_s__up = "ian mosey" |
What set 2 has a set 4 of 21-25? | CREATE TABLE table_name_74 (set_2 VARCHAR, set_4 VARCHAR) | SELECT set_2 FROM table_name_74 WHERE set_4 = "21-25" | ### Context: CREATE TABLE table_name_74 (set_2 VARCHAR, set_4 VARCHAR) ### Question: What set 2 has a set 4 of 21-25? ### Answer: SELECT set_2 FROM table_name_74 WHERE set_4 = "21-25" |
What was the score when set 3 was 26-28? | CREATE TABLE table_name_78 (score VARCHAR, set_3 VARCHAR) | SELECT score FROM table_name_78 WHERE set_3 = "26-28" | ### Context: CREATE TABLE table_name_78 (score VARCHAR, set_3 VARCHAR) ### Question: What was the score when set 3 was 26-28? ### Answer: SELECT score FROM table_name_78 WHERE set_3 = "26-28" |
When was set 3 of 18-25? | CREATE TABLE table_name_2 (date VARCHAR, set_3 VARCHAR) | SELECT date FROM table_name_2 WHERE set_3 = "18-25" | ### Context: CREATE TABLE table_name_2 (date VARCHAR, set_3 VARCHAR) ### Question: When was set 3 of 18-25? ### Answer: SELECT date FROM table_name_2 WHERE set_3 = "18-25" |
Who was the away captain with a result of Eng by 1 wkt? | CREATE TABLE table_name_43 (away_captain VARCHAR, result VARCHAR) | SELECT away_captain FROM table_name_43 WHERE result = "eng by 1 wkt" | ### Context: CREATE TABLE table_name_43 (away_captain VARCHAR, result VARCHAR) ### Question: Who was the away captain with a result of Eng by 1 wkt? ### Answer: SELECT away_captain FROM table_name_43 WHERE result = "eng by 1 wkt" |
On what date was the result Eng by 1 wkt? | CREATE TABLE table_name_79 (date VARCHAR, result VARCHAR) | SELECT date FROM table_name_79 WHERE result = "eng by 1 wkt" | ### Context: CREATE TABLE table_name_79 (date VARCHAR, result VARCHAR) ### Question: On what date was the result Eng by 1 wkt? ### Answer: SELECT date FROM table_name_79 WHERE result = "eng by 1 wkt" |
On what date was Arthur Jones the away captain at Sydney Cricket Ground? | CREATE TABLE table_name_33 (date VARCHAR, away_captain VARCHAR, venue VARCHAR) | SELECT date FROM table_name_33 WHERE away_captain = "arthur jones" AND venue = "sydney cricket ground" | ### Context: CREATE TABLE table_name_33 (date VARCHAR, away_captain VARCHAR, venue VARCHAR) ### Question: On what date was Arthur Jones the away captain at Sydney Cricket Ground? ### Answer: SELECT date FROM table_name_33 WHERE away_captain = "arthur jones" AND venue = "sydney cricket ground" |
What is the highest place for song that was draw number 6? | CREATE TABLE table_name_83 (place INTEGER, draw VARCHAR) | SELECT MAX(place) FROM table_name_83 WHERE draw = 6 | ### Context: CREATE TABLE table_name_83 (place INTEGER, draw VARCHAR) ### Question: What is the highest place for song that was draw number 6? ### Answer: SELECT MAX(place) FROM table_name_83 WHERE draw = 6 |
What was the result of the game on November 6, 1988? | CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_61 WHERE date = "november 6, 1988" | ### Context: CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR) ### Question: What was the result of the game on November 6, 1988? ### Answer: SELECT result FROM table_name_61 WHERE date = "november 6, 1988" |
What was the date of the game against the Los Angeles Rams? | CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_60 WHERE opponent = "los angeles rams" | ### Context: CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR) ### Question: What was the date of the game against the Los Angeles Rams? ### Answer: SELECT date FROM table_name_60 WHERE opponent = "los angeles rams" |
What is the total with a 25-19 set 2 on Jun 17? | CREATE TABLE table_name_57 (total VARCHAR, set_2 VARCHAR, date VARCHAR) | SELECT total FROM table_name_57 WHERE set_2 = "25-19" AND date = "jun 17" | ### Context: CREATE TABLE table_name_57 (total VARCHAR, set_2 VARCHAR, date VARCHAR) ### Question: What is the total with a 25-19 set 2 on Jun 17? ### Answer: SELECT total FROM table_name_57 WHERE set_2 = "25-19" AND date = "jun 17" |
What is the set 4 with a 2-3 score? | CREATE TABLE table_name_73 (set_4 VARCHAR, score VARCHAR) | SELECT set_4 FROM table_name_73 WHERE score = "2-3" | ### Context: CREATE TABLE table_name_73 (set_4 VARCHAR, score VARCHAR) ### Question: What is the set 4 with a 2-3 score? ### Answer: SELECT set_4 FROM table_name_73 WHERE score = "2-3" |
What is the set 5 with a 19-25 set 1? | CREATE TABLE table_name_44 (set_5 VARCHAR, set_1 VARCHAR) | SELECT set_5 FROM table_name_44 WHERE set_1 = "19-25" | ### Context: CREATE TABLE table_name_44 (set_5 VARCHAR, set_1 VARCHAR) ### Question: What is the set 5 with a 19-25 set 1? ### Answer: SELECT set_5 FROM table_name_44 WHERE set_1 = "19-25" |
What is the set 1 with a 28-30 set 4? | CREATE TABLE table_name_67 (set_1 VARCHAR, set_4 VARCHAR) | SELECT set_1 FROM table_name_67 WHERE set_4 = "28-30" | ### Context: CREATE TABLE table_name_67 (set_1 VARCHAR, set_4 VARCHAR) ### Question: What is the set 1 with a 28-30 set 4? ### Answer: SELECT set_1 FROM table_name_67 WHERE set_4 = "28-30" |
What is the result when there's less than 2 goals? | CREATE TABLE table_name_46 (result VARCHAR, goal INTEGER) | SELECT result FROM table_name_46 WHERE goal < 2 | ### Context: CREATE TABLE table_name_46 (result VARCHAR, goal INTEGER) ### Question: What is the result when there's less than 2 goals? ### Answer: SELECT result FROM table_name_46 WHERE goal < 2 |
What is the score when there are less than 2 goals? | CREATE TABLE table_name_18 (score VARCHAR, goal INTEGER) | SELECT score FROM table_name_18 WHERE goal < 2 | ### Context: CREATE TABLE table_name_18 (score VARCHAR, goal INTEGER) ### Question: What is the score when there are less than 2 goals? ### Answer: SELECT score FROM table_name_18 WHERE goal < 2 |
How many points on average had a position smaller than 8, 16 plays, and a lost larger than 9? | CREATE TABLE table_name_20 (points INTEGER, lost VARCHAR, position VARCHAR, played VARCHAR) | SELECT AVG(points) FROM table_name_20 WHERE position < 8 AND played = 16 AND lost > 9 | ### Context: CREATE TABLE table_name_20 (points INTEGER, lost VARCHAR, position VARCHAR, played VARCHAR) ### Question: How many points on average had a position smaller than 8, 16 plays, and a lost larger than 9? ### Answer: SELECT AVG(points) FROM table_name_20 WHERE position < 8 AND played = 16 AND lost > 9 |
What was the lowest Attendance when the Opponent was Maryland? | CREATE TABLE table_name_4 (attendance INTEGER, opponent VARCHAR) | SELECT MIN(attendance) FROM table_name_4 WHERE opponent = "maryland" | ### Context: CREATE TABLE table_name_4 (attendance INTEGER, opponent VARCHAR) ### Question: What was the lowest Attendance when the Opponent was Maryland? ### Answer: SELECT MIN(attendance) FROM table_name_4 WHERE opponent = "maryland" |
Which Network has a Local name of moj tata je bolji od tvog tate? | CREATE TABLE table_name_56 (network VARCHAR, local_name VARCHAR) | SELECT network FROM table_name_56 WHERE local_name = "moj tata je bolji od tvog tate" | ### Context: CREATE TABLE table_name_56 (network VARCHAR, local_name VARCHAR) ### Question: Which Network has a Local name of moj tata je bolji od tvog tate? ### Answer: SELECT network FROM table_name_56 WHERE local_name = "moj tata je bolji od tvog tate" |
Which Country has a Network of channel 1? | CREATE TABLE table_name_97 (country VARCHAR, network VARCHAR) | SELECT country FROM table_name_97 WHERE network = "channel 1" | ### Context: CREATE TABLE table_name_97 (country VARCHAR, network VARCHAR) ### Question: Which Country has a Network of channel 1? ### Answer: SELECT country FROM table_name_97 WHERE network = "channel 1" |
Which Country has a Network of nelonen? | CREATE TABLE table_name_61 (country VARCHAR, network VARCHAR) | SELECT country FROM table_name_61 WHERE network = "nelonen" | ### Context: CREATE TABLE table_name_61 (country VARCHAR, network VARCHAR) ### Question: Which Country has a Network of nelonen? ### Answer: SELECT country FROM table_name_61 WHERE network = "nelonen" |
Which Local name has a Network of nova tv? | CREATE TABLE table_name_60 (local_name VARCHAR, network VARCHAR) | SELECT local_name FROM table_name_60 WHERE network = "nova tv" | ### Context: CREATE TABLE table_name_60 (local_name VARCHAR, network VARCHAR) ### Question: Which Local name has a Network of nova tv? ### Answer: SELECT local_name FROM table_name_60 WHERE network = "nova tv" |
Which Local name has a Network of tvn? | CREATE TABLE table_name_36 (local_name VARCHAR, network VARCHAR) | SELECT local_name FROM table_name_36 WHERE network = "tvn" | ### Context: CREATE TABLE table_name_36 (local_name VARCHAR, network VARCHAR) ### Question: Which Local name has a Network of tvn? ### Answer: SELECT local_name FROM table_name_36 WHERE network = "tvn" |
Which Country has a Host of miguel esteban? | CREATE TABLE table_name_18 (country VARCHAR, host VARCHAR) | SELECT country FROM table_name_18 WHERE host = "miguel esteban" | ### Context: CREATE TABLE table_name_18 (country VARCHAR, host VARCHAR) ### Question: Which Country has a Host of miguel esteban? ### Answer: SELECT country FROM table_name_18 WHERE host = "miguel esteban" |
Can you tell me the lowest Chapter that has the Pinyin of dehua, and the Articles smaller than 16? | CREATE TABLE table_name_54 (chapter INTEGER, pinyin VARCHAR, articles VARCHAR) | SELECT MIN(chapter) FROM table_name_54 WHERE pinyin = "dehua" AND articles < 16 | ### Context: CREATE TABLE table_name_54 (chapter INTEGER, pinyin VARCHAR, articles VARCHAR) ### Question: Can you tell me the lowest Chapter that has the Pinyin of dehua, and the Articles smaller than 16? ### Answer: SELECT MIN(chapter) FROM table_name_54 WHERE pinyin = "dehua" AND articles < 16 |
Can you tell me the average Chapter that has Articles smaller than 15? | CREATE TABLE table_name_48 (chapter INTEGER, articles INTEGER) | SELECT AVG(chapter) FROM table_name_48 WHERE articles < 15 | ### Context: CREATE TABLE table_name_48 (chapter INTEGER, articles INTEGER) ### Question: Can you tell me the average Chapter that has Articles smaller than 15? ### Answer: SELECT AVG(chapter) FROM table_name_48 WHERE articles < 15 |
Can you tell me the Chinese that has the Chapter larger than 4, and the English Translation of food transformations? | CREATE TABLE table_name_7 (chinese VARCHAR, chapter VARCHAR, english_translation VARCHAR) | SELECT chinese FROM table_name_7 WHERE chapter > 4 AND english_translation = "food transformations" | ### Context: CREATE TABLE table_name_7 (chinese VARCHAR, chapter VARCHAR, english_translation VARCHAR) ### Question: Can you tell me the Chinese that has the Chapter larger than 4, and the English Translation of food transformations? ### Answer: SELECT chinese FROM table_name_7 WHERE chapter > 4 AND english_translation = "food transformations" |
Can you tell me the English Translation that has the Articles of 24? | CREATE TABLE table_name_44 (english_translation VARCHAR, articles VARCHAR) | SELECT english_translation FROM table_name_44 WHERE articles = 24 | ### Context: CREATE TABLE table_name_44 (english_translation VARCHAR, articles VARCHAR) ### Question: Can you tell me the English Translation that has the Articles of 24? ### Answer: SELECT english_translation FROM table_name_44 WHERE articles = 24 |
What shows for ICAO when the IATA is sin? | CREATE TABLE table_name_83 (icao VARCHAR, iata VARCHAR) | SELECT icao FROM table_name_83 WHERE iata = "sin" | ### Context: CREATE TABLE table_name_83 (icao VARCHAR, iata VARCHAR) ### Question: What shows for ICAO when the IATA is sin? ### Answer: SELECT icao FROM table_name_83 WHERE iata = "sin" |
What is the IATA when France was the country, and the ICAO was lfrn? | CREATE TABLE table_name_72 (iata VARCHAR, country VARCHAR, icao VARCHAR) | SELECT iata FROM table_name_72 WHERE country = "france" AND icao = "lfrn" | ### Context: CREATE TABLE table_name_72 (iata VARCHAR, country VARCHAR, icao VARCHAR) ### Question: What is the IATA when France was the country, and the ICAO was lfrn? ### Answer: SELECT iata FROM table_name_72 WHERE country = "france" AND icao = "lfrn" |
What is the Airport when France was the country, and Montpellier was the city? | CREATE TABLE table_name_82 (airport VARCHAR, country VARCHAR, city VARCHAR) | SELECT airport FROM table_name_82 WHERE country = "france" AND city = "montpellier" | ### Context: CREATE TABLE table_name_82 (airport VARCHAR, country VARCHAR, city VARCHAR) ### Question: What is the Airport when France was the country, and Montpellier was the city? ### Answer: SELECT airport FROM table_name_82 WHERE country = "france" AND city = "montpellier" |
What is the ICAO for luqa airport? | CREATE TABLE table_name_66 (icao VARCHAR, airport VARCHAR) | SELECT icao FROM table_name_66 WHERE airport = "luqa airport" | ### Context: CREATE TABLE table_name_66 (icao VARCHAR, airport VARCHAR) ### Question: What is the ICAO for luqa airport? ### Answer: SELECT icao FROM table_name_66 WHERE airport = "luqa airport" |
What is the Airport for New York City? | CREATE TABLE table_name_30 (airport VARCHAR, city VARCHAR) | SELECT airport FROM table_name_30 WHERE city = "new york" | ### Context: CREATE TABLE table_name_30 (airport VARCHAR, city VARCHAR) ### Question: What is the Airport for New York City? ### Answer: SELECT airport FROM table_name_30 WHERE city = "new york" |
What is the Country when the IATA was osl? | CREATE TABLE table_name_94 (country VARCHAR, iata VARCHAR) | SELECT country FROM table_name_94 WHERE iata = "osl" | ### Context: CREATE TABLE table_name_94 (country VARCHAR, iata VARCHAR) ### Question: What is the Country when the IATA was osl? ### Answer: SELECT country FROM table_name_94 WHERE iata = "osl" |
Which Division has a Year larger than 1996,a Regular Season of 4th, and a Playoffs of final? | CREATE TABLE table_name_76 (division VARCHAR, playoffs VARCHAR, year VARCHAR, regular_season VARCHAR) | SELECT division FROM table_name_76 WHERE year > 1996 AND regular_season = "4th" AND playoffs = "final" | ### Context: CREATE TABLE table_name_76 (division VARCHAR, playoffs VARCHAR, year VARCHAR, regular_season VARCHAR) ### Question: Which Division has a Year larger than 1996,a Regular Season of 4th, and a Playoffs of final? ### Answer: SELECT division FROM table_name_76 WHERE year > 1996 AND regular_season = "4th" AND playoffs = "final" |
Which League that has a Open Cup of 1st round, and a Year of 2009? | CREATE TABLE table_name_99 (league VARCHAR, open_cup VARCHAR, year VARCHAR) | SELECT league FROM table_name_99 WHERE open_cup = "1st round" AND year = 2009 | ### Context: CREATE TABLE table_name_99 (league VARCHAR, open_cup VARCHAR, year VARCHAR) ### Question: Which League that has a Open Cup of 1st round, and a Year of 2009? ### Answer: SELECT league FROM table_name_99 WHERE open_cup = "1st round" AND year = 2009 |
Which Playoffs has a Division of 2 and a Regular Season of 4th, southeast? | CREATE TABLE table_name_50 (playoffs VARCHAR, division VARCHAR, regular_season VARCHAR) | SELECT playoffs FROM table_name_50 WHERE division = "2" AND regular_season = "4th, southeast" | ### Context: CREATE TABLE table_name_50 (playoffs VARCHAR, division VARCHAR, regular_season VARCHAR) ### Question: Which Playoffs has a Division of 2 and a Regular Season of 4th, southeast? ### Answer: SELECT playoffs FROM table_name_50 WHERE division = "2" AND regular_season = "4th, southeast" |
What are the least amount of points that have points for greater than 438, and points against greater than 943? | CREATE TABLE table_name_6 (points INTEGER, points_for VARCHAR, points_against VARCHAR) | SELECT MIN(points) FROM table_name_6 WHERE points_for > 438 AND points_against > 943 | ### Context: CREATE TABLE table_name_6 (points INTEGER, points_for VARCHAR, points_against VARCHAR) ### Question: What are the least amount of points that have points for greater than 438, and points against greater than 943? ### Answer: SELECT MIN(points) FROM table_name_6 WHERE points_for > 438 AND points_against > 943 |
What are the highest losses that have points agaisnt less than 956, high park demons as the club, and points less than 16? | CREATE TABLE table_name_93 (loses INTEGER, points VARCHAR, points_against VARCHAR, club VARCHAR) | SELECT MAX(loses) FROM table_name_93 WHERE points_against < 956 AND club = "high park demons" AND points < 16 | ### Context: CREATE TABLE table_name_93 (loses INTEGER, points VARCHAR, points_against VARCHAR, club VARCHAR) ### Question: What are the highest losses that have points agaisnt less than 956, high park demons as the club, and points less than 16? ### Answer: SELECT MAX(loses) FROM table_name_93 WHERE points_against < 956 AND club = "high park demons" AND points < 16 |
What club has losses greater than 1, 4 for the wins, with points against less than 894? | CREATE TABLE table_name_83 (club VARCHAR, points_against VARCHAR, loses VARCHAR, wins VARCHAR) | SELECT club FROM table_name_83 WHERE loses > 1 AND wins = 4 AND points_against < 894 | ### Context: CREATE TABLE table_name_83 (club VARCHAR, points_against VARCHAR, loses VARCHAR, wins VARCHAR) ### Question: What club has losses greater than 1, 4 for the wins, with points against less than 894? ### Answer: SELECT club FROM table_name_83 WHERE loses > 1 AND wins = 4 AND points_against < 894 |
How many losses have points against greater than 592, with high park demons as the club, and points for greater than 631? | CREATE TABLE table_name_45 (loses VARCHAR, points_for VARCHAR, points_against VARCHAR, club VARCHAR) | SELECT COUNT(loses) FROM table_name_45 WHERE points_against > 592 AND club = "high park demons" AND points_for > 631 | ### Context: CREATE TABLE table_name_45 (loses VARCHAR, points_for VARCHAR, points_against VARCHAR, club VARCHAR) ### Question: How many losses have points against greater than 592, with high park demons as the club, and points for greater than 631? ### Answer: SELECT COUNT(loses) FROM table_name_45 WHERE points_against > 592 AND club = "high park demons" AND points_for > 631 |
What losses have points for less than 1175, wins greater than 2, points against greater than 894, and 24 as the points? | CREATE TABLE table_name_84 (loses VARCHAR, points VARCHAR, points_against VARCHAR, points_for VARCHAR, wins VARCHAR) | SELECT loses FROM table_name_84 WHERE points_for < 1175 AND wins > 2 AND points_against > 894 AND points = 24 | ### Context: CREATE TABLE table_name_84 (loses VARCHAR, points VARCHAR, points_against VARCHAR, points_for VARCHAR, wins VARCHAR) ### Question: What losses have points for less than 1175, wins greater than 2, points against greater than 894, and 24 as the points? ### Answer: SELECT loses FROM table_name_84 WHERE points_for < 1175 AND wins > 2 AND points_against > 894 AND points = 24 |
What's the smallest track written by dennis linde that's 2:50 minutes long | CREATE TABLE table_name_37 (track INTEGER, writer_s_ VARCHAR, time VARCHAR) | SELECT MIN(track) FROM table_name_37 WHERE writer_s_ = "dennis linde" AND time = "2:50" | ### Context: CREATE TABLE table_name_37 (track INTEGER, writer_s_ VARCHAR, time VARCHAR) ### Question: What's the smallest track written by dennis linde that's 2:50 minutes long ### Answer: SELECT MIN(track) FROM table_name_37 WHERE writer_s_ = "dennis linde" AND time = "2:50" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.