question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Who had a run 2 of 50.67? | CREATE TABLE table_name_67 (athlete VARCHAR, run_2 VARCHAR) | SELECT athlete FROM table_name_67 WHERE run_2 = 50.67 | ### Context: CREATE TABLE table_name_67 (athlete VARCHAR, run_2 VARCHAR) ### Question: Who had a run 2 of 50.67? ### Answer: SELECT athlete FROM table_name_67 WHERE run_2 = 50.67 |
What was john farrow's run 2 associated with a run 1 of greater than 52.25? | CREATE TABLE table_name_21 (run_2 INTEGER, run_1 VARCHAR, athlete VARCHAR) | SELECT MAX(run_2) FROM table_name_21 WHERE run_1 > 52.25 AND athlete = "john farrow" | ### Context: CREATE TABLE table_name_21 (run_2 INTEGER, run_1 VARCHAR, athlete VARCHAR) ### Question: What was john farrow's run 2 associated with a run 1 of greater than 52.25? ### Answer: SELECT MAX(run_2) FROM table_name_21 WHERE run_1 > 52.25 AND athlete = "john farrow" |
What was the Score in the game against the Buffalo Sabres? | CREATE TABLE table_name_83 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_83 WHERE opponent = "buffalo sabres" | ### Context: CREATE TABLE table_name_83 (score VARCHAR, opponent VARCHAR) ### Question: What was the Score in the game against the Buffalo Sabres? ### Answer: SELECT score FROM table_name_83 WHERE opponent = "buffalo sabres" |
Rank smaller than 4, and a Name of dalma iványi involved which lowest game? | CREATE TABLE table_name_9 (games INTEGER, rank VARCHAR, name VARCHAR) | SELECT MIN(games) FROM table_name_9 WHERE rank < 4 AND name = "dalma iványi" | ### Context: CREATE TABLE table_name_9 (games INTEGER, rank VARCHAR, name VARCHAR) ### Question: Rank smaller than 4, and a Name of dalma iványi involved which lowest game? ### Answer: SELECT MIN(games) FROM table_name_9 WHERE rank < 4 AND name = "dalma iványi" |
Name of sue bird that involves what team? | CREATE TABLE table_name_27 (team VARCHAR, name VARCHAR) | SELECT team FROM table_name_27 WHERE name = "sue bird" | ### Context: CREATE TABLE table_name_27 (team VARCHAR, name VARCHAR) ### Question: Name of sue bird that involves what team? ### Answer: SELECT team FROM table_name_27 WHERE name = "sue bird" |
Which episode was directed by Bob Anderson with a production code of KABF16 and a season before than 25? | CREATE TABLE table_name_16 (episode VARCHAR, production_code VARCHAR, season VARCHAR, directed_by VARCHAR) | SELECT episode FROM table_name_16 WHERE season < 25 AND directed_by = "bob anderson" AND production_code = "kabf16" | ### Context: CREATE TABLE table_name_16 (episode VARCHAR, production_code VARCHAR, season VARCHAR, directed_by VARCHAR) ### Question: Which episode was directed by Bob Anderson with a production code of KABF16 and a season before than 25? ### Answer: SELECT episode FROM table_name_16 WHERE season < 25 AND directed_by = "bob anderson" AND production_code = "kabf16" |
Who was the director of the episode with a season after 8 and an episode of XVI? | CREATE TABLE table_name_77 (directed_by VARCHAR, season VARCHAR, episode VARCHAR) | SELECT directed_by FROM table_name_77 WHERE season > 8 AND episode = "xvi" | ### Context: CREATE TABLE table_name_77 (directed_by VARCHAR, season VARCHAR, episode VARCHAR) ### Question: Who was the director of the episode with a season after 8 and an episode of XVI? ### Answer: SELECT directed_by FROM table_name_77 WHERE season > 8 AND episode = "xvi" |
Date of 7 september 1996 includes which highest rank athlete? | CREATE TABLE table_name_68 (rank INTEGER, date VARCHAR) | SELECT MAX(rank) FROM table_name_68 WHERE date = "7 september 1996" | ### Context: CREATE TABLE table_name_68 (rank INTEGER, date VARCHAR) ### Question: Date of 7 september 1996 includes which highest rank athlete? ### Answer: SELECT MAX(rank) FROM table_name_68 WHERE date = "7 september 1996" |
Time of 10.82 has what location? | CREATE TABLE table_name_84 (location VARCHAR, time VARCHAR) | SELECT location FROM table_name_84 WHERE time = 10.82 | ### Context: CREATE TABLE table_name_84 (location VARCHAR, time VARCHAR) ### Question: Time of 10.82 has what location? ### Answer: SELECT location FROM table_name_84 WHERE time = 10.82 |
Date of 10 july 2009 includes what athlete? | CREATE TABLE table_name_92 (athlete VARCHAR, date VARCHAR) | SELECT athlete FROM table_name_92 WHERE date = "10 july 2009" | ### Context: CREATE TABLE table_name_92 (athlete VARCHAR, date VARCHAR) ### Question: Date of 10 july 2009 includes what athlete? ### Answer: SELECT athlete FROM table_name_92 WHERE date = "10 july 2009" |
Rank smaller than 5, and a Time larger than 10.7, and a Date of 10 july 2009 has what location? | CREATE TABLE table_name_37 (location VARCHAR, date VARCHAR, rank VARCHAR, time VARCHAR) | SELECT location FROM table_name_37 WHERE rank < 5 AND time > 10.7 AND date = "10 july 2009" | ### Context: CREATE TABLE table_name_37 (location VARCHAR, date VARCHAR, rank VARCHAR, time VARCHAR) ### Question: Rank smaller than 5, and a Time larger than 10.7, and a Date of 10 july 2009 has what location? ### Answer: SELECT location FROM table_name_37 WHERE rank < 5 AND time > 10.7 AND date = "10 july 2009" |
Faith of rc, and a Opened larger than 1966 which has the highest DCSF number? | CREATE TABLE table_name_22 (dcsf_number INTEGER, faith VARCHAR, opened VARCHAR) | SELECT MAX(dcsf_number) FROM table_name_22 WHERE faith = "rc" AND opened > 1966 | ### Context: CREATE TABLE table_name_22 (dcsf_number INTEGER, faith VARCHAR, opened VARCHAR) ### Question: Faith of rc, and a Opened larger than 1966 which has the highest DCSF number? ### Answer: SELECT MAX(dcsf_number) FROM table_name_22 WHERE faith = "rc" AND opened > 1966 |
Faith of –, and a Name of greenway has what type? | CREATE TABLE table_name_79 (type VARCHAR, faith VARCHAR, name VARCHAR) | SELECT type FROM table_name_79 WHERE faith = "–" AND name = "greenway" | ### Context: CREATE TABLE table_name_79 (type VARCHAR, faith VARCHAR, name VARCHAR) ### Question: Faith of –, and a Name of greenway has what type? ### Answer: SELECT type FROM table_name_79 WHERE faith = "–" AND name = "greenway" |
Who was the opponent that played at Launceston Cricket Club Ground, launceston during the season of 1853/54? | CREATE TABLE table_name_47 (opponent VARCHAR, venue VARCHAR, season VARCHAR) | SELECT opponent FROM table_name_47 WHERE venue = "launceston cricket club ground, launceston" AND season = "1853/54" | ### Context: CREATE TABLE table_name_47 (opponent VARCHAR, venue VARCHAR, season VARCHAR) ### Question: Who was the opponent that played at Launceston Cricket Club Ground, launceston during the season of 1853/54? ### Answer: SELECT opponent FROM table_name_47 WHERE venue = "launceston cricket club ground, launceston" AND season = "1853/54" |
What was the rank of the team during season 2006/07? | CREATE TABLE table_name_92 (rank VARCHAR, season VARCHAR) | SELECT rank FROM table_name_92 WHERE season = "2006/07" | ### Context: CREATE TABLE table_name_92 (rank VARCHAR, season VARCHAR) ### Question: What was the rank of the team during season 2006/07? ### Answer: SELECT rank FROM table_name_92 WHERE season = "2006/07" |
What was the venue where there were 55 runs? | CREATE TABLE table_name_12 (venue VARCHAR, runs VARCHAR) | SELECT venue FROM table_name_12 WHERE runs = "55" | ### Context: CREATE TABLE table_name_12 (venue VARCHAR, runs VARCHAR) ### Question: What was the venue where there were 55 runs? ### Answer: SELECT venue FROM table_name_12 WHERE runs = "55" |
What was the venue where there were 62 runs? | CREATE TABLE table_name_97 (venue VARCHAR, runs VARCHAR) | SELECT venue FROM table_name_97 WHERE runs = "62" | ### Context: CREATE TABLE table_name_97 (venue VARCHAR, runs VARCHAR) ### Question: What was the venue where there were 62 runs? ### Answer: SELECT venue FROM table_name_97 WHERE runs = "62" |
Which driver had an accident and laps smaller than 53? | CREATE TABLE table_name_82 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR) | SELECT driver FROM table_name_82 WHERE laps < 53 AND time_retired = "accident" | ### Context: CREATE TABLE table_name_82 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR) ### Question: Which driver had an accident and laps smaller than 53? ### Answer: SELECT driver FROM table_name_82 WHERE laps < 53 AND time_retired = "accident" |
What language has a publication range from 1955–1999? | CREATE TABLE table_name_85 (language VARCHAR, publication_range VARCHAR) | SELECT language FROM table_name_85 WHERE publication_range = "1955–1999" | ### Context: CREATE TABLE table_name_85 (language VARCHAR, publication_range VARCHAR) ### Question: What language has a publication range from 1955–1999? ### Answer: SELECT language FROM table_name_85 WHERE publication_range = "1955–1999" |
What is the status for a journal with the ISSN of 0149-1830? | CREATE TABLE table_name_62 (status VARCHAR, issn VARCHAR) | SELECT status FROM table_name_62 WHERE issn = "0149-1830" | ### Context: CREATE TABLE table_name_62 (status VARCHAR, issn VARCHAR) ### Question: What is the status for a journal with the ISSN of 0149-1830? ### Answer: SELECT status FROM table_name_62 WHERE issn = "0149-1830" |
What is the language with a France publication range of 1992–2003? | CREATE TABLE table_name_65 (language VARCHAR, country VARCHAR, publication_range VARCHAR) | SELECT language FROM table_name_65 WHERE country = "france" AND publication_range = "1992–2003" | ### Context: CREATE TABLE table_name_65 (language VARCHAR, country VARCHAR, publication_range VARCHAR) ### Question: What is the language with a France publication range of 1992–2003? ### Answer: SELECT language FROM table_name_65 WHERE country = "france" AND publication_range = "1992–2003" |
What is the ISSN number of a publication range of 1984-? | CREATE TABLE table_name_36 (issn VARCHAR, publication_range VARCHAR) | SELECT issn FROM table_name_36 WHERE publication_range = "1984-" | ### Context: CREATE TABLE table_name_36 (issn VARCHAR, publication_range VARCHAR) ### Question: What is the ISSN number of a publication range of 1984-? ### Answer: SELECT issn FROM table_name_36 WHERE publication_range = "1984-" |
What is the language for a journal that has a frequency of 3 times per year and has an ISSN number of 1136-7385? | CREATE TABLE table_name_43 (language VARCHAR, frequency VARCHAR, issn VARCHAR) | SELECT language FROM table_name_43 WHERE frequency = "3 times per year" AND issn = "1136-7385" | ### Context: CREATE TABLE table_name_43 (language VARCHAR, frequency VARCHAR, issn VARCHAR) ### Question: What is the language for a journal that has a frequency of 3 times per year and has an ISSN number of 1136-7385? ### Answer: SELECT language FROM table_name_43 WHERE frequency = "3 times per year" AND issn = "1136-7385" |
What is the region 4 release that has july 20, 2009 as the region 2? | CREATE TABLE table_name_99 (region_4_release VARCHAR, region_2_release VARCHAR) | SELECT region_4_release FROM table_name_99 WHERE region_2_release = "july 20, 2009" | ### Context: CREATE TABLE table_name_99 (region_4_release VARCHAR, region_2_release VARCHAR) ### Question: What is the region 4 release that has july 20, 2009 as the region 2? ### Answer: SELECT region_4_release FROM table_name_99 WHERE region_2_release = "july 20, 2009" |
What is the region 1 release that has july 20, 2009 as the region 2? | CREATE TABLE table_name_39 (region_1_release VARCHAR, region_2_release VARCHAR) | SELECT region_1_release FROM table_name_39 WHERE region_2_release = "july 20, 2009" | ### Context: CREATE TABLE table_name_39 (region_1_release VARCHAR, region_2_release VARCHAR) ### Question: What is the region 1 release that has july 20, 2009 as the region 2? ### Answer: SELECT region_1_release FROM table_name_39 WHERE region_2_release = "july 20, 2009" |
What is the average episode that has September 11, 2007 as a region 1? | CREATE TABLE table_name_70 (episodes INTEGER, region_1_release VARCHAR) | SELECT AVG(episodes) FROM table_name_70 WHERE region_1_release = "september 11, 2007" | ### Context: CREATE TABLE table_name_70 (episodes INTEGER, region_1_release VARCHAR) ### Question: What is the average episode that has September 11, 2007 as a region 1? ### Answer: SELECT AVG(episodes) FROM table_name_70 WHERE region_1_release = "september 11, 2007" |
What is the scheduled value for the farm having a capacity under 32.5MW, type of Nordex n90 2.5MW, and a farm of Glenough Extension? | CREATE TABLE table_name_13 (scheduled VARCHAR, wind_farm VARCHAR, capacity__mw_ VARCHAR, type VARCHAR) | SELECT scheduled FROM table_name_13 WHERE capacity__mw_ < 32.5 AND type = "nordex n90 2.5mw" AND wind_farm = "glenough extension" | ### Context: CREATE TABLE table_name_13 (scheduled VARCHAR, wind_farm VARCHAR, capacity__mw_ VARCHAR, type VARCHAR) ### Question: What is the scheduled value for the farm having a capacity under 32.5MW, type of Nordex n90 2.5MW, and a farm of Glenough Extension? ### Answer: SELECT scheduled FROM table_name_13 WHERE capacity__mw_ < 32.5 AND type = "nordex n90 2.5mw" AND wind_farm = "glenough extension" |
What is the type of turbine having fewer than 17 units and located in County Laois? | CREATE TABLE table_name_65 (type VARCHAR, turbines VARCHAR, location VARCHAR) | SELECT type FROM table_name_65 WHERE turbines < 17 AND location = "county laois" | ### Context: CREATE TABLE table_name_65 (type VARCHAR, turbines VARCHAR, location VARCHAR) ### Question: What is the type of turbine having fewer than 17 units and located in County Laois? ### Answer: SELECT type FROM table_name_65 WHERE turbines < 17 AND location = "county laois" |
When is the scheduled date for the farm having 17 turbines? | CREATE TABLE table_name_96 (scheduled VARCHAR, turbines VARCHAR) | SELECT scheduled FROM table_name_96 WHERE turbines = 17 | ### Context: CREATE TABLE table_name_96 (scheduled VARCHAR, turbines VARCHAR) ### Question: When is the scheduled date for the farm having 17 turbines? ### Answer: SELECT scheduled FROM table_name_96 WHERE turbines = 17 |
What is the average capacity for the farm at Gortahile having more than 8 turbines? | CREATE TABLE table_name_84 (capacity__mw_ INTEGER, wind_farm VARCHAR, turbines VARCHAR) | SELECT AVG(capacity__mw_) FROM table_name_84 WHERE wind_farm = "gortahile" AND turbines > 8 | ### Context: CREATE TABLE table_name_84 (capacity__mw_ INTEGER, wind_farm VARCHAR, turbines VARCHAR) ### Question: What is the average capacity for the farm at Gortahile having more than 8 turbines? ### Answer: SELECT AVG(capacity__mw_) FROM table_name_84 WHERE wind_farm = "gortahile" AND turbines > 8 |
What is the title of the king who left office in 982 and entered office in 949? | CREATE TABLE table_name_64 (title VARCHAR, left_office VARCHAR, entered_office VARCHAR) | SELECT title FROM table_name_64 WHERE left_office = "982" AND entered_office = "949" | ### Context: CREATE TABLE table_name_64 (title VARCHAR, left_office VARCHAR, entered_office VARCHAR) ### Question: What is the title of the king who left office in 982 and entered office in 949? ### Answer: SELECT title FROM table_name_64 WHERE left_office = "982" AND entered_office = "949" |
When did the king who entered office in 1012 leave office? | CREATE TABLE table_name_34 (left_office VARCHAR, entered_office VARCHAR) | SELECT left_office FROM table_name_34 WHERE entered_office = "1012" | ### Context: CREATE TABLE table_name_34 (left_office VARCHAR, entered_office VARCHAR) ### Question: When did the king who entered office in 1012 leave office? ### Answer: SELECT left_office FROM table_name_34 WHERE entered_office = "1012" |
What are the family relations of the king with the throne name 303? | CREATE TABLE table_name_20 (family_relations VARCHAR, throne_name VARCHAR) | SELECT family_relations FROM table_name_20 WHERE throne_name = "303" | ### Context: CREATE TABLE table_name_20 (family_relations VARCHAR, throne_name VARCHAR) ### Question: What are the family relations of the king with the throne name 303? ### Answer: SELECT family_relations FROM table_name_20 WHERE throne_name = "303" |
What is teh born-died dates of the king with a throne name 315 and left office in 1021? | CREATE TABLE table_name_74 (born_died VARCHAR, left_office VARCHAR, throne_name VARCHAR) | SELECT born_died FROM table_name_74 WHERE left_office = "1021" AND throne_name = "315" | ### Context: CREATE TABLE table_name_74 (born_died VARCHAR, left_office VARCHAR, throne_name VARCHAR) ### Question: What is teh born-died dates of the king with a throne name 315 and left office in 1021? ### Answer: SELECT born_died FROM table_name_74 WHERE left_office = "1021" AND throne_name = "315" |
Which Opponents have a Partner of irina-camelia begu, and a Surface of hard? | CREATE TABLE table_name_15 (opponents VARCHAR, partner VARCHAR, surface VARCHAR) | SELECT opponents FROM table_name_15 WHERE partner = "irina-camelia begu" AND surface = "hard" | ### Context: CREATE TABLE table_name_15 (opponents VARCHAR, partner VARCHAR, surface VARCHAR) ### Question: Which Opponents have a Partner of irina-camelia begu, and a Surface of hard? ### Answer: SELECT opponents FROM table_name_15 WHERE partner = "irina-camelia begu" AND surface = "hard" |
Which Surface has a Partner of galina voskoboeva? | CREATE TABLE table_name_45 (surface VARCHAR, partner VARCHAR) | SELECT surface FROM table_name_45 WHERE partner = "galina voskoboeva" | ### Context: CREATE TABLE table_name_45 (surface VARCHAR, partner VARCHAR) ### Question: Which Surface has a Partner of galina voskoboeva? ### Answer: SELECT surface FROM table_name_45 WHERE partner = "galina voskoboeva" |
Which Opponents have a Surface of hard, and an Outcome of runner-up, and a Partner of jarmila gajdošová? | CREATE TABLE table_name_80 (opponents VARCHAR, partner VARCHAR, surface VARCHAR, outcome VARCHAR) | SELECT opponents FROM table_name_80 WHERE surface = "hard" AND outcome = "runner-up" AND partner = "jarmila gajdošová" | ### Context: CREATE TABLE table_name_80 (opponents VARCHAR, partner VARCHAR, surface VARCHAR, outcome VARCHAR) ### Question: Which Opponents have a Surface of hard, and an Outcome of runner-up, and a Partner of jarmila gajdošová? ### Answer: SELECT opponents FROM table_name_80 WHERE surface = "hard" AND outcome = "runner-up" AND partner = "jarmila gajdošová" |
Which Partner has a Date of 12 july 2009? | CREATE TABLE table_name_18 (partner VARCHAR, date VARCHAR) | SELECT partner FROM table_name_18 WHERE date = "12 july 2009" | ### Context: CREATE TABLE table_name_18 (partner VARCHAR, date VARCHAR) ### Question: Which Partner has a Date of 12 july 2009? ### Answer: SELECT partner FROM table_name_18 WHERE date = "12 july 2009" |
Which Surface has a Partner of sorana cîrstea? | CREATE TABLE table_name_93 (surface VARCHAR, partner VARCHAR) | SELECT surface FROM table_name_93 WHERE partner = "sorana cîrstea" | ### Context: CREATE TABLE table_name_93 (surface VARCHAR, partner VARCHAR) ### Question: Which Surface has a Partner of sorana cîrstea? ### Answer: SELECT surface FROM table_name_93 WHERE partner = "sorana cîrstea" |
Name the least overall with pick number more than 27 | CREATE TABLE table_name_56 (overall INTEGER, pick__number INTEGER) | SELECT MIN(overall) FROM table_name_56 WHERE pick__number > 27 | ### Context: CREATE TABLE table_name_56 (overall INTEGER, pick__number INTEGER) ### Question: Name the least overall with pick number more than 27 ### Answer: SELECT MIN(overall) FROM table_name_56 WHERE pick__number > 27 |
what's the first leg with gran canaria as team #2? | CREATE TABLE table_name_56 (team__number2 VARCHAR) | SELECT 1 AS st_leg FROM table_name_56 WHERE team__number2 = "gran canaria" | ### Context: CREATE TABLE table_name_56 (team__number2 VARCHAR) ### Question: what's the first leg with gran canaria as team #2? ### Answer: SELECT 1 AS st_leg FROM table_name_56 WHERE team__number2 = "gran canaria" |
with team #1 as lukoil academic what is team #2? | CREATE TABLE table_name_67 (team__number2 VARCHAR, team__number1 VARCHAR) | SELECT team__number2 FROM table_name_67 WHERE team__number1 = "lukoil academic" | ### Context: CREATE TABLE table_name_67 (team__number2 VARCHAR, team__number1 VARCHAR) ### Question: with team #1 as lukoil academic what is team #2? ### Answer: SELECT team__number2 FROM table_name_67 WHERE team__number1 = "lukoil academic" |
with team #2 as akasvayu girona what is team #1? | CREATE TABLE table_name_12 (team__number1 VARCHAR, team__number2 VARCHAR) | SELECT team__number1 FROM table_name_12 WHERE team__number2 = "akasvayu girona" | ### Context: CREATE TABLE table_name_12 (team__number1 VARCHAR, team__number2 VARCHAR) ### Question: with team #2 as akasvayu girona what is team #1? ### Answer: SELECT team__number1 FROM table_name_12 WHERE team__number2 = "akasvayu girona" |
Which virtue is acedia(Latin)? | CREATE TABLE table_name_13 (virtue VARCHAR, acedia VARCHAR, latin VARCHAR) | SELECT virtue FROM table_name_13 WHERE (latin) = acedia | ### Context: CREATE TABLE table_name_13 (virtue VARCHAR, acedia VARCHAR, latin VARCHAR) ### Question: Which virtue is acedia(Latin)? ### Answer: SELECT virtue FROM table_name_13 WHERE (latin) = acedia |
Which Virtue has a (vice) of lust? | CREATE TABLE table_name_31 (virtue VARCHAR, _vice_ VARCHAR) | SELECT virtue FROM table_name_31 WHERE _vice_ = "lust" | ### Context: CREATE TABLE table_name_31 (virtue VARCHAR, _vice_ VARCHAR) ### Question: Which Virtue has a (vice) of lust? ### Answer: SELECT virtue FROM table_name_31 WHERE _vice_ = "lust" |
Which virtue is Invidia(Latin)? | CREATE TABLE table_name_20 (virtue VARCHAR, invidia VARCHAR, latin VARCHAR) | SELECT virtue FROM table_name_20 WHERE (latin) = invidia | ### Context: CREATE TABLE table_name_20 (virtue VARCHAR, invidia VARCHAR, latin VARCHAR) ### Question: Which virtue is Invidia(Latin)? ### Answer: SELECT virtue FROM table_name_20 WHERE (latin) = invidia |
What's the gloss with Castitas(Latin)? | CREATE TABLE table_name_79 (gloss VARCHAR, latin VARCHAR) | SELECT gloss FROM table_name_79 WHERE latin = "castitas" | ### Context: CREATE TABLE table_name_79 (gloss VARCHAR, latin VARCHAR) ### Question: What's the gloss with Castitas(Latin)? ### Answer: SELECT gloss FROM table_name_79 WHERE latin = "castitas" |
What is the Diligence Virtues Gloss? | CREATE TABLE table_name_22 (gloss VARCHAR, virtue VARCHAR) | SELECT gloss FROM table_name_22 WHERE virtue = "diligence" | ### Context: CREATE TABLE table_name_22 (gloss VARCHAR, virtue VARCHAR) ### Question: What is the Diligence Virtues Gloss? ### Answer: SELECT gloss FROM table_name_22 WHERE virtue = "diligence" |
What is the Virtue of Temperance in Latin? | CREATE TABLE table_name_64 (latin VARCHAR, virtue VARCHAR) | SELECT latin FROM table_name_64 WHERE virtue = "temperance" | ### Context: CREATE TABLE table_name_64 (latin VARCHAR, virtue VARCHAR) ### Question: What is the Virtue of Temperance in Latin? ### Answer: SELECT latin FROM table_name_64 WHERE virtue = "temperance" |
In what year(s) did South Korea win silver? | CREATE TABLE table_name_14 (year VARCHAR, silver VARCHAR) | SELECT year FROM table_name_14 WHERE silver = "south korea" | ### Context: CREATE TABLE table_name_14 (year VARCHAR, silver VARCHAR) ### Question: In what year(s) did South Korea win silver? ### Answer: SELECT year FROM table_name_14 WHERE silver = "south korea" |
Which nation(s) won silver in Doha? | CREATE TABLE table_name_51 (silver VARCHAR, location VARCHAR) | SELECT silver FROM table_name_51 WHERE location = "doha" | ### Context: CREATE TABLE table_name_51 (silver VARCHAR, location VARCHAR) ### Question: Which nation(s) won silver in Doha? ### Answer: SELECT silver FROM table_name_51 WHERE location = "doha" |
What was the first year that South Korea won gold and Malaysia won bronze? | CREATE TABLE table_name_74 (year INTEGER, gold VARCHAR, bronze VARCHAR) | SELECT MIN(year) FROM table_name_74 WHERE gold = "south korea" AND bronze = "malaysia" | ### Context: CREATE TABLE table_name_74 (year INTEGER, gold VARCHAR, bronze VARCHAR) ### Question: What was the first year that South Korea won gold and Malaysia won bronze? ### Answer: SELECT MIN(year) FROM table_name_74 WHERE gold = "south korea" AND bronze = "malaysia" |
What country won gold in the year(s) that Chinese Taipei won bronze? | CREATE TABLE table_name_50 (gold VARCHAR, bronze VARCHAR) | SELECT gold FROM table_name_50 WHERE bronze = "chinese taipei" | ### Context: CREATE TABLE table_name_50 (gold VARCHAR, bronze VARCHAR) ### Question: What country won gold in the year(s) that Chinese Taipei won bronze? ### Answer: SELECT gold FROM table_name_50 WHERE bronze = "chinese taipei" |
Which European competitions have a Pos of 6? | CREATE TABLE table_name_85 (european_competitions VARCHAR, pos VARCHAR) | SELECT european_competitions FROM table_name_85 WHERE pos = 6 | ### Context: CREATE TABLE table_name_85 (european_competitions VARCHAR, pos VARCHAR) ### Question: Which European competitions have a Pos of 6? ### Answer: SELECT european_competitions FROM table_name_85 WHERE pos = 6 |
Which Pos has a Dutch Cup of winner, and a Tier larger than 1? | CREATE TABLE table_name_1 (pos INTEGER, dutch_cup VARCHAR, tier VARCHAR) | SELECT AVG(pos) FROM table_name_1 WHERE dutch_cup = "winner" AND tier > 1 | ### Context: CREATE TABLE table_name_1 (pos INTEGER, dutch_cup VARCHAR, tier VARCHAR) ### Question: Which Pos has a Dutch Cup of winner, and a Tier larger than 1? ### Answer: SELECT AVG(pos) FROM table_name_1 WHERE dutch_cup = "winner" AND tier > 1 |
What is the average Frequency MHz that is on farwell, texas? | CREATE TABLE table_name_72 (frequency_mhz INTEGER, city_of_license VARCHAR) | SELECT AVG(frequency_mhz) FROM table_name_72 WHERE city_of_license = "farwell, texas" | ### Context: CREATE TABLE table_name_72 (frequency_mhz INTEGER, city_of_license VARCHAR) ### Question: What is the average Frequency MHz that is on farwell, texas? ### Answer: SELECT AVG(frequency_mhz) FROM table_name_72 WHERE city_of_license = "farwell, texas" |
WHich City of license has a FCC info of fcc, and 10,000 horizontal 3,000 vertical ERP W | CREATE TABLE table_name_42 (city_of_license VARCHAR, fcc_info VARCHAR, erp_w VARCHAR) | SELECT city_of_license FROM table_name_42 WHERE fcc_info = "fcc" AND erp_w = "10,000 horizontal 3,000 vertical" | ### Context: CREATE TABLE table_name_42 (city_of_license VARCHAR, fcc_info VARCHAR, erp_w VARCHAR) ### Question: WHich City of license has a FCC info of fcc, and 10,000 horizontal 3,000 vertical ERP W ### Answer: SELECT city_of_license FROM table_name_42 WHERE fcc_info = "fcc" AND erp_w = "10,000 horizontal 3,000 vertical" |
WHich FCC info has 3,000 ERP W? | CREATE TABLE table_name_22 (fcc_info VARCHAR, erp_w VARCHAR) | SELECT fcc_info FROM table_name_22 WHERE erp_w = "3,000" | ### Context: CREATE TABLE table_name_22 (fcc_info VARCHAR, erp_w VARCHAR) ### Question: WHich FCC info has 3,000 ERP W? ### Answer: SELECT fcc_info FROM table_name_22 WHERE erp_w = "3,000" |
What's the average game against the New Jersey Devils with 19 points? | CREATE TABLE table_name_22 (game INTEGER, points VARCHAR, opponent VARCHAR) | SELECT AVG(game) FROM table_name_22 WHERE points = 19 AND opponent = "new jersey devils" | ### Context: CREATE TABLE table_name_22 (game INTEGER, points VARCHAR, opponent VARCHAR) ### Question: What's the average game against the New Jersey Devils with 19 points? ### Answer: SELECT AVG(game) FROM table_name_22 WHERE points = 19 AND opponent = "new jersey devils" |
Opponent of at boston patriots, and a Week larger than 3 had what average attendance? | CREATE TABLE table_name_54 (attendance INTEGER, opponent VARCHAR, week VARCHAR) | SELECT AVG(attendance) FROM table_name_54 WHERE opponent = "at boston patriots" AND week > 3 | ### Context: CREATE TABLE table_name_54 (attendance INTEGER, opponent VARCHAR, week VARCHAR) ### Question: Opponent of at boston patriots, and a Week larger than 3 had what average attendance? ### Answer: SELECT AVG(attendance) FROM table_name_54 WHERE opponent = "at boston patriots" AND week > 3 |
Name the average fall 07 for fall 07 more than 219 | CREATE TABLE table_name_34 (fall_07 INTEGER, fall_06 INTEGER) | SELECT AVG(fall_07) FROM table_name_34 WHERE fall_06 > 219 | ### Context: CREATE TABLE table_name_34 (fall_07 INTEGER, fall_06 INTEGER) ### Question: Name the average fall 07 for fall 07 more than 219 ### Answer: SELECT AVG(fall_07) FROM table_name_34 WHERE fall_06 > 219 |
Name the player for fc dallas pick number less than 3 | CREATE TABLE table_name_69 (player VARCHAR, pick__number VARCHAR, mls_team VARCHAR) | SELECT player FROM table_name_69 WHERE pick__number < 3 AND mls_team = "fc dallas" | ### Context: CREATE TABLE table_name_69 (player VARCHAR, pick__number VARCHAR, mls_team VARCHAR) ### Question: Name the player for fc dallas pick number less than 3 ### Answer: SELECT player FROM table_name_69 WHERE pick__number < 3 AND mls_team = "fc dallas" |
Name the most pick number for real salt lake and affiliation of ucla los angeles storm | CREATE TABLE table_name_63 (pick__number INTEGER, mls_team VARCHAR, affiliation VARCHAR) | SELECT MAX(pick__number) FROM table_name_63 WHERE mls_team = "real salt lake" AND affiliation = "ucla los angeles storm" | ### Context: CREATE TABLE table_name_63 (pick__number INTEGER, mls_team VARCHAR, affiliation VARCHAR) ### Question: Name the most pick number for real salt lake and affiliation of ucla los angeles storm ### Answer: SELECT MAX(pick__number) FROM table_name_63 WHERE mls_team = "real salt lake" AND affiliation = "ucla los angeles storm" |
Name the player with pick number of 7 | CREATE TABLE table_name_63 (player VARCHAR, pick__number VARCHAR) | SELECT player FROM table_name_63 WHERE pick__number = 7 | ### Context: CREATE TABLE table_name_63 (player VARCHAR, pick__number VARCHAR) ### Question: Name the player with pick number of 7 ### Answer: SELECT player FROM table_name_63 WHERE pick__number = 7 |
Which Game has a March smaller than 12, and a Score of 10–1? | CREATE TABLE table_name_10 (game INTEGER, march VARCHAR, score VARCHAR) | SELECT MIN(game) FROM table_name_10 WHERE march < 12 AND score = "10–1" | ### Context: CREATE TABLE table_name_10 (game INTEGER, march VARCHAR, score VARCHAR) ### Question: Which Game has a March smaller than 12, and a Score of 10–1? ### Answer: SELECT MIN(game) FROM table_name_10 WHERE march < 12 AND score = "10–1" |
Which Score has Points of 88, and a Record of 38–22–12? | CREATE TABLE table_name_84 (score VARCHAR, points VARCHAR, record VARCHAR) | SELECT score FROM table_name_84 WHERE points = 88 AND record = "38–22–12" | ### Context: CREATE TABLE table_name_84 (score VARCHAR, points VARCHAR, record VARCHAR) ### Question: Which Score has Points of 88, and a Record of 38–22–12? ### Answer: SELECT score FROM table_name_84 WHERE points = 88 AND record = "38–22–12" |
Which Game has an Opponent of detroit red wings, and a March smaller than 12? | CREATE TABLE table_name_13 (game VARCHAR, opponent VARCHAR, march VARCHAR) | SELECT COUNT(game) FROM table_name_13 WHERE opponent = "detroit red wings" AND march < 12 | ### Context: CREATE TABLE table_name_13 (game VARCHAR, opponent VARCHAR, march VARCHAR) ### Question: Which Game has an Opponent of detroit red wings, and a March smaller than 12? ### Answer: SELECT COUNT(game) FROM table_name_13 WHERE opponent = "detroit red wings" AND march < 12 |
Which Points have a Game smaller than 70, and a Score of 4–8? | CREATE TABLE table_name_85 (points INTEGER, game VARCHAR, score VARCHAR) | SELECT MIN(points) FROM table_name_85 WHERE game < 70 AND score = "4–8" | ### Context: CREATE TABLE table_name_85 (points INTEGER, game VARCHAR, score VARCHAR) ### Question: Which Points have a Game smaller than 70, and a Score of 4–8? ### Answer: SELECT MIN(points) FROM table_name_85 WHERE game < 70 AND score = "4–8" |
Which segment a's Netflix is S05E22? | CREATE TABLE table_name_86 (segment_a VARCHAR, netflix VARCHAR) | SELECT segment_a FROM table_name_86 WHERE netflix = "s05e22" | ### Context: CREATE TABLE table_name_86 (segment_a VARCHAR, netflix VARCHAR) ### Question: Which segment a's Netflix is S05E22? ### Answer: SELECT segment_a FROM table_name_86 WHERE netflix = "s05e22" |
Which series episode has a segment c that is Electric pole s transformer? | CREATE TABLE table_name_59 (series_ep VARCHAR, segment_c VARCHAR) | SELECT series_ep FROM table_name_59 WHERE segment_c = "electric pole s transformer" | ### Context: CREATE TABLE table_name_59 (series_ep VARCHAR, segment_c VARCHAR) ### Question: Which series episode has a segment c that is Electric pole s transformer? ### Answer: SELECT series_ep FROM table_name_59 WHERE segment_c = "electric pole s transformer" |
What largest episode number's Netflix is S05E23? | CREATE TABLE table_name_23 (episode INTEGER, netflix VARCHAR) | SELECT MAX(episode) FROM table_name_23 WHERE netflix = "s05e23" | ### Context: CREATE TABLE table_name_23 (episode INTEGER, netflix VARCHAR) ### Question: What largest episode number's Netflix is S05E23? ### Answer: SELECT MAX(episode) FROM table_name_23 WHERE netflix = "s05e23" |
Which segment c's segment b is refrigerators? | CREATE TABLE table_name_58 (segment_c VARCHAR, segment_b VARCHAR) | SELECT segment_c FROM table_name_58 WHERE segment_b = "refrigerators" | ### Context: CREATE TABLE table_name_58 (segment_c VARCHAR, segment_b VARCHAR) ### Question: Which segment c's segment b is refrigerators? ### Answer: SELECT segment_c FROM table_name_58 WHERE segment_b = "refrigerators" |
Which races did they accumulate at least 125 points? | CREATE TABLE table_name_38 (races VARCHAR, points VARCHAR) | SELECT races FROM table_name_38 WHERE points = "125" | ### Context: CREATE TABLE table_name_38 (races VARCHAR, points VARCHAR) ### Question: Which races did they accumulate at least 125 points? ### Answer: SELECT races FROM table_name_38 WHERE points = "125" |
Which Series has a Score of 3 – 8? | CREATE TABLE table_name_63 (series VARCHAR, score VARCHAR) | SELECT series FROM table_name_63 WHERE score = "3 – 8" | ### Context: CREATE TABLE table_name_63 (series VARCHAR, score VARCHAR) ### Question: Which Series has a Score of 3 – 8? ### Answer: SELECT series FROM table_name_63 WHERE score = "3 – 8" |
Which Date has a Decision of myre? | CREATE TABLE table_name_48 (date VARCHAR, decision VARCHAR) | SELECT date FROM table_name_48 WHERE decision = "myre" | ### Context: CREATE TABLE table_name_48 (date VARCHAR, decision VARCHAR) ### Question: Which Date has a Decision of myre? ### Answer: SELECT date FROM table_name_48 WHERE decision = "myre" |
How many Attendances on may 24? | CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR) | SELECT MIN(attendance) FROM table_name_75 WHERE date = "may 24" | ### Context: CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR) ### Question: How many Attendances on may 24? ### Answer: SELECT MIN(attendance) FROM table_name_75 WHERE date = "may 24" |
Which Series are on may 18? | CREATE TABLE table_name_86 (series VARCHAR, date VARCHAR) | SELECT series FROM table_name_86 WHERE date = "may 18" | ### Context: CREATE TABLE table_name_86 (series VARCHAR, date VARCHAR) ### Question: Which Series are on may 18? ### Answer: SELECT series FROM table_name_86 WHERE date = "may 18" |
How many Attendances that has a Visitor of philadelphia on may 20? | CREATE TABLE table_name_48 (attendance INTEGER, visitor VARCHAR, date VARCHAR) | SELECT AVG(attendance) FROM table_name_48 WHERE visitor = "philadelphia" AND date = "may 20" | ### Context: CREATE TABLE table_name_48 (attendance INTEGER, visitor VARCHAR, date VARCHAR) ### Question: How many Attendances that has a Visitor of philadelphia on may 20? ### Answer: SELECT AVG(attendance) FROM table_name_48 WHERE visitor = "philadelphia" AND date = "may 20" |
who is the Visitor that has a Series of series tied 2–2? | CREATE TABLE table_name_33 (visitor VARCHAR, series VARCHAR) | SELECT visitor FROM table_name_33 WHERE series = "series tied 2–2" | ### Context: CREATE TABLE table_name_33 (visitor VARCHAR, series VARCHAR) ### Question: who is the Visitor that has a Series of series tied 2–2? ### Answer: SELECT visitor FROM table_name_33 WHERE series = "series tied 2–2" |
How many Attendances have a Score of 4 – 5? Question 4 | CREATE TABLE table_name_88 (attendance INTEGER, score VARCHAR) | SELECT MAX(attendance) FROM table_name_88 WHERE score = "4 – 5" | ### Context: CREATE TABLE table_name_88 (attendance INTEGER, score VARCHAR) ### Question: How many Attendances have a Score of 4 – 5? Question 4 ### Answer: SELECT MAX(attendance) FROM table_name_88 WHERE score = "4 – 5" |
WHo has a Home of philadelphia and a Series of flyers lead 1–0? | CREATE TABLE table_name_54 (visitor VARCHAR, home VARCHAR, series VARCHAR) | SELECT visitor FROM table_name_54 WHERE home = "philadelphia" AND series = "flyers lead 1–0" | ### Context: CREATE TABLE table_name_54 (visitor VARCHAR, home VARCHAR, series VARCHAR) ### Question: WHo has a Home of philadelphia and a Series of flyers lead 1–0? ### Answer: SELECT visitor FROM table_name_54 WHERE home = "philadelphia" AND series = "flyers lead 1–0" |
What is the class of the Charlotte Camel gt 500 race? | CREATE TABLE table_name_76 (class VARCHAR, race VARCHAR) | SELECT class FROM table_name_76 WHERE race = "charlotte camel gt 500" | ### Context: CREATE TABLE table_name_76 (class VARCHAR, race VARCHAR) ### Question: What is the class of the Charlotte Camel gt 500 race? ### Answer: SELECT class FROM table_name_76 WHERE race = "charlotte camel gt 500" |
What is the race 12 hours in length? | CREATE TABLE table_name_20 (race VARCHAR, length VARCHAR) | SELECT race FROM table_name_20 WHERE length = "12 hours" | ### Context: CREATE TABLE table_name_20 (race VARCHAR, length VARCHAR) ### Question: What is the race 12 hours in length? ### Answer: SELECT race FROM table_name_20 WHERE length = "12 hours" |
What is the class of the Coca-cola classic 12 hours of sebring race? | CREATE TABLE table_name_35 (class VARCHAR, race VARCHAR) | SELECT class FROM table_name_35 WHERE race = "coca-cola classic 12 hours of sebring" | ### Context: CREATE TABLE table_name_35 (class VARCHAR, race VARCHAR) ### Question: What is the class of the Coca-cola classic 12 hours of sebring race? ### Answer: SELECT class FROM table_name_35 WHERE race = "coca-cola classic 12 hours of sebring" |
What is the class of the Budweiser Grand Prix of Miami race with a length of 3 hours? | CREATE TABLE table_name_13 (class VARCHAR, race VARCHAR, length VARCHAR) | SELECT class FROM table_name_13 WHERE race = "budweiser grand prix of miami" AND length = "3 hours" | ### Context: CREATE TABLE table_name_13 (class VARCHAR, race VARCHAR, length VARCHAR) ### Question: What is the class of the Budweiser Grand Prix of Miami race with a length of 3 hours? ### Answer: SELECT class FROM table_name_13 WHERE race = "budweiser grand prix of miami" AND length = "3 hours" |
What is the date of the Paul Revere 250 race in the Daytona International Speedway circuit? | CREATE TABLE table_name_66 (date VARCHAR, circuit VARCHAR, race VARCHAR) | SELECT date FROM table_name_66 WHERE circuit = "daytona international speedway" AND race = "paul revere 250" | ### Context: CREATE TABLE table_name_66 (date VARCHAR, circuit VARCHAR, race VARCHAR) ### Question: What is the date of the Paul Revere 250 race in the Daytona International Speedway circuit? ### Answer: SELECT date FROM table_name_66 WHERE circuit = "daytona international speedway" AND race = "paul revere 250" |
What race is 12 hours in length? | CREATE TABLE table_name_52 (race VARCHAR, length VARCHAR) | SELECT race FROM table_name_52 WHERE length = "12 hours" | ### Context: CREATE TABLE table_name_52 (race VARCHAR, length VARCHAR) ### Question: What race is 12 hours in length? ### Answer: SELECT race FROM table_name_52 WHERE length = "12 hours" |
What is the highest round for the pick from Finland? | CREATE TABLE table_name_55 (round INTEGER, nationality VARCHAR) | SELECT MAX(round) FROM table_name_55 WHERE nationality = "finland" | ### Context: CREATE TABLE table_name_55 (round INTEGER, nationality VARCHAR) ### Question: What is the highest round for the pick from Finland? ### Answer: SELECT MAX(round) FROM table_name_55 WHERE nationality = "finland" |
What is the total number of rounds that Joe Barnes was picked? | CREATE TABLE table_name_34 (round VARCHAR, player VARCHAR) | SELECT COUNT(round) FROM table_name_34 WHERE player = "joe barnes" | ### Context: CREATE TABLE table_name_34 (round VARCHAR, player VARCHAR) ### Question: What is the total number of rounds that Joe Barnes was picked? ### Answer: SELECT COUNT(round) FROM table_name_34 WHERE player = "joe barnes" |
What was the order of the Tokyo olympic games? | CREATE TABLE table_name_9 (order VARCHAR, olympic_games VARCHAR) | SELECT order FROM table_name_9 WHERE olympic_games = "tokyo" | ### Context: CREATE TABLE table_name_9 (order VARCHAR, olympic_games VARCHAR) ### Question: What was the order of the Tokyo olympic games? ### Answer: SELECT order FROM table_name_9 WHERE olympic_games = "tokyo" |
What was the 15th club in 2012? | CREATE TABLE table_name_46 (club VARCHAR, year VARCHAR, order VARCHAR) | SELECT club FROM table_name_46 WHERE year = 2012 AND order = "15th" | ### Context: CREATE TABLE table_name_46 (club VARCHAR, year VARCHAR, order VARCHAR) ### Question: What was the 15th club in 2012? ### Answer: SELECT club FROM table_name_46 WHERE year = 2012 AND order = "15th" |
What medal did Michael Conlon, with a weight of fly, win? | CREATE TABLE table_name_48 (medal VARCHAR, weight VARCHAR, boxer VARCHAR) | SELECT medal FROM table_name_48 WHERE weight = "fly" AND boxer = "michael conlon" | ### Context: CREATE TABLE table_name_48 (medal VARCHAR, weight VARCHAR, boxer VARCHAR) ### Question: What medal did Michael Conlon, with a weight of fly, win? ### Answer: SELECT medal FROM table_name_48 WHERE weight = "fly" AND boxer = "michael conlon" |
How many losses have more than 45,036 attendance? | CREATE TABLE table_name_50 (loss VARCHAR, attendance INTEGER) | SELECT loss FROM table_name_50 WHERE attendance > 45 OFFSET 036 | ### Context: CREATE TABLE table_name_50 (loss VARCHAR, attendance INTEGER) ### Question: How many losses have more than 45,036 attendance? ### Answer: SELECT loss FROM table_name_50 WHERE attendance > 45 OFFSET 036 |
on april 29, what was the attendance? | CREATE TABLE table_name_68 (attendance INTEGER, date VARCHAR) | SELECT SUM(attendance) FROM table_name_68 WHERE date = "april 29" | ### Context: CREATE TABLE table_name_68 (attendance INTEGER, date VARCHAR) ### Question: on april 29, what was the attendance? ### Answer: SELECT SUM(attendance) FROM table_name_68 WHERE date = "april 29" |
on april 9 what was the attendance? | CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR) | SELECT AVG(attendance) FROM table_name_40 WHERE date = "april 9" | ### Context: CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR) ### Question: on april 9 what was the attendance? ### Answer: SELECT AVG(attendance) FROM table_name_40 WHERE date = "april 9" |
What date has postponed (rain) rescheduled for august 7 as the score? | CREATE TABLE table_name_27 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_27 WHERE score = "postponed (rain) rescheduled for august 7" | ### Context: CREATE TABLE table_name_27 (date VARCHAR, score VARCHAR) ### Question: What date has postponed (rain) rescheduled for august 7 as the score? ### Answer: SELECT date FROM table_name_27 WHERE score = "postponed (rain) rescheduled for august 7" |
Failures larger than 0, and a Successes of 1 has what lowest partial failures? | CREATE TABLE table_name_64 (partial_failures INTEGER, failures VARCHAR, successes VARCHAR) | SELECT MIN(partial_failures) FROM table_name_64 WHERE failures > 0 AND successes = 1 | ### Context: CREATE TABLE table_name_64 (partial_failures INTEGER, failures VARCHAR, successes VARCHAR) ### Question: Failures larger than 0, and a Successes of 1 has what lowest partial failures? ### Answer: SELECT MIN(partial_failures) FROM table_name_64 WHERE failures > 0 AND successes = 1 |
Successes smaller than 6, and Launches larger than 1, and a Failures of 2 is what sum of the partial failures? | CREATE TABLE table_name_35 (partial_failures INTEGER, failures VARCHAR, successes VARCHAR, launches VARCHAR) | SELECT SUM(partial_failures) FROM table_name_35 WHERE successes < 6 AND launches > 1 AND failures = 2 | ### Context: CREATE TABLE table_name_35 (partial_failures INTEGER, failures VARCHAR, successes VARCHAR, launches VARCHAR) ### Question: Successes smaller than 6, and Launches larger than 1, and a Failures of 2 is what sum of the partial failures? ### Answer: SELECT SUM(partial_failures) FROM table_name_35 WHERE successes < 6 AND launches > 1 AND failures = 2 |
Who was the opposing team during a game in the Pontiac Silverdome? | CREATE TABLE table_name_89 (opponent VARCHAR, location VARCHAR) | SELECT opponent FROM table_name_89 WHERE location = "pontiac silverdome" | ### Context: CREATE TABLE table_name_89 (opponent VARCHAR, location VARCHAR) ### Question: Who was the opposing team during a game in the Pontiac Silverdome? ### Answer: SELECT opponent FROM table_name_89 WHERE location = "pontiac silverdome" |
What was the final score for the January 23 game? | CREATE TABLE table_name_23 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_23 WHERE date = "january 23" | ### Context: CREATE TABLE table_name_23 (score VARCHAR, date VARCHAR) ### Question: What was the final score for the January 23 game? ### Answer: SELECT score FROM table_name_23 WHERE date = "january 23" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.