question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What was the Category after 1991 with a Score of 7-5, 6-7, 6-2? | CREATE TABLE table_name_90 (category VARCHAR, year VARCHAR, score VARCHAR) | SELECT category FROM table_name_90 WHERE year > 1991 AND score = "7-5, 6-7, 6-2" | ### Context: CREATE TABLE table_name_90 (category VARCHAR, year VARCHAR, score VARCHAR) ### Question: What was the Category after 1991 with a Score of 7-5, 6-7, 6-2? ### Answer: SELECT category FROM table_name_90 WHERE year > 1991 AND score = "7-5, 6-7, 6-2" |
What was the issue date for the song by Paul Mccartney and Michael Jackson? | CREATE TABLE table_name_97 (issue_date_s_ VARCHAR, artist VARCHAR) | SELECT issue_date_s_ FROM table_name_97 WHERE artist = "paul mccartney and michael jackson" | ### Context: CREATE TABLE table_name_97 (issue_date_s_ VARCHAR, artist VARCHAR) ### Question: What was the issue date for the song by Paul Mccartney and Michael Jackson? ### Answer: SELECT issue_date_s_ FROM table_name_97 WHERE artist = "paul mccartney and michael jackson" |
What is the smallest number of seats with INC as an election winner and BJP incumbent? | CREATE TABLE table_name_57 (seats__acs_ INTEGER, election_winner VARCHAR, incumbent VARCHAR) | SELECT MIN(seats__acs_) FROM table_name_57 WHERE election_winner = "inc" AND incumbent = "bjp" | ### Context: CREATE TABLE table_name_57 (seats__acs_ INTEGER, election_winner VARCHAR, incumbent VARCHAR) ### Question: What is the smallest number of seats with INC as an election winner and BJP incumbent? ### Answer: SELECT MIN(seats__acs_) FROM table_name_57 WHERE election_winner = "inc" AND incumbent = "bjp" |
Who was the election winner with a BJP incumbent in Chhattisgarh? | CREATE TABLE table_name_77 (election_winner VARCHAR, incumbent VARCHAR, state VARCHAR) | SELECT election_winner FROM table_name_77 WHERE incumbent = "bjp" AND state = "chhattisgarh" | ### Context: CREATE TABLE table_name_77 (election_winner VARCHAR, incumbent VARCHAR, state VARCHAR) ### Question: Who was the election winner with a BJP incumbent in Chhattisgarh? ### Answer: SELECT election_winner FROM table_name_77 WHERE incumbent = "bjp" AND state = "chhattisgarh" |
Which country has an IATA of EVN? | CREATE TABLE table_name_8 (country VARCHAR, iata VARCHAR) | SELECT country FROM table_name_8 WHERE iata = "evn" | ### Context: CREATE TABLE table_name_8 (country VARCHAR, iata VARCHAR) ### Question: Which country has an IATA of EVN? ### Answer: SELECT country FROM table_name_8 WHERE iata = "evn" |
What is the name of the airport located in Russia with an IATA of AER? | CREATE TABLE table_name_34 (airport VARCHAR, country VARCHAR, iata VARCHAR) | SELECT airport FROM table_name_34 WHERE country = "russia" AND iata = "aer" | ### Context: CREATE TABLE table_name_34 (airport VARCHAR, country VARCHAR, iata VARCHAR) ### Question: What is the name of the airport located in Russia with an IATA of AER? ### Answer: SELECT airport FROM table_name_34 WHERE country = "russia" AND iata = "aer" |
What is the name of the airport located in Russia with an IATA of KRR? | CREATE TABLE table_name_30 (airport VARCHAR, country VARCHAR, iata VARCHAR) | SELECT airport FROM table_name_30 WHERE country = "russia" AND iata = "krr" | ### Context: CREATE TABLE table_name_30 (airport VARCHAR, country VARCHAR, iata VARCHAR) ### Question: What is the name of the airport located in Russia with an IATA of KRR? ### Answer: SELECT airport FROM table_name_30 WHERE country = "russia" AND iata = "krr" |
What is the name of the airport with an ICAO of ULLI? | CREATE TABLE table_name_40 (airport VARCHAR, icao VARCHAR) | SELECT airport FROM table_name_40 WHERE icao = "ulli" | ### Context: CREATE TABLE table_name_40 (airport VARCHAR, icao VARCHAR) ### Question: What is the name of the airport with an ICAO of ULLI? ### Answer: SELECT airport FROM table_name_40 WHERE icao = "ulli" |
What is the ICAO for the destination in Armenia? | CREATE TABLE table_name_80 (icao VARCHAR, country VARCHAR) | SELECT icao FROM table_name_80 WHERE country = "armenia" | ### Context: CREATE TABLE table_name_80 (icao VARCHAR, country VARCHAR) ### Question: What is the ICAO for the destination in Armenia? ### Answer: SELECT icao FROM table_name_80 WHERE country = "armenia" |
What is the name of the airport with an IATA of KUF? | CREATE TABLE table_name_68 (airport VARCHAR, iata VARCHAR) | SELECT airport FROM table_name_68 WHERE iata = "kuf" | ### Context: CREATE TABLE table_name_68 (airport VARCHAR, iata VARCHAR) ### Question: What is the name of the airport with an IATA of KUF? ### Answer: SELECT airport FROM table_name_68 WHERE iata = "kuf" |
What is the status of Author Del Corro? | CREATE TABLE table_name_84 (status VARCHAR, authors VARCHAR) | SELECT status FROM table_name_84 WHERE authors = "del corro" | ### Context: CREATE TABLE table_name_84 (status VARCHAR, authors VARCHAR) ### Question: What is the status of Author Del Corro? ### Answer: SELECT status FROM table_name_84 WHERE authors = "del corro" |
What is the location of the authors of Molnar? | CREATE TABLE table_name_65 (location VARCHAR, authors VARCHAR) | SELECT location FROM table_name_65 WHERE authors = "molnar" | ### Context: CREATE TABLE table_name_65 (location VARCHAR, authors VARCHAR) ### Question: What is the location of the authors of Molnar? ### Answer: SELECT location FROM table_name_65 WHERE authors = "molnar" |
What is the status of Prenocephale? | CREATE TABLE table_name_96 (status VARCHAR, name VARCHAR) | SELECT status FROM table_name_96 WHERE name = "prenocephale" | ### Context: CREATE TABLE table_name_96 (status VARCHAR, name VARCHAR) ### Question: What is the status of Prenocephale? ### Answer: SELECT status FROM table_name_96 WHERE name = "prenocephale" |
What is the novel that has a valid status, located in Mongolia, and named Prenocephale? | CREATE TABLE table_name_40 (novelty VARCHAR, name VARCHAR, status VARCHAR, location VARCHAR) | SELECT novelty FROM table_name_40 WHERE status = "valid" AND location = "mongolia" AND name = "prenocephale" | ### Context: CREATE TABLE table_name_40 (novelty VARCHAR, name VARCHAR, status VARCHAR, location VARCHAR) ### Question: What is the novel that has a valid status, located in Mongolia, and named Prenocephale? ### Answer: SELECT novelty FROM table_name_40 WHERE status = "valid" AND location = "mongolia" AND name = "prenocephale" |
What is the novelty of Tylocephale? | CREATE TABLE table_name_14 (novelty VARCHAR, name VARCHAR) | SELECT novelty FROM table_name_14 WHERE name = "tylocephale" | ### Context: CREATE TABLE table_name_14 (novelty VARCHAR, name VARCHAR) ### Question: What is the novelty of Tylocephale? ### Answer: SELECT novelty FROM table_name_14 WHERE name = "tylocephale" |
Which team 1 has vfl gummersbach as team 2? | CREATE TABLE table_name_13 (team_1 VARCHAR, team_2 VARCHAR) | SELECT team_1 FROM table_name_13 WHERE team_2 = "vfl gummersbach" | ### Context: CREATE TABLE table_name_13 (team_1 VARCHAR, team_2 VARCHAR) ### Question: Which team 1 has vfl gummersbach as team 2? ### Answer: SELECT team_1 FROM table_name_13 WHERE team_2 = "vfl gummersbach" |
Which team 1 has cbm valladolid as team 2? | CREATE TABLE table_name_75 (team_1 VARCHAR, team_2 VARCHAR) | SELECT team_1 FROM table_name_75 WHERE team_2 = "cbm valladolid" | ### Context: CREATE TABLE table_name_75 (team_1 VARCHAR, team_2 VARCHAR) ### Question: Which team 1 has cbm valladolid as team 2? ### Answer: SELECT team_1 FROM table_name_75 WHERE team_2 = "cbm valladolid" |
What 2nd leg has rk gold club kozina as team 1? | CREATE TABLE table_name_23 (team_1 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_23 WHERE team_1 = "rk gold club kozina" | ### Context: CREATE TABLE table_name_23 (team_1 VARCHAR) ### Question: What 2nd leg has rk gold club kozina as team 1? ### Answer: SELECT 2 AS nd_leg FROM table_name_23 WHERE team_1 = "rk gold club kozina" |
What 1st leg has 52-70 as the agg.? | CREATE TABLE table_name_8 (agg VARCHAR) | SELECT 1 AS st_leg FROM table_name_8 WHERE agg = "52-70" | ### Context: CREATE TABLE table_name_8 (agg VARCHAR) ### Question: What 1st leg has 52-70 as the agg.? ### Answer: SELECT 1 AS st_leg FROM table_name_8 WHERE agg = "52-70" |
What was the surface for October 10, 2004? | CREATE TABLE table_name_72 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_72 WHERE date = "october 10, 2004" | ### Context: CREATE TABLE table_name_72 (surface VARCHAR, date VARCHAR) ### Question: What was the surface for October 10, 2004? ### Answer: SELECT surface FROM table_name_72 WHERE date = "october 10, 2004" |
What was the surface for the opponent Roger Federer? | CREATE TABLE table_name_94 (surface VARCHAR, opponent VARCHAR) | SELECT surface FROM table_name_94 WHERE opponent = "roger federer" | ### Context: CREATE TABLE table_name_94 (surface VARCHAR, opponent VARCHAR) ### Question: What was the surface for the opponent Roger Federer? ### Answer: SELECT surface FROM table_name_94 WHERE opponent = "roger federer" |
How many years was the 400 m event in the olympic games? | CREATE TABLE table_name_28 (year VARCHAR, competition VARCHAR, event VARCHAR) | SELECT COUNT(year) FROM table_name_28 WHERE competition = "olympic games" AND event = "400 m" | ### Context: CREATE TABLE table_name_28 (year VARCHAR, competition VARCHAR, event VARCHAR) ### Question: How many years was the 400 m event in the olympic games? ### Answer: SELECT COUNT(year) FROM table_name_28 WHERE competition = "olympic games" AND event = "400 m" |
How many were in attendance of the game with l 26-21 result? | CREATE TABLE table_name_28 (attendance VARCHAR, result VARCHAR) | SELECT attendance FROM table_name_28 WHERE result = "l 26-21" | ### Context: CREATE TABLE table_name_28 (attendance VARCHAR, result VARCHAR) ### Question: How many were in attendance of the game with l 26-21 result? ### Answer: SELECT attendance FROM table_name_28 WHERE result = "l 26-21" |
Who is the opponent for the game with 37,845 people in attendance? | CREATE TABLE table_name_64 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_64 WHERE attendance = "37,845" | ### Context: CREATE TABLE table_name_64 (opponent VARCHAR, attendance VARCHAR) ### Question: Who is the opponent for the game with 37,845 people in attendance? ### Answer: SELECT opponent FROM table_name_64 WHERE attendance = "37,845" |
How many silver medals were there with 2 gold medals and more than 2 bronze medals? | CREATE TABLE table_name_11 (silver VARCHAR, gold VARCHAR, bronze VARCHAR) | SELECT silver FROM table_name_11 WHERE gold = 2 AND bronze > 2 | ### Context: CREATE TABLE table_name_11 (silver VARCHAR, gold VARCHAR, bronze VARCHAR) ### Question: How many silver medals were there with 2 gold medals and more than 2 bronze medals? ### Answer: SELECT silver FROM table_name_11 WHERE gold = 2 AND bronze > 2 |
What is the smallest total number of medals for rank 11 and more than 0 silver medals? | CREATE TABLE table_name_25 (total INTEGER, rank VARCHAR, silver VARCHAR) | SELECT MIN(total) FROM table_name_25 WHERE rank = "11" AND silver > 0 | ### Context: CREATE TABLE table_name_25 (total INTEGER, rank VARCHAR, silver VARCHAR) ### Question: What is the smallest total number of medals for rank 11 and more than 0 silver medals? ### Answer: SELECT MIN(total) FROM table_name_25 WHERE rank = "11" AND silver > 0 |
What is the sum of all total medals with more than 2 bronze medals and more than 1 gold medal for the United States? | CREATE TABLE table_name_27 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR) | SELECT SUM(total) FROM table_name_27 WHERE bronze > 2 AND nation = "united states" AND gold > 1 | ### Context: CREATE TABLE table_name_27 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR) ### Question: What is the sum of all total medals with more than 2 bronze medals and more than 1 gold medal for the United States? ### Answer: SELECT SUM(total) FROM table_name_27 WHERE bronze > 2 AND nation = "united states" AND gold > 1 |
What is the largest number of gold medals for Canada with more than 7 bronze medals? | CREATE TABLE table_name_31 (gold INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT MAX(gold) FROM table_name_31 WHERE nation = "canada" AND bronze > 7 | ### Context: CREATE TABLE table_name_31 (gold INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: What is the largest number of gold medals for Canada with more than 7 bronze medals? ### Answer: SELECT MAX(gold) FROM table_name_31 WHERE nation = "canada" AND bronze > 7 |
What is the sum of all silver medals with less than 23 medals in total and more than 3 bronze medals for the United States? | CREATE TABLE table_name_21 (silver INTEGER, bronze VARCHAR, total VARCHAR, nation VARCHAR) | SELECT SUM(silver) FROM table_name_21 WHERE total < 23 AND nation = "united states" AND bronze > 3 | ### Context: CREATE TABLE table_name_21 (silver INTEGER, bronze VARCHAR, total VARCHAR, nation VARCHAR) ### Question: What is the sum of all silver medals with less than 23 medals in total and more than 3 bronze medals for the United States? ### Answer: SELECT SUM(silver) FROM table_name_21 WHERE total < 23 AND nation = "united states" AND bronze > 3 |
When was Steve Williams in Zurich and his result was 10.07? | CREATE TABLE table_name_28 (date VARCHAR, location VARCHAR, result VARCHAR) | SELECT date FROM table_name_28 WHERE location = "zurich" AND result = 10.07 | ### Context: CREATE TABLE table_name_28 (date VARCHAR, location VARCHAR, result VARCHAR) ### Question: When was Steve Williams in Zurich and his result was 10.07? ### Answer: SELECT date FROM table_name_28 WHERE location = "zurich" AND result = 10.07 |
What is the largest number lost with 0 draws and less than 12 points for Gwardia Katowice? | CREATE TABLE table_name_81 (lost INTEGER, points VARCHAR, draw VARCHAR, team VARCHAR) | SELECT MAX(lost) FROM table_name_81 WHERE draw = 0 AND team = "gwardia katowice" AND points < 12 | ### Context: CREATE TABLE table_name_81 (lost INTEGER, points VARCHAR, draw VARCHAR, team VARCHAR) ### Question: What is the largest number lost with 0 draws and less than 12 points for Gwardia Katowice? ### Answer: SELECT MAX(lost) FROM table_name_81 WHERE draw = 0 AND team = "gwardia katowice" AND points < 12 |
What is the highest number of draws with 6 losses and less than 15 points? | CREATE TABLE table_name_94 (draw INTEGER, lost VARCHAR, points VARCHAR) | SELECT MAX(draw) FROM table_name_94 WHERE lost = 6 AND points < 15 | ### Context: CREATE TABLE table_name_94 (draw INTEGER, lost VARCHAR, points VARCHAR) ### Question: What is the highest number of draws with 6 losses and less than 15 points? ### Answer: SELECT MAX(draw) FROM table_name_94 WHERE lost = 6 AND points < 15 |
How many draws correspond to more than 11 losses in a match less than 14? | CREATE TABLE table_name_36 (draw VARCHAR, lost VARCHAR, match VARCHAR) | SELECT COUNT(draw) FROM table_name_36 WHERE lost > 11 AND match < 14 | ### Context: CREATE TABLE table_name_36 (draw VARCHAR, lost VARCHAR, match VARCHAR) ### Question: How many draws correspond to more than 11 losses in a match less than 14? ### Answer: SELECT COUNT(draw) FROM table_name_36 WHERE lost > 11 AND match < 14 |
What is the Director of Children of Sarajevo? | CREATE TABLE table_name_39 (director VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT director FROM table_name_39 WHERE film_title_used_in_nomination = "children of sarajevo" | ### Context: CREATE TABLE table_name_39 (director VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: What is the Director of Children of Sarajevo? ### Answer: SELECT director FROM table_name_39 WHERE film_title_used_in_nomination = "children of sarajevo" |
What is the Result of the 2010 (83rd) Ceremony? | CREATE TABLE table_name_11 (result VARCHAR, year__ceremony_ VARCHAR) | SELECT result FROM table_name_11 WHERE year__ceremony_ = "2010 (83rd)" | ### Context: CREATE TABLE table_name_11 (result VARCHAR, year__ceremony_ VARCHAR) ### Question: What is the Result of the 2010 (83rd) Ceremony? ### Answer: SELECT result FROM table_name_11 WHERE year__ceremony_ = "2010 (83rd)" |
What is the Result of the 2013 (86th) Ceremony? | CREATE TABLE table_name_77 (result VARCHAR, year__ceremony_ VARCHAR) | SELECT result FROM table_name_77 WHERE year__ceremony_ = "2013 (86th)" | ### Context: CREATE TABLE table_name_77 (result VARCHAR, year__ceremony_ VARCHAR) ### Question: What is the Result of the 2013 (86th) Ceremony? ### Answer: SELECT result FROM table_name_77 WHERE year__ceremony_ = "2013 (86th)" |
What is the Original title of Children of Sarajevo? | CREATE TABLE table_name_42 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT original_title FROM table_name_42 WHERE film_title_used_in_nomination = "children of sarajevo" | ### Context: CREATE TABLE table_name_42 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: What is the Original title of Children of Sarajevo? ### Answer: SELECT original_title FROM table_name_42 WHERE film_title_used_in_nomination = "children of sarajevo" |
In the 2012 (85th) Ceremony, what was the Original title of the film not nominated? | CREATE TABLE table_name_66 (original_title VARCHAR, result VARCHAR, year__ceremony_ VARCHAR) | SELECT original_title FROM table_name_66 WHERE result = "not nominated" AND year__ceremony_ = "2012 (85th)" | ### Context: CREATE TABLE table_name_66 (original_title VARCHAR, result VARCHAR, year__ceremony_ VARCHAR) ### Question: In the 2012 (85th) Ceremony, what was the Original title of the film not nominated? ### Answer: SELECT original_title FROM table_name_66 WHERE result = "not nominated" AND year__ceremony_ = "2012 (85th)" |
What is the lowest draw number for the song ranked 6th with more than 43 points? | CREATE TABLE table_name_22 (draw INTEGER, points VARCHAR, rank VARCHAR) | SELECT MIN(draw) FROM table_name_22 WHERE points > 43 AND rank = "6th" | ### Context: CREATE TABLE table_name_22 (draw INTEGER, points VARCHAR, rank VARCHAR) ### Question: What is the lowest draw number for the song ranked 6th with more than 43 points? ### Answer: SELECT MIN(draw) FROM table_name_22 WHERE points > 43 AND rank = "6th" |
What is the total sum of points for songs performed by Partners in Crime? | CREATE TABLE table_name_16 (points INTEGER, performer VARCHAR) | SELECT SUM(points) FROM table_name_16 WHERE performer = "partners in crime" | ### Context: CREATE TABLE table_name_16 (points INTEGER, performer VARCHAR) ### Question: What is the total sum of points for songs performed by Partners in Crime? ### Answer: SELECT SUM(points) FROM table_name_16 WHERE performer = "partners in crime" |
What is the class of facility ID 150935? | CREATE TABLE table_name_21 (class VARCHAR, facility_id VARCHAR) | SELECT class FROM table_name_21 WHERE facility_id = 150935 | ### Context: CREATE TABLE table_name_21 (class VARCHAR, facility_id VARCHAR) ### Question: What is the class of facility ID 150935? ### Answer: SELECT class FROM table_name_21 WHERE facility_id = 150935 |
Which city has a facility ID greater than 150833? | CREATE TABLE table_name_17 (city_of_license VARCHAR, facility_id INTEGER) | SELECT city_of_license FROM table_name_17 WHERE facility_id > 150833 | ### Context: CREATE TABLE table_name_17 (city_of_license VARCHAR, facility_id INTEGER) ### Question: Which city has a facility ID greater than 150833? ### Answer: SELECT city_of_license FROM table_name_17 WHERE facility_id > 150833 |
What position does the player from the Toronto Argonauts play? | CREATE TABLE table_name_99 (position VARCHAR, cfl_team VARCHAR) | SELECT position FROM table_name_99 WHERE cfl_team = "toronto argonauts" | ### Context: CREATE TABLE table_name_99 (position VARCHAR, cfl_team VARCHAR) ### Question: What position does the player from the Toronto Argonauts play? ### Answer: SELECT position FROM table_name_99 WHERE cfl_team = "toronto argonauts" |
What was the 1st leg for Team 2 Concepto Egile? | CREATE TABLE table_name_88 (team_2 VARCHAR) | SELECT 1 AS st_leg FROM table_name_88 WHERE team_2 = "concepto egile" | ### Context: CREATE TABLE table_name_88 (team_2 VARCHAR) ### Question: What was the 1st leg for Team 2 Concepto Egile? ### Answer: SELECT 1 AS st_leg FROM table_name_88 WHERE team_2 = "concepto egile" |
Which team 1 has team 2, Gomera? | CREATE TABLE table_name_54 (team_1 VARCHAR, team_2 VARCHAR) | SELECT team_1 FROM table_name_54 WHERE team_2 = "gomera" | ### Context: CREATE TABLE table_name_54 (team_1 VARCHAR, team_2 VARCHAR) ### Question: Which team 1 has team 2, Gomera? ### Answer: SELECT team_1 FROM table_name_54 WHERE team_2 = "gomera" |
What public team was founded prior to 1883? | CREATE TABLE table_name_45 (team VARCHAR, founded VARCHAR, type VARCHAR) | SELECT team FROM table_name_45 WHERE founded < 1883 AND type = "public" | ### Context: CREATE TABLE table_name_45 (team VARCHAR, founded VARCHAR, type VARCHAR) ### Question: What public team was founded prior to 1883? ### Answer: SELECT team FROM table_name_45 WHERE founded < 1883 AND type = "public" |
Who has exactly 342 spikes? | CREATE TABLE table_name_68 (name VARCHAR, spike VARCHAR) | SELECT name FROM table_name_68 WHERE spike = 342 | ### Context: CREATE TABLE table_name_68 (name VARCHAR, spike VARCHAR) ### Question: Who has exactly 342 spikes? ### Answer: SELECT name FROM table_name_68 WHERE spike = 342 |
What is the smallest number of spikes for players with a weight of 83 and height over 190? | CREATE TABLE table_name_69 (spike INTEGER, weight VARCHAR, height VARCHAR) | SELECT MIN(spike) FROM table_name_69 WHERE weight = 83 AND height > 190 | ### Context: CREATE TABLE table_name_69 (spike INTEGER, weight VARCHAR, height VARCHAR) ### Question: What is the smallest number of spikes for players with a weight of 83 and height over 190? ### Answer: SELECT MIN(spike) FROM table_name_69 WHERE weight = 83 AND height > 190 |
What is Class, when Power is 78 Watts? | CREATE TABLE table_name_15 (class VARCHAR, power VARCHAR) | SELECT class FROM table_name_15 WHERE power = "78 watts" | ### Context: CREATE TABLE table_name_15 (class VARCHAR, power VARCHAR) ### Question: What is Class, when Power is 78 Watts? ### Answer: SELECT class FROM table_name_15 WHERE power = "78 watts" |
What is Power, when Identifier is CBEB-FM? | CREATE TABLE table_name_48 (power VARCHAR, identifier VARCHAR) | SELECT power FROM table_name_48 WHERE identifier = "cbeb-fm" | ### Context: CREATE TABLE table_name_48 (power VARCHAR, identifier VARCHAR) ### Question: What is Power, when Identifier is CBEB-FM? ### Answer: SELECT power FROM table_name_48 WHERE identifier = "cbeb-fm" |
What is Identifier, when City of License is Terrace Bay? | CREATE TABLE table_name_26 (identifier VARCHAR, city_of_license VARCHAR) | SELECT identifier FROM table_name_26 WHERE city_of_license = "terrace bay" | ### Context: CREATE TABLE table_name_26 (identifier VARCHAR, city_of_license VARCHAR) ### Question: What is Identifier, when City of License is Terrace Bay? ### Answer: SELECT identifier FROM table_name_26 WHERE city_of_license = "terrace bay" |
What is Power, when City of License is Sioux Lookout? | CREATE TABLE table_name_93 (power VARCHAR, city_of_license VARCHAR) | SELECT power FROM table_name_93 WHERE city_of_license = "sioux lookout" | ### Context: CREATE TABLE table_name_93 (power VARCHAR, city_of_license VARCHAR) ### Question: What is Power, when City of License is Sioux Lookout? ### Answer: SELECT power FROM table_name_93 WHERE city_of_license = "sioux lookout" |
What is Identifier, when City of License is Hornepayne? | CREATE TABLE table_name_55 (identifier VARCHAR, city_of_license VARCHAR) | SELECT identifier FROM table_name_55 WHERE city_of_license = "hornepayne" | ### Context: CREATE TABLE table_name_55 (identifier VARCHAR, city_of_license VARCHAR) ### Question: What is Identifier, when City of License is Hornepayne? ### Answer: SELECT identifier FROM table_name_55 WHERE city_of_license = "hornepayne" |
What is City of License, when Frequency is 101.1? | CREATE TABLE table_name_20 (city_of_license VARCHAR, frequency VARCHAR) | SELECT city_of_license FROM table_name_20 WHERE frequency = "101.1" | ### Context: CREATE TABLE table_name_20 (city_of_license VARCHAR, frequency VARCHAR) ### Question: What is City of License, when Frequency is 101.1? ### Answer: SELECT city_of_license FROM table_name_20 WHERE frequency = "101.1" |
Which LE-5 Model has an LE-5A of 130? | CREATE TABLE table_name_2 (le_5_model VARCHAR, le_5A VARCHAR) | SELECT le_5_model FROM table_name_2 WHERE le_5A = 130 | ### Context: CREATE TABLE table_name_2 (le_5_model VARCHAR, le_5A VARCHAR) ### Question: Which LE-5 Model has an LE-5A of 130? ### Answer: SELECT le_5_model FROM table_name_2 WHERE le_5A = 130 |
What Series had 14 races and 12th position? | CREATE TABLE table_name_11 (series VARCHAR, races VARCHAR, position VARCHAR) | SELECT series FROM table_name_11 WHERE races = 14 AND position = "12th" | ### Context: CREATE TABLE table_name_11 (series VARCHAR, races VARCHAR, position VARCHAR) ### Question: What Series had 14 races and 12th position? ### Answer: SELECT series FROM table_name_11 WHERE races = 14 AND position = "12th" |
What season was the Formula BMW USA in? | CREATE TABLE table_name_87 (season VARCHAR, series VARCHAR) | SELECT season FROM table_name_87 WHERE series = "formula bmw usa" | ### Context: CREATE TABLE table_name_87 (season VARCHAR, series VARCHAR) ### Question: What season was the Formula BMW USA in? ### Answer: SELECT season FROM table_name_87 WHERE series = "formula bmw usa" |
What series had more than 10 Podiums? | CREATE TABLE table_name_73 (series VARCHAR, podiums INTEGER) | SELECT series FROM table_name_73 WHERE podiums > 10 | ### Context: CREATE TABLE table_name_73 (series VARCHAR, podiums INTEGER) ### Question: What series had more than 10 Podiums? ### Answer: SELECT series FROM table_name_73 WHERE podiums > 10 |
What is the Status with an Author that is colbert? | CREATE TABLE table_name_25 (status VARCHAR, authors VARCHAR) | SELECT status FROM table_name_25 WHERE authors = "colbert" | ### Context: CREATE TABLE table_name_25 (status VARCHAR, authors VARCHAR) ### Question: What is the Status with an Author that is colbert? ### Answer: SELECT status FROM table_name_25 WHERE authors = "colbert" |
What college was the draft pick number larger than 18 that went to the Barangay ginebra kings? | CREATE TABLE table_name_78 (college VARCHAR, pick VARCHAR, pba_team VARCHAR) | SELECT college FROM table_name_78 WHERE pick > 18 AND pba_team = "barangay ginebra kings" | ### Context: CREATE TABLE table_name_78 (college VARCHAR, pick VARCHAR, pba_team VARCHAR) ### Question: What college was the draft pick number larger than 18 that went to the Barangay ginebra kings? ### Answer: SELECT college FROM table_name_78 WHERE pick > 18 AND pba_team = "barangay ginebra kings" |
What is the sum of the pick numbers for the player that went to San Miguel Beermen who played at San Sebastian? | CREATE TABLE table_name_36 (pick INTEGER, pba_team VARCHAR, college VARCHAR) | SELECT SUM(pick) FROM table_name_36 WHERE pba_team = "san miguel beermen" AND college = "san sebastian" | ### Context: CREATE TABLE table_name_36 (pick INTEGER, pba_team VARCHAR, college VARCHAR) ### Question: What is the sum of the pick numbers for the player that went to San Miguel Beermen who played at San Sebastian? ### Answer: SELECT SUM(pick) FROM table_name_36 WHERE pba_team = "san miguel beermen" AND college = "san sebastian" |
What is the total number of picks for PBA team san miguel beermen who picked rommel daep? | CREATE TABLE table_name_26 (pick VARCHAR, pba_team VARCHAR, player VARCHAR) | SELECT COUNT(pick) FROM table_name_26 WHERE pba_team = "san miguel beermen" AND player = "rommel daep" | ### Context: CREATE TABLE table_name_26 (pick VARCHAR, pba_team VARCHAR, player VARCHAR) ### Question: What is the total number of picks for PBA team san miguel beermen who picked rommel daep? ### Answer: SELECT COUNT(pick) FROM table_name_26 WHERE pba_team = "san miguel beermen" AND player = "rommel daep" |
Who won after 1999 with changwon lg sakers as runners-up? | CREATE TABLE table_name_47 (champions VARCHAR, year VARCHAR, runners_up VARCHAR) | SELECT champions FROM table_name_47 WHERE year > 1999 AND runners_up = "changwon lg sakers" | ### Context: CREATE TABLE table_name_47 (champions VARCHAR, year VARCHAR, runners_up VARCHAR) ### Question: Who won after 1999 with changwon lg sakers as runners-up? ### Answer: SELECT champions FROM table_name_47 WHERE year > 1999 AND runners_up = "changwon lg sakers" |
What is the result for the champions jeonju kcc egis with runners-up seoul samsung thunders after 2007? | CREATE TABLE table_name_39 (result VARCHAR, champions VARCHAR, year VARCHAR, runners_up VARCHAR) | SELECT result FROM table_name_39 WHERE year > 2007 AND runners_up = "seoul samsung thunders" AND champions = "jeonju kcc egis" | ### Context: CREATE TABLE table_name_39 (result VARCHAR, champions VARCHAR, year VARCHAR, runners_up VARCHAR) ### Question: What is the result for the champions jeonju kcc egis with runners-up seoul samsung thunders after 2007? ### Answer: SELECT result FROM table_name_39 WHERE year > 2007 AND runners_up = "seoul samsung thunders" AND champions = "jeonju kcc egis" |
What was the winning team in 2013? | CREATE TABLE table_name_74 (winning_team VARCHAR, year VARCHAR) | SELECT winning_team FROM table_name_74 WHERE year = 2013 | ### Context: CREATE TABLE table_name_74 (winning_team VARCHAR, year VARCHAR) ### Question: What was the winning team in 2013? ### Answer: SELECT winning_team FROM table_name_74 WHERE year = 2013 |
What is the highest year that Europe won, when the USA's Captain was Kathy Whitworth? | CREATE TABLE table_name_93 (year INTEGER, winning_team VARCHAR, usa_captain VARCHAR) | SELECT MAX(year) FROM table_name_93 WHERE winning_team = "europe" AND usa_captain = "kathy whitworth" | ### Context: CREATE TABLE table_name_93 (year INTEGER, winning_team VARCHAR, usa_captain VARCHAR) ### Question: What is the highest year that Europe won, when the USA's Captain was Kathy Whitworth? ### Answer: SELECT MAX(year) FROM table_name_93 WHERE winning_team = "europe" AND usa_captain = "kathy whitworth" |
When the USA's captain was Beth Daniel, who was the winning team? | CREATE TABLE table_name_99 (winning_team VARCHAR, usa_captain VARCHAR) | SELECT winning_team FROM table_name_99 WHERE usa_captain = "beth daniel" | ### Context: CREATE TABLE table_name_99 (winning_team VARCHAR, usa_captain VARCHAR) ### Question: When the USA's captain was Beth Daniel, who was the winning team? ### Answer: SELECT winning_team FROM table_name_99 WHERE usa_captain = "beth daniel" |
What is the Season when league shows bundesliga, and a European competition of played korac cup? | CREATE TABLE table_name_25 (season VARCHAR, league VARCHAR, european_competitions VARCHAR) | SELECT season FROM table_name_25 WHERE league = "bundesliga" AND european_competitions = "played korac cup" | ### Context: CREATE TABLE table_name_25 (season VARCHAR, league VARCHAR, european_competitions VARCHAR) ### Question: What is the Season when league shows bundesliga, and a European competition of played korac cup? ### Answer: SELECT season FROM table_name_25 WHERE league = "bundesliga" AND european_competitions = "played korac cup" |
What is the average Tier when the postseason shows -, and the season is 2012–13? | CREATE TABLE table_name_56 (tier INTEGER, postseason VARCHAR, season VARCHAR) | SELECT AVG(tier) FROM table_name_56 WHERE postseason = "–" AND season = "2012–13" | ### Context: CREATE TABLE table_name_56 (tier INTEGER, postseason VARCHAR, season VARCHAR) ### Question: What is the average Tier when the postseason shows -, and the season is 2012–13? ### Answer: SELECT AVG(tier) FROM table_name_56 WHERE postseason = "–" AND season = "2012–13" |
What is the European competition when the tier is more than 2? | CREATE TABLE table_name_33 (european_competitions VARCHAR, tier INTEGER) | SELECT european_competitions FROM table_name_33 WHERE tier > 2 | ### Context: CREATE TABLE table_name_33 (european_competitions VARCHAR, tier INTEGER) ### Question: What is the European competition when the tier is more than 2? ### Answer: SELECT european_competitions FROM table_name_33 WHERE tier > 2 |
What was the outcome of the match played on grass? | CREATE TABLE table_name_64 (outcome VARCHAR, surface VARCHAR) | SELECT outcome FROM table_name_64 WHERE surface = "grass" | ### Context: CREATE TABLE table_name_64 (outcome VARCHAR, surface VARCHAR) ### Question: What was the outcome of the match played on grass? ### Answer: SELECT outcome FROM table_name_64 WHERE surface = "grass" |
What was the outcome of the match on February 17, 2003? | CREATE TABLE table_name_13 (outcome VARCHAR, date__final_ VARCHAR) | SELECT outcome FROM table_name_13 WHERE date__final_ = "february 17, 2003" | ### Context: CREATE TABLE table_name_13 (outcome VARCHAR, date__final_ VARCHAR) ### Question: What was the outcome of the match on February 17, 2003? ### Answer: SELECT outcome FROM table_name_13 WHERE date__final_ = "february 17, 2003" |
How many average wins have USA as the team? | CREATE TABLE table_name_25 (wins INTEGER, team VARCHAR) | SELECT AVG(wins) FROM table_name_25 WHERE team = "usa" | ### Context: CREATE TABLE table_name_25 (wins INTEGER, team VARCHAR) ### Question: How many average wins have USA as the team? ### Answer: SELECT AVG(wins) FROM table_name_25 WHERE team = "usa" |
What are the average wins that have great britain as the team? | CREATE TABLE table_name_80 (wins INTEGER, team VARCHAR) | SELECT AVG(wins) FROM table_name_80 WHERE team = "great britain" | ### Context: CREATE TABLE table_name_80 (wins INTEGER, team VARCHAR) ### Question: What are the average wins that have great britain as the team? ### Answer: SELECT AVG(wins) FROM table_name_80 WHERE team = "great britain" |
What's the average draft pick number from Carson-Newman College before Round 7? | CREATE TABLE table_name_21 (pick__number INTEGER, college VARCHAR, round VARCHAR) | SELECT AVG(pick__number) FROM table_name_21 WHERE college = "carson-newman" AND round < 7 | ### Context: CREATE TABLE table_name_21 (pick__number INTEGER, college VARCHAR, round VARCHAR) ### Question: What's the average draft pick number from Carson-Newman College before Round 7? ### Answer: SELECT AVG(pick__number) FROM table_name_21 WHERE college = "carson-newman" AND round < 7 |
Which college has a pick number of 155? | CREATE TABLE table_name_19 (college VARCHAR, pick__number VARCHAR) | SELECT college FROM table_name_19 WHERE pick__number = 155 | ### Context: CREATE TABLE table_name_19 (college VARCHAR, pick__number VARCHAR) ### Question: Which college has a pick number of 155? ### Answer: SELECT college FROM table_name_19 WHERE pick__number = 155 |
What score in the final has november 3, 2002 as the date? | CREATE TABLE table_name_76 (score_in_the_final VARCHAR, date VARCHAR) | SELECT score_in_the_final FROM table_name_76 WHERE date = "november 3, 2002" | ### Context: CREATE TABLE table_name_76 (score_in_the_final VARCHAR, date VARCHAR) ### Question: What score in the final has november 3, 2002 as the date? ### Answer: SELECT score_in_the_final FROM table_name_76 WHERE date = "november 3, 2002" |
What surface has natalia gussoni as the partner? | CREATE TABLE table_name_14 (surface VARCHAR, partner VARCHAR) | SELECT surface FROM table_name_14 WHERE partner = "natalia gussoni" | ### Context: CREATE TABLE table_name_14 (surface VARCHAR, partner VARCHAR) ### Question: What surface has natalia gussoni as the partner? ### Answer: SELECT surface FROM table_name_14 WHERE partner = "natalia gussoni" |
What outcome has September 23, 2013 as the date? | CREATE TABLE table_name_68 (outcome VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_68 WHERE date = "september 23, 2013" | ### Context: CREATE TABLE table_name_68 (outcome VARCHAR, date VARCHAR) ### Question: What outcome has September 23, 2013 as the date? ### Answer: SELECT outcome FROM table_name_68 WHERE date = "september 23, 2013" |
What score in the final has hard as the surface, and june 13, 2011 as the date? | CREATE TABLE table_name_57 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) | SELECT score_in_the_final FROM table_name_57 WHERE surface = "hard" AND date = "june 13, 2011" | ### Context: CREATE TABLE table_name_57 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) ### Question: What score in the final has hard as the surface, and june 13, 2011 as the date? ### Answer: SELECT score_in_the_final FROM table_name_57 WHERE surface = "hard" AND date = "june 13, 2011" |
What date has elke clijsters as the partner? | CREATE TABLE table_name_43 (date VARCHAR, partner VARCHAR) | SELECT date FROM table_name_43 WHERE partner = "elke clijsters" | ### Context: CREATE TABLE table_name_43 (date VARCHAR, partner VARCHAR) ### Question: What date has elke clijsters as the partner? ### Answer: SELECT date FROM table_name_43 WHERE partner = "elke clijsters" |
What is the Round with a Prize of money that is £120,000? | CREATE TABLE table_name_59 (round VARCHAR, prize_money VARCHAR) | SELECT round FROM table_name_59 WHERE prize_money = "£120,000" | ### Context: CREATE TABLE table_name_59 (round VARCHAR, prize_money VARCHAR) ### Question: What is the Round with a Prize of money that is £120,000? ### Answer: SELECT round FROM table_name_59 WHERE prize_money = "£120,000" |
What is the Match with a Prize of money that is £1,000,000? | CREATE TABLE table_name_16 (matches VARCHAR, prize_money VARCHAR) | SELECT matches FROM table_name_16 WHERE prize_money = "£1,000,000" | ### Context: CREATE TABLE table_name_16 (matches VARCHAR, prize_money VARCHAR) ### Question: What is the Match with a Prize of money that is £1,000,000? ### Answer: SELECT matches FROM table_name_16 WHERE prize_money = "£1,000,000" |
When alvin and the chipmunks meet frankenstein, what was the role? | CREATE TABLE table_name_99 (role VARCHAR, title VARCHAR) | SELECT role FROM table_name_99 WHERE title = "alvin and the chipmunks meet frankenstein" | ### Context: CREATE TABLE table_name_99 (role VARCHAR, title VARCHAR) ### Question: When alvin and the chipmunks meet frankenstein, what was the role? ### Answer: SELECT role FROM table_name_99 WHERE title = "alvin and the chipmunks meet frankenstein" |
What's the earliest year with a role of alvin seville simon seville david 'dave' seville, and a Title of alvin and the chipmunks meet the wolfman? | CREATE TABLE table_name_18 (year INTEGER, role VARCHAR, title VARCHAR) | SELECT MIN(year) FROM table_name_18 WHERE role = "alvin seville simon seville david 'dave' seville" AND title = "alvin and the chipmunks meet the wolfman" | ### Context: CREATE TABLE table_name_18 (year INTEGER, role VARCHAR, title VARCHAR) ### Question: What's the earliest year with a role of alvin seville simon seville david 'dave' seville, and a Title of alvin and the chipmunks meet the wolfman? ### Answer: SELECT MIN(year) FROM table_name_18 WHERE role = "alvin seville simon seville david 'dave' seville" AND title = "alvin and the chipmunks meet the wolfman" |
What's the average year for the Role of alvin seville simon seville david 'dave' seville, and a Title of the chipmunk adventure? | CREATE TABLE table_name_30 (year INTEGER, role VARCHAR, title VARCHAR) | SELECT AVG(year) FROM table_name_30 WHERE role = "alvin seville simon seville david 'dave' seville" AND title = "the chipmunk adventure" | ### Context: CREATE TABLE table_name_30 (year INTEGER, role VARCHAR, title VARCHAR) ### Question: What's the average year for the Role of alvin seville simon seville david 'dave' seville, and a Title of the chipmunk adventure? ### Answer: SELECT AVG(year) FROM table_name_30 WHERE role = "alvin seville simon seville david 'dave' seville" AND title = "the chipmunk adventure" |
What was the role in the chipmunk adventure? | CREATE TABLE table_name_53 (role VARCHAR, title VARCHAR) | SELECT role FROM table_name_53 WHERE title = "the chipmunk adventure" | ### Context: CREATE TABLE table_name_53 (role VARCHAR, title VARCHAR) ### Question: What was the role in the chipmunk adventure? ### Answer: SELECT role FROM table_name_53 WHERE title = "the chipmunk adventure" |
What role was played in 2007? | CREATE TABLE table_name_37 (role VARCHAR, year VARCHAR) | SELECT role FROM table_name_37 WHERE year = 2007 | ### Context: CREATE TABLE table_name_37 (role VARCHAR, year VARCHAR) ### Question: What role was played in 2007? ### Answer: SELECT role FROM table_name_37 WHERE year = 2007 |
What is the total number of points for the KV Racing Technology team when they use a chevrolet engine? | CREATE TABLE table_name_75 (points VARCHAR, engine VARCHAR, team VARCHAR) | SELECT COUNT(points) FROM table_name_75 WHERE engine = "chevrolet" AND team = "kv racing technology" | ### Context: CREATE TABLE table_name_75 (points VARCHAR, engine VARCHAR, team VARCHAR) ### Question: What is the total number of points for the KV Racing Technology team when they use a chevrolet engine? ### Answer: SELECT COUNT(points) FROM table_name_75 WHERE engine = "chevrolet" AND team = "kv racing technology" |
Which engine has a chassis of dallara, is ranked 6th, and has 384 points? | CREATE TABLE table_name_99 (engine VARCHAR, points VARCHAR, chassis VARCHAR, rank VARCHAR) | SELECT engine FROM table_name_99 WHERE chassis = "dallara" AND rank = "6th" AND points = 384 | ### Context: CREATE TABLE table_name_99 (engine VARCHAR, points VARCHAR, chassis VARCHAR, rank VARCHAR) ### Question: Which engine has a chassis of dallara, is ranked 6th, and has 384 points? ### Answer: SELECT engine FROM table_name_99 WHERE chassis = "dallara" AND rank = "6th" AND points = 384 |
Which engine is used when there is a 3rd place rank and 513 points? | CREATE TABLE table_name_23 (engine VARCHAR, rank VARCHAR, points VARCHAR) | SELECT engine FROM table_name_23 WHERE rank = "3rd" AND points = 513 | ### Context: CREATE TABLE table_name_23 (engine VARCHAR, rank VARCHAR, points VARCHAR) ### Question: Which engine is used when there is a 3rd place rank and 513 points? ### Answer: SELECT engine FROM table_name_23 WHERE rank = "3rd" AND points = 513 |
What is the chassis when the rank is 3rd? | CREATE TABLE table_name_25 (chassis VARCHAR, rank VARCHAR) | SELECT chassis FROM table_name_25 WHERE rank = "3rd" | ### Context: CREATE TABLE table_name_25 (chassis VARCHAR, rank VARCHAR) ### Question: What is the chassis when the rank is 3rd? ### Answer: SELECT chassis FROM table_name_25 WHERE rank = "3rd" |
What are the years that Andretti Autosport is a team? | CREATE TABLE table_name_44 (year VARCHAR, team VARCHAR) | SELECT COUNT(year) FROM table_name_44 WHERE team = "andretti autosport" | ### Context: CREATE TABLE table_name_44 (year VARCHAR, team VARCHAR) ### Question: What are the years that Andretti Autosport is a team? ### Answer: SELECT COUNT(year) FROM table_name_44 WHERE team = "andretti autosport" |
Which team is ranked 3rd in 2008? | CREATE TABLE table_name_66 (team VARCHAR, rank VARCHAR, year VARCHAR) | SELECT team FROM table_name_66 WHERE rank = "3rd" AND year = 2008 | ### Context: CREATE TABLE table_name_66 (team VARCHAR, rank VARCHAR, year VARCHAR) ### Question: Which team is ranked 3rd in 2008? ### Answer: SELECT team FROM table_name_66 WHERE rank = "3rd" AND year = 2008 |
Which Oilers points have a Record of 10–6, and Oilers first downs larger than 14? | CREATE TABLE table_name_1 (oilers_points INTEGER, record VARCHAR, oilers_first_downs VARCHAR) | SELECT AVG(oilers_points) FROM table_name_1 WHERE record = "10–6" AND oilers_first_downs > 14 | ### Context: CREATE TABLE table_name_1 (oilers_points INTEGER, record VARCHAR, oilers_first_downs VARCHAR) ### Question: Which Oilers points have a Record of 10–6, and Oilers first downs larger than 14? ### Answer: SELECT AVG(oilers_points) FROM table_name_1 WHERE record = "10–6" AND oilers_first_downs > 14 |
Which Oilers points have an Opponent of san francisco 49ers, and Opponents larger than 19? | CREATE TABLE table_name_72 (oilers_points INTEGER, opponent VARCHAR, opponents VARCHAR) | SELECT MAX(oilers_points) FROM table_name_72 WHERE opponent = "san francisco 49ers" AND opponents > 19 | ### Context: CREATE TABLE table_name_72 (oilers_points INTEGER, opponent VARCHAR, opponents VARCHAR) ### Question: Which Oilers points have an Opponent of san francisco 49ers, and Opponents larger than 19? ### Answer: SELECT MAX(oilers_points) FROM table_name_72 WHERE opponent = "san francisco 49ers" AND opponents > 19 |
Which Game has an Opponent of at kansas city chiefs, and an Attendance smaller than 40,213? | CREATE TABLE table_name_60 (game INTEGER, opponent VARCHAR, attendance VARCHAR) | SELECT SUM(game) FROM table_name_60 WHERE opponent = "at kansas city chiefs" AND attendance < 40 OFFSET 213 | ### Context: CREATE TABLE table_name_60 (game INTEGER, opponent VARCHAR, attendance VARCHAR) ### Question: Which Game has an Opponent of at kansas city chiefs, and an Attendance smaller than 40,213? ### Answer: SELECT SUM(game) FROM table_name_60 WHERE opponent = "at kansas city chiefs" AND attendance < 40 OFFSET 213 |
What is the name of the country that has 18 May 2004 as the date? | CREATE TABLE table_name_27 (country VARCHAR, date VARCHAR) | SELECT country FROM table_name_27 WHERE date = "18 may 2004" | ### Context: CREATE TABLE table_name_27 (country VARCHAR, date VARCHAR) ### Question: What is the name of the country that has 18 May 2004 as the date? ### Answer: SELECT country FROM table_name_27 WHERE date = "18 may 2004" |
What catalog has Australia as the country? | CREATE TABLE table_name_58 (catalog VARCHAR, country VARCHAR) | SELECT catalog FROM table_name_58 WHERE country = "australia" | ### Context: CREATE TABLE table_name_58 (catalog VARCHAR, country VARCHAR) ### Question: What catalog has Australia as the country? ### Answer: SELECT catalog FROM table_name_58 WHERE country = "australia" |
In what format was the release that was dated 7 April 2003 from catalog 584 2112? | CREATE TABLE table_name_18 (format VARCHAR, date VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_18 WHERE date = "7 april 2003" AND catalog = "584 2112" | ### Context: CREATE TABLE table_name_18 (format VARCHAR, date VARCHAR, catalog VARCHAR) ### Question: In what format was the release that was dated 7 April 2003 from catalog 584 2112? ### Answer: SELECT format FROM table_name_18 WHERE date = "7 april 2003" AND catalog = "584 2112" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.