text
stringlengths
114
1.06k
### question: Where is two medicine formation? ### answer: SELECT location FROM table_name_46 WHERE unit = "two medicine formation" ### context: CREATE TABLE table_name_46 (location VARCHAR, unit VARCHAR)
### question: What is varricchio's unit? ### answer: SELECT unit FROM table_name_75 WHERE authors = "varricchio" ### context: CREATE TABLE table_name_75 (unit VARCHAR, authors VARCHAR)
### question: Which authors have a Unit of densuș-ciula formation? ### answer: SELECT authors FROM table_name_42 WHERE unit = "densuș-ciula formation" ### context: CREATE TABLE table_name_42 (authors VARCHAR, unit VARCHAR)
### question: Which Status has a Unit of daohugou beds? ### answer: SELECT status FROM table_name_55 WHERE unit = "daohugou beds" ### context: CREATE TABLE table_name_55 (status VARCHAR, unit VARCHAR)
### question: What is varricchio's status? ### answer: SELECT status FROM table_name_75 WHERE authors = "varricchio" ### context: CREATE TABLE table_name_75 (status VARCHAR, authors VARCHAR)
### question: What is the points average when the tied is greater than 8, less than 82 games and the coach of Bryan Mclay † Morris Lallo ‡ Gerry Moore ‡, and greater than 322 goals? ### answer: SELECT AVG(points) FROM table_name_13 WHERE tied > 8 AND games < 82 AND coach = "bryan mclay † morris lallo ‡ gerry moore ‡" AND goals_against > 322 ### context: CREATE TABLE table_name_13 (points INTEGER, goals_against VARCHAR, coach VARCHAR, tied VARCHAR, games VARCHAR)
### question: What are the most games when the points are 100 and goals for less than 356? ### answer: SELECT MAX(games) FROM table_name_23 WHERE points = 100 AND goals_for < 356 ### context: CREATE TABLE table_name_23 (games INTEGER, points VARCHAR, goals_for VARCHAR)
### question: What is the most points when the goals against are 354 and games less than 82? ### answer: SELECT MAX(points) FROM table_name_49 WHERE goals_against = 354 AND games < 82 ### context: CREATE TABLE table_name_49 (points INTEGER, goals_against VARCHAR, games VARCHAR)
### question: For games less than 70 and goals for greater than 335 what is the most points? ### answer: SELECT MAX(points) FROM table_name_85 WHERE goals_for > 335 AND games < 70 ### context: CREATE TABLE table_name_85 (points INTEGER, goals_for VARCHAR, games VARCHAR)
### question: What is Gold, when Total is less than 4, when Silver is 1, and when Bronze is 1? ### answer: SELECT gold FROM table_name_71 WHERE total < 4 AND silver = "1" AND bronze = "1" ### context: CREATE TABLE table_name_71 (gold VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR)
### question: What is Silver, when Total is greater than 4, when Bronze is 2, and when Rank is greater than 1? ### answer: SELECT silver FROM table_name_51 WHERE total > 4 AND bronze = "2" AND rank > 1 ### context: CREATE TABLE table_name_51 (silver VARCHAR, rank VARCHAR, total VARCHAR, bronze VARCHAR)
### question: Who was on the Socialist Labor ticket that had Arthur Levitt as the Liberal Ticket? ### answer: SELECT socialist_labor_ticket FROM table_name_60 WHERE liberal_ticket = "arthur levitt" ### context: CREATE TABLE table_name_60 (socialist_labor_ticket VARCHAR, liberal_ticket VARCHAR)
### question: Robert S. Flanzer was the Free Libertarian ticket with who listed as the Liberal Ticket? ### answer: SELECT liberal_ticket FROM table_name_51 WHERE free_libertarian_ticket = "robert s. flanzer" ### context: CREATE TABLE table_name_51 (liberal_ticket VARCHAR, free_libertarian_ticket VARCHAR)
### question: The Liberal Ticket listed which candidate when Jack A. Martin was listed on the Free Libertarian Ticket? ### answer: SELECT liberal_ticket FROM table_name_21 WHERE free_libertarian_ticket = "jack a. martin" ### context: CREATE TABLE table_name_21 (liberal_ticket VARCHAR, free_libertarian_ticket VARCHAR)
### question: The person who is on the Democratic ticket for the position of Office of U.S. Senator was who? ### answer: SELECT democratic_ticket FROM table_name_68 WHERE office = "u.s. senator" ### context: CREATE TABLE table_name_68 (democratic_ticket VARCHAR, office VARCHAR)
### question: Leland W. Schubert, Free Libertarian ticket, had who listed on the Democratic ticket? ### answer: SELECT democratic_ticket FROM table_name_56 WHERE free_libertarian_ticket = "leland w. schubert" ### context: CREATE TABLE table_name_56 (democratic_ticket VARCHAR, free_libertarian_ticket VARCHAR)
### question: What is the lowest Extras for Chamara Kapugedera, with an E.R. less than 4.59? ### answer: SELECT MIN(extras) FROM table_name_50 WHERE name = "chamara kapugedera" AND er < 4.59 ### context: CREATE TABLE table_name_50 (extras INTEGER, name VARCHAR, er VARCHAR)
### question: What is the highest Extras with an E.R. of 4.59, and more than 101 Runs Conceded? ### answer: SELECT MAX(extras) FROM table_name_9 WHERE er = 4.59 AND runs_conceded > 101 ### context: CREATE TABLE table_name_9 (extras INTEGER, er VARCHAR, runs_conceded VARCHAR)
### question: What is the average Extras for Muttiah Muralitharan, with less than 353 Runs Conceded? ### answer: SELECT AVG(extras) FROM table_name_38 WHERE name = "muttiah muralitharan" AND runs_conceded < 353 ### context: CREATE TABLE table_name_38 (extras INTEGER, name VARCHAR, runs_conceded VARCHAR)
### question: What is the highest Extras for Farveez Maharoof, with more than 4 wickets? ### answer: SELECT MAX(extras) FROM table_name_79 WHERE name = "farveez maharoof" AND wickets > 4 ### context: CREATE TABLE table_name_79 (extras INTEGER, name VARCHAR, wickets VARCHAR)
### question: What is the total number of Maidens when E.R. is less than 9.5, and a Overs Bowled larger than 57, and a Wickets of 9? ### answer: SELECT COUNT(maidens) FROM table_name_95 WHERE er < 9.5 AND overs_bowled > 57 AND wickets = 9 ### context: CREATE TABLE table_name_95 (maidens VARCHAR, wickets VARCHAR, er VARCHAR, overs_bowled VARCHAR)
### question: How many FA Cups on average have a larger total than 32 and a larger league than 24? ### answer: SELECT AVG(fa_cup) FROM table_name_15 WHERE total > 32 AND league > 24 ### context: CREATE TABLE table_name_15 (fa_cup INTEGER, total VARCHAR, league VARCHAR)
### question: How many FA Trophies had a total of 27, 2 FA cups, and a league larger than 24? ### answer: SELECT SUM(fa_trophy) FROM table_name_82 WHERE total = 27 AND fa_cup = 2 AND league > 24 ### context: CREATE TABLE table_name_82 (fa_trophy INTEGER, league VARCHAR, total VARCHAR, fa_cup VARCHAR)
### question: What is the year built of the home with a built status and a 42 m. height? ### answer: SELECT "built" FROM table_name_41 WHERE status = "built" AND height = "42 m." ### context: CREATE TABLE table_name_41 (status VARCHAR, height VARCHAR)
### question: What is the height of the home with stories greater than 22 and built in 2009? ### answer: SELECT height FROM table_name_34 WHERE stories > 22 AND built = "2009" ### context: CREATE TABLE table_name_34 (height VARCHAR, stories VARCHAR, built VARCHAR)
### question: What is the highest number of stories in homes with a height of 42 m.? ### answer: SELECT MAX(stories) FROM table_name_7 WHERE height = "42 m." ### context: CREATE TABLE table_name_7 (stories INTEGER, height VARCHAR)
### question: When the game is listed as 2, what is the score? ### answer: SELECT score FROM table_name_81 WHERE game = 2 ### context: CREATE TABLE table_name_81 (score VARCHAR, game VARCHAR)
### question: What is the latest November date with an Opponent of @ Pittsburgh Pirates and the game is more than 3? ### answer: SELECT MAX(november) FROM table_name_55 WHERE opponent = "@ pittsburgh pirates" AND game > 3 ### context: CREATE TABLE table_name_55 (november INTEGER, opponent VARCHAR, game VARCHAR)
### question: When the record is listed as 2-0-0, and the November date is less than 27, what is the sum of the game? ### answer: SELECT SUM(game) FROM table_name_71 WHERE november < 27 AND record = "2-0-0" ### context: CREATE TABLE table_name_71 (game INTEGER, november VARCHAR, record VARCHAR)
### question: What was the lowest number of Total Foreign-born (millions) people, when the number of people Born in a non EU state (millions) was 6.415? ### answer: SELECT MIN(total_foreign_born__millions_) FROM table_name_38 WHERE born_in_a_non_eu_state__millions_ = 6.415 ### context: CREATE TABLE table_name_38 (total_foreign_born__millions_ INTEGER, born_in_a_non_eu_state__millions_ VARCHAR)
### question: What was the average number of people born in other EU states in millions, when the total number of foreign-born people in millions was 0.5, and when the total population in millions was less than 5.534? ### answer: SELECT AVG(born_in_other_eu_state__millions_) FROM table_name_57 WHERE total_foreign_born__millions_ = 0.5 AND total_population__millions_ < 5.534 ### context: CREATE TABLE table_name_57 (born_in_other_eu_state__millions_ INTEGER, total_foreign_born__millions_ VARCHAR, total_population__millions_ VARCHAR)
### question: What was the average number of people born in other EU states in millions, when the number of people born in a non EU state in millions was 31.368, and when the total population in millions was higher than 501.098? ### answer: SELECT AVG(born_in_other_eu_state__millions_) FROM table_name_88 WHERE born_in_a_non_eu_state__millions_ = 31.368 AND total_population__millions_ > 501.098 ### context: CREATE TABLE table_name_88 (born_in_other_eu_state__millions_ INTEGER, born_in_a_non_eu_state__millions_ VARCHAR, total_population__millions_ VARCHAR)
### question: How many people were born in a non EU state (in millions), when the Total population (in millions) was 62.008? ### answer: SELECT born_in_a_non_eu_state__millions_ FROM table_name_32 WHERE total_population__millions_ = 62.008 ### context: CREATE TABLE table_name_32 (born_in_a_non_eu_state__millions_ VARCHAR, total_population__millions_ VARCHAR)
### question: What away team has tottenham hotspur as the home team? ### answer: SELECT away_team FROM table_name_67 WHERE home_team = "tottenham hotspur" ### context: CREATE TABLE table_name_67 (away_team VARCHAR, home_team VARCHAR)
### question: What is the Tamil Name of the Thaipusam holiday? ### answer: SELECT tamil_name FROM table_name_96 WHERE english_name = "thaipusam" ### context: CREATE TABLE table_name_96 (tamil_name VARCHAR, english_name VARCHAR)
### question: What is the Tamil Name of சந்திர புத்தாண்டு (தினம் 2)? ### answer: SELECT type FROM table_name_80 WHERE tamil_name = "சந்திர புத்தாண்டு (தினம் 2)" ### context: CREATE TABLE table_name_80 (type VARCHAR, tamil_name VARCHAR)
### question: What is the Chinese Type Chinese Name of the holiday with a Tamil Name of சந்திர புத்தாண்டு (தினம் 3)? ### answer: SELECT chinese_name FROM table_name_25 WHERE type = "chinese" AND tamil_name = "சந்திர புத்தாண்டு (தினம் 3)" ### context: CREATE TABLE table_name_25 (chinese_name VARCHAR, type VARCHAR, tamil_name VARCHAR)
### question: Who was second for the United States team? ### answer: SELECT second FROM table_name_35 WHERE nation = "united states" ### context: CREATE TABLE table_name_35 (second VARCHAR, nation VARCHAR)
### question: Yumie Hayashi was third for which club? ### answer: SELECT club FROM table_name_23 WHERE third = "yumie hayashi" ### context: CREATE TABLE table_name_23 (club VARCHAR, third VARCHAR)
### question: Who was Switzerland's alternate? ### answer: SELECT alternate FROM table_name_86 WHERE nation = "switzerland" ### context: CREATE TABLE table_name_86 (alternate VARCHAR, nation VARCHAR)
### question: Which club was from Great Britain? ### answer: SELECT club FROM table_name_27 WHERE nation = "great britain" ### context: CREATE TABLE table_name_27 (club VARCHAR, nation VARCHAR)
### question: Glenys Bakker was second for which nation? ### answer: SELECT nation FROM table_name_74 WHERE second = "glenys bakker" ### context: CREATE TABLE table_name_74 (nation VARCHAR, second VARCHAR)
### question: Rosa Pompanin was second for which club? ### answer: SELECT club FROM table_name_64 WHERE second = "rosa pompanin" ### context: CREATE TABLE table_name_64 (club VARCHAR, second VARCHAR)
### question: What date was the Singapore Gross 1999? ### answer: SELECT date FROM table_name_18 WHERE singapore_gross = "1999" ### context: CREATE TABLE table_name_18 (date VARCHAR, singapore_gross VARCHAR)
### question: What is the name of the producer that produced a film with a production cost of $1,000,000? ### answer: SELECT producer FROM table_name_71 WHERE production_cost = "$1,000,000" ### context: CREATE TABLE table_name_71 (producer VARCHAR, production_cost VARCHAR)
### question: What is the name of the director who directed the movie that Raintree Pictures produced? ### answer: SELECT director FROM table_name_13 WHERE producer = "raintree pictures" ### context: CREATE TABLE table_name_13 (director VARCHAR, producer VARCHAR)
### question: What is the title of the film that had a production cost of $850,000? ### answer: SELECT title FROM table_name_93 WHERE production_cost = "$850,000" ### context: CREATE TABLE table_name_93 (title VARCHAR, production_cost VARCHAR)
### question: How much is the Singapore Gross for the film that Siu Wing directed? ### answer: SELECT singapore_gross FROM table_name_93 WHERE director = "siu wing" ### context: CREATE TABLE table_name_93 (singapore_gross VARCHAR, director VARCHAR)
### question: What is the Date with an Away that is broadview hawks? ### answer: SELECT date FROM table_name_5 WHERE away = "broadview hawks" ### context: CREATE TABLE table_name_5 (date VARCHAR, away VARCHAR)
### question: What is the Home with an Away that is toronto rebels? ### answer: SELECT home FROM table_name_94 WHERE away = "toronto rebels" ### context: CREATE TABLE table_name_94 (home VARCHAR, away VARCHAR)
### question: What is the Time with a Score that is 46-82? ### answer: SELECT time FROM table_name_17 WHERE score = "46-82" ### context: CREATE TABLE table_name_17 (time VARCHAR, score VARCHAR)
### question: What is the Date with an Away that is central blues? ### answer: SELECT date FROM table_name_15 WHERE away = "central blues" ### context: CREATE TABLE table_name_15 (date VARCHAR, away VARCHAR)
### question: What is the Time with a Home that is high park demons? ### answer: SELECT time FROM table_name_31 WHERE home = "high park demons" ### context: CREATE TABLE table_name_31 (time VARCHAR, home VARCHAR)
### question: What is the Away with a Score that is 46-82? ### answer: SELECT away FROM table_name_70 WHERE score = "46-82" ### context: CREATE TABLE table_name_70 (away VARCHAR, score VARCHAR)
### question: Which Partner is on 22 april 2002? ### answer: SELECT partner FROM table_name_35 WHERE date = "22 april 2002" ### context: CREATE TABLE table_name_35 (partner VARCHAR, date VARCHAR)
### question: Which Partner has an Opponents of wayne arthurs sandon stolle? ### answer: SELECT partner FROM table_name_24 WHERE opponents = "wayne arthurs sandon stolle" ### context: CREATE TABLE table_name_24 (partner VARCHAR, opponents VARCHAR)
### question: Which Score has a Tournament of san jose, us (2)? ### answer: SELECT score FROM table_name_56 WHERE tournament = "san jose, us (2)" ### context: CREATE TABLE table_name_56 (score VARCHAR, tournament VARCHAR)
### question: Which Opponents has a Score of 6–3, 6–4, 6–1? ### answer: SELECT opponents FROM table_name_60 WHERE score = "6–3, 6–4, 6–1" ### context: CREATE TABLE table_name_60 (opponents VARCHAR, score VARCHAR)
### question: Which Outcome has a Score of 6–4, 6–4, 6–2? ### answer: SELECT outcome FROM table_name_19 WHERE score = "6–4, 6–4, 6–2" ### context: CREATE TABLE table_name_19 (outcome VARCHAR, score VARCHAR)
### question: Which Tournament has a Score of 1–6, 0–6? ### answer: SELECT tournament FROM table_name_89 WHERE score = "1–6, 0–6" ### context: CREATE TABLE table_name_89 (tournament VARCHAR, score VARCHAR)
### question: Who is the opponent of the 3:00 time? ### answer: SELECT opponent FROM table_name_73 WHERE time = "3:00" ### context: CREATE TABLE table_name_73 (opponent VARCHAR, time VARCHAR)
### question: What was the score of the game with Nathalie Tauziat as a partner? ### answer: SELECT score FROM table_name_7 WHERE partnering = "nathalie tauziat" ### context: CREATE TABLE table_name_7 (score VARCHAR, partnering VARCHAR)
### question: What type of surface was used for the game played on September 20, 1993? ### answer: SELECT surface FROM table_name_93 WHERE date = "september 20, 1993" ### context: CREATE TABLE table_name_93 (surface VARCHAR, date VARCHAR)
### question: What was the score of the game that was played on a grass surface? ### answer: SELECT score FROM table_name_24 WHERE surface = "grass" ### context: CREATE TABLE table_name_24 (score VARCHAR, surface VARCHAR)
### question: What was the date of the game that was played against Laura Golarsa? ### answer: SELECT date FROM table_name_85 WHERE partnering = "laura golarsa" ### context: CREATE TABLE table_name_85 (date VARCHAR, partnering VARCHAR)
### question: What is the total rank of the celebrity with a 34.66 average and a season greater than 1? ### answer: SELECT COUNT(rank) FROM table_name_39 WHERE average = 34.66 AND season > 1 ### context: CREATE TABLE table_name_39 (rank VARCHAR, average VARCHAR, season VARCHAR)
### question: What is the highest average of celebrity Natalia Lesz, who is ranked greater than 4? ### answer: SELECT MAX(average) FROM table_name_19 WHERE rank > 4 AND celebrity = "natalia lesz" ### context: CREATE TABLE table_name_19 (average INTEGER, rank VARCHAR, celebrity VARCHAR)
### question: Who is the professional partner of celebrity małgorzata foremniak with a season less than 7, an average greater than 34.66, and a rank less than 10? ### answer: SELECT professional_partner FROM table_name_52 WHERE season < 7 AND average > 34.66 AND rank < 10 AND celebrity = "małgorzata foremniak" ### context: CREATE TABLE table_name_52 (professional_partner VARCHAR, celebrity VARCHAR, rank VARCHAR, season VARCHAR, average VARCHAR)
### question: What is the primary language used in the film title Nynke? ### answer: SELECT main_language_s_ FROM table_name_86 WHERE original_title = "nynke" ### context: CREATE TABLE table_name_86 (main_language_s_ VARCHAR, original_title VARCHAR)
### question: For the film made in 1964: (37th), what was the result? ### answer: SELECT result FROM table_name_11 WHERE year = "1964: (37th)" ### context: CREATE TABLE table_name_11 (result VARCHAR, year VARCHAR)
### question: What is the nomination title used for the original film, Monsieur Hawarden? ### answer: SELECT film_title_used_in_nomination FROM table_name_18 WHERE original_title = "monsieur hawarden" ### context: CREATE TABLE table_name_18 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)
### question: What is the nomination title used for the original film, Zwartboek? ### answer: SELECT film_title_used_in_nomination FROM table_name_98 WHERE original_title = "zwartboek" ### context: CREATE TABLE table_name_98 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)
### question: What is the primary language used in the film, Black Book? ### answer: SELECT main_language_s_ FROM table_name_53 WHERE film_title_used_in_nomination = "black book" ### context: CREATE TABLE table_name_53 (main_language_s_ VARCHAR, film_title_used_in_nomination VARCHAR)
### question: What is the average agricultural panel value with a Labour panel less than 1, a total value less than 21, and a National University of Ireland value greater than 0? ### answer: SELECT AVG(agricultural_panel) FROM table_name_53 WHERE labour_panel < 1 AND total < 21 AND national_university_of_ireland > 0 ### context: CREATE TABLE table_name_53 (agricultural_panel INTEGER, national_university_of_ireland VARCHAR, labour_panel VARCHAR, total VARCHAR)
### question: What is the highest administrative panel value with an agricultural panel less than 1 and a labour panel value less than 5? ### answer: SELECT MAX(administrative_panel) FROM table_name_56 WHERE agricultural_panel < 1 AND labour_panel < 5 ### context: CREATE TABLE table_name_56 (administrative_panel INTEGER, agricultural_panel VARCHAR, labour_panel VARCHAR)
### question: What is the highest labour panel value with a cultural and educational panel greater than 1, a University of Dublin value greater than 0, and a total value less than 60? ### answer: SELECT MAX(labour_panel) FROM table_name_43 WHERE cultural_and_educational_panel > 1 AND university_of_dublin > 0 AND total < 60 ### context: CREATE TABLE table_name_43 (labour_panel INTEGER, total VARCHAR, cultural_and_educational_panel VARCHAR, university_of_dublin VARCHAR)
### question: What is the total University of Dublin value with a labour panel greater than 11? ### answer: SELECT COUNT(university_of_dublin) FROM table_name_45 WHERE labour_panel > 11 ### context: CREATE TABLE table_name_45 (university_of_dublin VARCHAR, labour_panel INTEGER)
### question: What is the sum of the cultural and educational panel value with an administrative panel of 0 and an agricultural panel value less than 0? ### answer: SELECT SUM(cultural_and_educational_panel) FROM table_name_87 WHERE administrative_panel = 0 AND agricultural_panel < 0 ### context: CREATE TABLE table_name_87 (cultural_and_educational_panel INTEGER, administrative_panel VARCHAR, agricultural_panel VARCHAR)
### question: What is the highest 2012 immigration for a country with an immigration of 81,094 in 2011? ### answer: SELECT MAX(2012) FROM table_name_69 WHERE 2011 = 81 OFFSET 094 ### context: CREATE TABLE table_name_69 (Id VARCHAR)
### question: What is the Gauge of Locomotive G534 Owned by Aurizon which has a Status of Operational? ### answer: SELECT gauge FROM table_name_39 WHERE status = "operational" AND owner = "aurizon" AND locomotive = "g534" ### context: CREATE TABLE table_name_39 (gauge VARCHAR, locomotive VARCHAR, status VARCHAR, owner VARCHAR)
### question: Which Locomotive Entered Service in November 1984 and has an Operator of Southern Shorthaul Railroad? ### answer: SELECT locomotive FROM table_name_59 WHERE operator = "southern shorthaul railroad" AND entered_service = "november 1984" ### context: CREATE TABLE table_name_59 (locomotive VARCHAR, operator VARCHAR, entered_service VARCHAR)
### question: What is the Serial number of the Locomotive that Entered Service in November 1984 and has an Owner of Chicago Freight Car Leasing Australia? ### answer: SELECT serial_no FROM table_name_90 WHERE entered_service = "november 1984" AND owner = "chicago freight car leasing australia" ### context: CREATE TABLE table_name_90 (serial_no VARCHAR, entered_service VARCHAR, owner VARCHAR)
### question: What is the Serial Number of the Locomotive that Entered Service October 1989? ### answer: SELECT serial_no FROM table_name_26 WHERE entered_service = "october 1989" ### context: CREATE TABLE table_name_26 (serial_no VARCHAR, entered_service VARCHAR)
### question: What is the 2011 value with a 2008 value of 0.3 and is a member state of the European Union? ### answer: SELECT 2011 FROM table_name_64 WHERE 2008 = "0.3" AND member_state = "european union" ### context: CREATE TABLE table_name_64 (member_state VARCHAR)
### question: What is the 2012 value with a 1.3 in 2010 and a 3.6 in 2008? ### answer: SELECT 2012 FROM table_name_67 WHERE 2010 = "1.3" AND 2008 = "3.6" ### context: CREATE TABLE table_name_67 (Id VARCHAR)
### question: What is the sum of Yellow, when Category is Bugre (Indian), and when Amerindian is less than 50,00? ### answer: SELECT SUM(yellow) FROM table_name_76 WHERE category = "bugre (indian)" AND amerindian < 50 OFFSET 00 ### context: CREATE TABLE table_name_76 (yellow INTEGER, category VARCHAR, amerindian VARCHAR)
### question: What kind of IATA has an Airport of hamburg airport? ### answer: SELECT iata FROM table_name_5 WHERE airport = "hamburg airport" ### context: CREATE TABLE table_name_5 (iata VARCHAR, airport VARCHAR)
### question: Which Country that has a IATA of bal? ### answer: SELECT country FROM table_name_83 WHERE iata = "bal" ### context: CREATE TABLE table_name_83 (country VARCHAR, iata VARCHAR)
### question: Which Country has a IATA of vie? ### answer: SELECT country FROM table_name_32 WHERE iata = "vie" ### context: CREATE TABLE table_name_32 (country VARCHAR, iata VARCHAR)
### question: WHich Country has a ICAO of ltcd? ### answer: SELECT country FROM table_name_46 WHERE icao = "ltcd" ### context: CREATE TABLE table_name_46 (country VARCHAR, icao VARCHAR)
### question: Which Airport has a IATA of erz? ### answer: SELECT airport FROM table_name_63 WHERE iata = "erz" ### context: CREATE TABLE table_name_63 (airport VARCHAR, iata VARCHAR)
### question: What kind of IATA that has a Airport of berlin schönefeld airport? ### answer: SELECT iata FROM table_name_83 WHERE airport = "berlin schönefeld airport" ### context: CREATE TABLE table_name_83 (iata VARCHAR, airport VARCHAR)
### question: Who provided lyrics or music to the artist Cube? ### answer: SELECT lyrics__l____music__m_ FROM table_name_46 WHERE artist = "cube" ### context: CREATE TABLE table_name_46 (lyrics__l____music__m_ VARCHAR, artist VARCHAR)
### question: What was the aircraft damage for the Boeing 707-320B? ### answer: SELECT aircraft AS damage FROM table_name_51 WHERE aircraft = "boeing 707-320b" ### context: CREATE TABLE table_name_51 (aircraft VARCHAR)
### question: What was the number of fatalities for the Viscount 700? ### answer: SELECT fatalities FROM table_name_71 WHERE aircraft = "viscount 700" ### context: CREATE TABLE table_name_71 (fatalities VARCHAR, aircraft VARCHAR)
### question: What was the aircraft damage for the accident that had fatalities of 30/30? ### answer: SELECT aircraft AS damage FROM table_name_35 WHERE fatalities = "30/30" ### context: CREATE TABLE table_name_35 (aircraft VARCHAR, fatalities VARCHAR)
### question: What was the location that had an accident by the F-27-600RF aircraft with tail number 6O-SAZ? ### answer: SELECT location FROM table_name_42 WHERE aircraft = "f-27-600rf" AND tail_number = "6o-saz" ### context: CREATE TABLE table_name_42 (location VARCHAR, aircraft VARCHAR, tail_number VARCHAR)
### question: What was the tail number of the aircraft that had 5/30 fatalities? ### answer: SELECT tail_number FROM table_name_86 WHERE fatalities = "5/30" ### context: CREATE TABLE table_name_86 (tail_number VARCHAR, fatalities VARCHAR)
### question: What was the location of the accident that led to 50/50 fatalities? ### answer: SELECT location FROM table_name_84 WHERE fatalities = "50/50" ### context: CREATE TABLE table_name_84 (location VARCHAR, fatalities VARCHAR)
### question: What % has 4 RLng? ### answer: SELECT int_percentage FROM table_name_80 WHERE rlng = "4" ### context: CREATE TABLE table_name_80 (int_percentage VARCHAR, rlng VARCHAR)