text
stringlengths
114
1.06k
### 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" ### context: CREATE TABLE table_name_90 (category VARCHAR, year VARCHAR, score 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" ### context: CREATE TABLE table_name_97 (issue_date_s_ VARCHAR, artist 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" ### context: CREATE TABLE table_name_57 (seats__acs_ INTEGER, election_winner VARCHAR, incumbent 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" ### context: CREATE TABLE table_name_77 (election_winner VARCHAR, incumbent VARCHAR, state VARCHAR)
### question: Which country has an IATA of EVN? ### answer: SELECT country FROM table_name_8 WHERE iata = "evn" ### context: CREATE TABLE table_name_8 (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" ### 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 KRR? ### answer: 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 with an ICAO of ULLI? ### answer: SELECT airport FROM table_name_40 WHERE icao = "ulli" ### context: CREATE TABLE table_name_40 (airport VARCHAR, icao VARCHAR)
### question: What is the ICAO for the destination in Armenia? ### answer: SELECT icao FROM table_name_80 WHERE country = "armenia" ### context: CREATE TABLE table_name_80 (icao VARCHAR, country VARCHAR)
### question: What is the name of the airport with an IATA of KUF? ### answer: SELECT airport FROM table_name_68 WHERE iata = "kuf" ### context: CREATE TABLE table_name_68 (airport VARCHAR, iata VARCHAR)
### question: What is the status of Author Del Corro? ### answer: SELECT status FROM table_name_84 WHERE authors = "del corro" ### context: CREATE TABLE table_name_84 (status VARCHAR, authors VARCHAR)
### question: What is the location of the authors of Molnar? ### answer: SELECT location FROM table_name_65 WHERE authors = "molnar" ### context: CREATE TABLE table_name_65 (location VARCHAR, authors VARCHAR)
### question: What is the status of Prenocephale? ### answer: SELECT status FROM table_name_96 WHERE name = "prenocephale" ### context: CREATE TABLE table_name_96 (status VARCHAR, name 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" ### context: CREATE TABLE table_name_40 (novelty VARCHAR, name VARCHAR, status VARCHAR, location ...
### question: What is the novelty of Tylocephale? ### answer: SELECT novelty FROM table_name_14 WHERE name = "tylocephale" ### context: CREATE TABLE table_name_14 (novelty VARCHAR, name VARCHAR)
### question: Which team 1 has vfl gummersbach as team 2? ### answer: 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 cbm valladolid as team 2? ### answer: 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: 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" ### context: CREATE TABLE table_name_23 (team_1 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" ### context: CREATE TABLE table_name_8 (agg VARCHAR)
### question: What was the surface for October 10, 2004? ### answer: 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 the opponent Roger Federer? ### answer: SELECT surface FROM table_name_94 WHERE opponent = "roger federer" ### context: CREATE TABLE table_name_94 (surface VARCHAR, opponent 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" ### context: CREATE TABLE table_name_28 (year VARCHAR, competition VARCHAR, event 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" ### context: CREATE TABLE table_name_28 (attendance VARCHAR, result 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" ### context: CREATE TABLE table_name_64 (opponent VARCHAR, attendance 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 ### context: CREATE TABLE table_name_11 (silver VARCHAR, gold VARCHAR, bronze 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 ### context: CREATE TABLE table_name_25 (total INTEGER, rank VARCHAR, silver 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 ### context: CREATE TABLE table_name_27 (total INTEGER, gold VARCHAR, bronze VARC...
### 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 ### context: CREATE TABLE table_name_31 (gold INTEGER, nation VARCHAR, bronze 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 ### context: CREATE TABLE table_name_21 (silver INTEGER, bronze 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 ### context: CREATE TABLE table_name_28 (date VARCHAR, location VARCHAR, result 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 ### context: CREATE TABLE table_name_81 (lost INTEGER, points VARCHAR, draw VARCHAR, team 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 ### context: CREATE TABLE table_name_94 (draw INTEGER, lost VARCHAR, points 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 ### context: CREATE TABLE table_name_36 (draw VARCHAR, lost VARCHAR, match 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" ### context: CREATE TABLE table_name_39 (director VARCHAR, film_title_used_in_nomination VARCHAR)
### question: What is the Result of the 2010 (83rd) Ceremony? ### answer: 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 2013 (86th) Ceremony? ### answer: 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 Original title of Children of Sarajevo? ### answer: 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: 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)" ### context: CREATE TABLE table_name_66 (original_title VARCHAR, result VARCHAR, year__ceremony_ VARCH...
### 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" ### context: CREATE TABLE table_name_22 (draw INTEGER, points VARCHAR, rank 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" ### context: CREATE TABLE table_name_16 (points INTEGER, performer VARCHAR)
### question: What is the class of facility ID 150935? ### answer: SELECT class FROM table_name_21 WHERE facility_id = 150935 ### context: CREATE TABLE table_name_21 (class VARCHAR, facility_id VARCHAR)
### question: Which city has a facility ID greater than 150833? ### answer: 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: What position does the player from the Toronto Argonauts play? ### answer: SELECT position FROM table_name_99 WHERE cfl_team = "toronto argonauts" ### context: CREATE TABLE table_name_99 (position VARCHAR, cfl_team 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" ### context: CREATE TABLE table_name_88 (team_2 VARCHAR)
### question: Which team 1 has team 2, Gomera? ### answer: SELECT team_1 FROM table_name_54 WHERE team_2 = "gomera" ### context: CREATE TABLE table_name_54 (team_1 VARCHAR, team_2 VARCHAR)
### question: What public team was founded prior to 1883? ### answer: 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: Who has exactly 342 spikes? ### answer: SELECT name FROM table_name_68 WHERE spike = 342 ### context: CREATE TABLE table_name_68 (name VARCHAR, spike 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 ### context: CREATE TABLE table_name_69 (spike INTEGER, weight VARCHAR, height VARCHAR)
### question: What is Class, when Power is 78 Watts? ### answer: SELECT class FROM table_name_15 WHERE power = "78 watts" ### context: CREATE TABLE table_name_15 (class VARCHAR, power VARCHAR)
### question: What is Power, when Identifier is CBEB-FM? ### answer: SELECT power FROM table_name_48 WHERE identifier = "cbeb-fm" ### context: CREATE TABLE table_name_48 (power VARCHAR, identifier 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" ### context: CREATE TABLE table_name_26 (identifier 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" ### context: CREATE TABLE table_name_93 (power 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" ### context: CREATE TABLE table_name_55 (identifier VARCHAR, city_of_license 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" ### context: CREATE TABLE table_name_20 (city_of_license VARCHAR, frequency 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 ### context: CREATE TABLE table_name_2 (le_5_model VARCHAR, le_5A VARCHAR)
### question: What Series had 14 races and 12th position? ### answer: 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 season was the Formula BMW USA in? ### answer: SELECT season FROM table_name_87 WHERE series = "formula bmw usa" ### context: CREATE TABLE table_name_87 (season VARCHAR, series VARCHAR)
### question: What series had more than 10 Podiums? ### answer: SELECT series FROM table_name_73 WHERE podiums > 10 ### context: CREATE TABLE table_name_73 (series VARCHAR, podiums INTEGER)
### question: What is the Status with an Author that is colbert? ### answer: SELECT status FROM table_name_25 WHERE authors = "colbert" ### context: CREATE TABLE table_name_25 (status VARCHAR, authors 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" ### context: CREATE TABLE table_name_78 (college VARCHAR, pick VARCHAR, pba_team 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" ### context: CREATE TABLE table_name_36 (pick INTEGER, pba_team VARCHAR, colle...
### 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" ### context: CREATE TABLE table_name_26 (pick VARCHAR, pba_team VARCHAR, player 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" ### context: CREATE TABLE table_name_47 (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" ### context: CREATE TABLE table_name_39 (result VARCHAR, champi...
### question: What was the winning team in 2013? ### answer: SELECT winning_team FROM table_name_74 WHERE year = 2013 ### context: CREATE TABLE table_name_74 (winning_team VARCHAR, year 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" ### context: CREATE TABLE table_name_93 (year INTEGER, 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" ### context: CREATE TABLE table_name_99 (winning_team VARCHAR, usa_captain 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" ### context: CREATE TABLE table_name_25 (season VARCHAR, league VARCHAR, european_competi...
### 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" ### context: CREATE TABLE table_name_56 (tier INTEGER, postseason VARCHAR, season VARCHAR)
### question: What is the European competition when the tier is more than 2? ### answer: SELECT european_competitions FROM table_name_33 WHERE tier > 2 ### context: CREATE TABLE table_name_33 (european_competitions VARCHAR, tier INTEGER)
### question: What was the outcome of the match played on grass? ### answer: 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 on February 17, 2003? ### answer: SELECT outcome FROM table_name_13 WHERE date__final_ = "february 17, 2003" ### context: CREATE TABLE table_name_13 (outcome VARCHAR, date__final_ VARCHAR)
### question: How many average wins have USA as the team? ### answer: SELECT AVG(wins) FROM table_name_25 WHERE team = "usa" ### context: CREATE TABLE table_name_25 (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" ### context: CREATE TABLE table_name_80 (wins INTEGER, team 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 ### context: CREATE TABLE table_name_21 (pick__number INTEGER, college VARCHAR, round VARCHAR)
### question: Which college has a pick number of 155? ### answer: SELECT college FROM table_name_19 WHERE pick__number = 155 ### context: CREATE TABLE table_name_19 (college VARCHAR, pick__number 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" ### context: CREATE TABLE table_name_76 (score_in_the_final VARCHAR, date VARCHAR)
### question: What surface has natalia gussoni as the partner? ### answer: SELECT surface FROM table_name_14 WHERE partner = "natalia gussoni" ### context: CREATE TABLE table_name_14 (surface VARCHAR, partner VARCHAR)
### question: What outcome has September 23, 2013 as the date? ### answer: SELECT outcome FROM table_name_68 WHERE date = "september 23, 2013" ### context: CREATE TABLE table_name_68 (outcome 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" ### context: CREATE TABLE table_name_57 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)
### question: What date has elke clijsters as the partner? ### answer: SELECT date FROM table_name_43 WHERE partner = "elke clijsters" ### context: CREATE TABLE table_name_43 (date VARCHAR, partner 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" ### context: CREATE TABLE table_name_59 (round 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" ### context: CREATE TABLE table_name_16 (matches VARCHAR, prize_money 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" ### context: CREATE TABLE table_name_99 (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 w...
### 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" ### context: CREATE TABLE ta...
### question: What was the role in the chipmunk adventure? ### answer: SELECT role FROM table_name_53 WHERE title = "the chipmunk adventure" ### context: CREATE TABLE table_name_53 (role VARCHAR, title VARCHAR)
### question: What role was played in 2007? ### answer: SELECT role FROM table_name_37 WHERE year = 2007 ### context: CREATE TABLE table_name_37 (role VARCHAR, year 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" ### context: CREATE TABLE table_name_75 (points VARCHAR, engine VARCHAR, team 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 ### context: CREATE TABLE table_name_99 (engine VARCHAR, points VARCHAR, chassis VARCHAR, rank 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 ### context: CREATE TABLE table_name_23 (engine VARCHAR, rank VARCHAR, points VARCHAR)
### question: What is the chassis when the rank is 3rd? ### answer: SELECT chassis FROM table_name_25 WHERE rank = "3rd" ### context: CREATE TABLE table_name_25 (chassis VARCHAR, rank VARCHAR)
### question: What are the years that Andretti Autosport is a team? ### answer: SELECT COUNT(year) FROM table_name_44 WHERE team = "andretti autosport" ### context: CREATE TABLE table_name_44 (year VARCHAR, team VARCHAR)
### question: Which team is ranked 3rd in 2008? ### answer: 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 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 ### context: CREATE TABLE table_name_1 (oilers_points INTEGER, record VARCHAR, oilers_first_downs 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 ### context: CREATE TABLE table_name_72 (oilers_points INTEGER, opponent VARCHAR, opponents 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 ### context: CREATE TABLE table_name_60 (game INTEGER, opponent VARCHAR, attendance 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" ### context: CREATE TABLE table_name_27 (country VARCHAR, date VARCHAR)
### question: What catalog has Australia as the country? ### answer: SELECT catalog FROM table_name_58 WHERE country = "australia" ### context: CREATE TABLE table_name_58 (catalog VARCHAR, country 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" ### context: CREATE TABLE table_name_18 (format VARCHAR, date VARCHAR, catalog VARCHAR)