Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
10,900 | <question>: Where is two medicine formation? <context>: CREATE TABLE table_name_46 (location VARCHAR, unit VARCHAR) | SELECT location FROM table_name_46 WHERE unit = "two medicine formation" |
10,901 | <question>: What is varricchio's unit? <context>: CREATE TABLE table_name_75 (unit VARCHAR, authors VARCHAR) | SELECT unit FROM table_name_75 WHERE authors = "varricchio" |
10,902 | <question>: Which authors have a Unit of densuș-ciula formation? <context>: CREATE TABLE table_name_42 (authors VARCHAR, unit VARCHAR) | SELECT authors FROM table_name_42 WHERE unit = "densuș-ciula formation" |
10,903 | <question>: Which Status has a Unit of daohugou beds? <context>: CREATE TABLE table_name_55 (status VARCHAR, unit VARCHAR) | SELECT status FROM table_name_55 WHERE unit = "daohugou beds" |
10,904 | <question>: What is varricchio's status? <context>: CREATE TABLE table_name_75 (status VARCHAR, authors VARCHAR) | SELECT status FROM table_name_75 WHERE authors = "varricchio" |
10,905 | <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? <context>: CREATE TABLE table_name_13 (points INTEGER, goals_against VARCHAR, coach VARCHAR, tied VARCHAR, games VARCHAR) | 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 |
10,906 | <question>: What are the most games when the points are 100 and goals for less than 356? <context>: CREATE TABLE table_name_23 (games INTEGER, points VARCHAR, goals_for VARCHAR) | SELECT MAX(games) FROM table_name_23 WHERE points = 100 AND goals_for < 356 |
10,907 | <question>: What is the most points when the goals against are 354 and games less than 82? <context>: CREATE TABLE table_name_49 (points INTEGER, goals_against VARCHAR, games VARCHAR) | SELECT MAX(points) FROM table_name_49 WHERE goals_against = 354 AND games < 82 |
10,908 | <question>: For games less than 70 and goals for greater than 335 what is the most points? <context>: CREATE TABLE table_name_85 (points INTEGER, goals_for VARCHAR, games VARCHAR) | SELECT MAX(points) FROM table_name_85 WHERE goals_for > 335 AND games < 70 |
10,909 | <question>: What is Gold, when Total is less than 4, when Silver is 1, and when Bronze is 1? <context>: CREATE TABLE table_name_71 (gold VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR) | SELECT gold FROM table_name_71 WHERE total < 4 AND silver = "1" AND bronze = "1" |
10,910 | <question>: What is Silver, when Total is greater than 4, when Bronze is 2, and when Rank is greater than 1? <context>: CREATE TABLE table_name_51 (silver VARCHAR, rank VARCHAR, total VARCHAR, bronze VARCHAR) | SELECT silver FROM table_name_51 WHERE total > 4 AND bronze = "2" AND rank > 1 |
10,911 | <question>: Who was on the Socialist Labor ticket that had Arthur Levitt as the Liberal Ticket? <context>: CREATE TABLE table_name_60 (socialist_labor_ticket VARCHAR, liberal_ticket VARCHAR) | SELECT socialist_labor_ticket FROM table_name_60 WHERE liberal_ticket = "arthur levitt" |
10,912 | <question>: Robert S. Flanzer was the Free Libertarian ticket with who listed as the Liberal Ticket? <context>: CREATE TABLE table_name_51 (liberal_ticket VARCHAR, free_libertarian_ticket VARCHAR) | SELECT liberal_ticket FROM table_name_51 WHERE free_libertarian_ticket = "robert s. flanzer" |
10,913 | <question>: The Liberal Ticket listed which candidate when Jack A. Martin was listed on the Free Libertarian Ticket? <context>: CREATE TABLE table_name_21 (liberal_ticket VARCHAR, free_libertarian_ticket VARCHAR) | SELECT liberal_ticket FROM table_name_21 WHERE free_libertarian_ticket = "jack a. martin" |
10,914 | <question>: The person who is on the Democratic ticket for the position of Office of U.S. Senator was who? <context>: CREATE TABLE table_name_68 (democratic_ticket VARCHAR, office VARCHAR) | SELECT democratic_ticket FROM table_name_68 WHERE office = "u.s. senator" |
10,915 | <question>: Leland W. Schubert, Free Libertarian ticket, had who listed on the Democratic ticket? <context>: CREATE TABLE table_name_56 (democratic_ticket VARCHAR, free_libertarian_ticket VARCHAR) | SELECT democratic_ticket FROM table_name_56 WHERE free_libertarian_ticket = "leland w. schubert" |
10,916 | <question>: What is the lowest Extras for Chamara Kapugedera, with an E.R. less than 4.59? <context>: CREATE TABLE table_name_50 (extras INTEGER, name VARCHAR, er VARCHAR) | SELECT MIN(extras) FROM table_name_50 WHERE name = "chamara kapugedera" AND er < 4.59 |
10,917 | <question>: What is the highest Extras with an E.R. of 4.59, and more than 101 Runs Conceded? <context>: CREATE TABLE table_name_9 (extras INTEGER, er VARCHAR, runs_conceded VARCHAR) | SELECT MAX(extras) FROM table_name_9 WHERE er = 4.59 AND runs_conceded > 101 |
10,918 | <question>: What is the average Extras for Muttiah Muralitharan, with less than 353 Runs Conceded? <context>: CREATE TABLE table_name_38 (extras INTEGER, name VARCHAR, runs_conceded VARCHAR) | SELECT AVG(extras) FROM table_name_38 WHERE name = "muttiah muralitharan" AND runs_conceded < 353 |
10,919 | <question>: What is the highest Extras for Farveez Maharoof, with more than 4 wickets? <context>: CREATE TABLE table_name_79 (extras INTEGER, name VARCHAR, wickets VARCHAR) | SELECT MAX(extras) FROM table_name_79 WHERE name = "farveez maharoof" AND wickets > 4 |
10,920 | <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? <context>: CREATE TABLE table_name_95 (maidens VARCHAR, wickets VARCHAR, er VARCHAR, overs_bowled VARCHAR) | SELECT COUNT(maidens) FROM table_name_95 WHERE er < 9.5 AND overs_bowled > 57 AND wickets = 9 |
10,921 | <question>: How many FA Cups on average have a larger total than 32 and a larger league than 24? <context>: CREATE TABLE table_name_15 (fa_cup INTEGER, total VARCHAR, league VARCHAR) | SELECT AVG(fa_cup) FROM table_name_15 WHERE total > 32 AND league > 24 |
10,922 | <question>: How many FA Trophies had a total of 27, 2 FA cups, and a league larger than 24? <context>: CREATE TABLE table_name_82 (fa_trophy INTEGER, league VARCHAR, total VARCHAR, fa_cup VARCHAR) | SELECT SUM(fa_trophy) FROM table_name_82 WHERE total = 27 AND fa_cup = 2 AND league > 24 |
10,923 | <question>: What is the year built of the home with a built status and a 42 m. height? <context>: CREATE TABLE table_name_41 (status VARCHAR, height VARCHAR) | SELECT "built" FROM table_name_41 WHERE status = "built" AND height = "42 m." |
10,924 | <question>: What is the height of the home with stories greater than 22 and built in 2009? <context>: CREATE TABLE table_name_34 (height VARCHAR, stories VARCHAR, built VARCHAR) | SELECT height FROM table_name_34 WHERE stories > 22 AND built = "2009" |
10,925 | <question>: What is the highest number of stories in homes with a height of 42 m.? <context>: CREATE TABLE table_name_7 (stories INTEGER, height VARCHAR) | SELECT MAX(stories) FROM table_name_7 WHERE height = "42 m." |
10,926 | <question>: When the game is listed as 2, what is the score? <context>: CREATE TABLE table_name_81 (score VARCHAR, game VARCHAR) | SELECT score FROM table_name_81 WHERE game = 2 |
10,927 | <question>: What is the latest November date with an Opponent of @ Pittsburgh Pirates and the game is more than 3? <context>: CREATE TABLE table_name_55 (november INTEGER, opponent VARCHAR, game VARCHAR) | SELECT MAX(november) FROM table_name_55 WHERE opponent = "@ pittsburgh pirates" AND game > 3 |
10,928 | <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? <context>: CREATE TABLE table_name_71 (game INTEGER, november VARCHAR, record VARCHAR) | SELECT SUM(game) FROM table_name_71 WHERE november < 27 AND record = "2-0-0" |
10,929 | <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? <context>: CREATE TABLE table_name_38 (total_foreign_born__millions_ INTEGER, born_in_a_non_eu_state__millions_ VARCHAR) | SELECT MIN(total_foreign_born__millions_) FROM table_name_38 WHERE born_in_a_non_eu_state__millions_ = 6.415 |
10,930 | <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? <context>: CREATE TABLE table_name_57 (born_in_other_eu_state__millions_ INTEGER, total_foreign_born__millions_ VARCHAR, total_population__millions_ VARCHAR) | 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 |
10,931 | <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? <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) | 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 |
10,932 | <question>: How many people were born in a non EU state (in millions), when the Total population (in millions) was 62.008? <context>: CREATE TABLE table_name_32 (born_in_a_non_eu_state__millions_ VARCHAR, total_population__millions_ VARCHAR) | SELECT born_in_a_non_eu_state__millions_ FROM table_name_32 WHERE total_population__millions_ = 62.008 |
10,933 | <question>: What away team has tottenham hotspur as the home team? <context>: CREATE TABLE table_name_67 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_67 WHERE home_team = "tottenham hotspur" |
10,934 | <question>: What is the Tamil Name of the Thaipusam holiday? <context>: CREATE TABLE table_name_96 (tamil_name VARCHAR, english_name VARCHAR) | SELECT tamil_name FROM table_name_96 WHERE english_name = "thaipusam" |
10,935 | <question>: What is the Tamil Name of சந்திர புத்தாண்டு (தினம் 2)? <context>: CREATE TABLE table_name_80 (type VARCHAR, tamil_name VARCHAR) | SELECT type FROM table_name_80 WHERE tamil_name = "சந்திர புத்தாண்டு (தினம் 2)" |
10,936 | <question>: What is the Chinese Type Chinese Name of the holiday with a Tamil Name of சந்திர புத்தாண்டு (தினம் 3)? <context>: CREATE TABLE table_name_25 (chinese_name VARCHAR, type VARCHAR, tamil_name VARCHAR) | SELECT chinese_name FROM table_name_25 WHERE type = "chinese" AND tamil_name = "சந்திர புத்தாண்டு (தினம் 3)" |
10,937 | <question>: Who was second for the United States team? <context>: CREATE TABLE table_name_35 (second VARCHAR, nation VARCHAR) | SELECT second FROM table_name_35 WHERE nation = "united states" |
10,938 | <question>: Yumie Hayashi was third for which club? <context>: CREATE TABLE table_name_23 (club VARCHAR, third VARCHAR) | SELECT club FROM table_name_23 WHERE third = "yumie hayashi" |
10,939 | <question>: Who was Switzerland's alternate? <context>: CREATE TABLE table_name_86 (alternate VARCHAR, nation VARCHAR) | SELECT alternate FROM table_name_86 WHERE nation = "switzerland" |
10,940 | <question>: Which club was from Great Britain? <context>: CREATE TABLE table_name_27 (club VARCHAR, nation VARCHAR) | SELECT club FROM table_name_27 WHERE nation = "great britain" |
10,941 | <question>: Glenys Bakker was second for which nation? <context>: CREATE TABLE table_name_74 (nation VARCHAR, second VARCHAR) | SELECT nation FROM table_name_74 WHERE second = "glenys bakker" |
10,942 | <question>: Rosa Pompanin was second for which club? <context>: CREATE TABLE table_name_64 (club VARCHAR, second VARCHAR) | SELECT club FROM table_name_64 WHERE second = "rosa pompanin" |
10,943 | <question>: What date was the Singapore Gross 1999? <context>: CREATE TABLE table_name_18 (date VARCHAR, singapore_gross VARCHAR) | SELECT date FROM table_name_18 WHERE singapore_gross = "1999" |
10,944 | <question>: What is the name of the producer that produced a film with a production cost of $1,000,000? <context>: CREATE TABLE table_name_71 (producer VARCHAR, production_cost VARCHAR) | SELECT producer FROM table_name_71 WHERE production_cost = "$1,000,000" |
10,945 | <question>: What is the name of the director who directed the movie that Raintree Pictures produced? <context>: CREATE TABLE table_name_13 (director VARCHAR, producer VARCHAR) | SELECT director FROM table_name_13 WHERE producer = "raintree pictures" |
10,946 | <question>: What is the title of the film that had a production cost of $850,000? <context>: CREATE TABLE table_name_93 (title VARCHAR, production_cost VARCHAR) | SELECT title FROM table_name_93 WHERE production_cost = "$850,000" |
10,947 | <question>: How much is the Singapore Gross for the film that Siu Wing directed? <context>: CREATE TABLE table_name_93 (singapore_gross VARCHAR, director VARCHAR) | SELECT singapore_gross FROM table_name_93 WHERE director = "siu wing" |
10,948 | <question>: What is the Date with an Away that is broadview hawks? <context>: CREATE TABLE table_name_5 (date VARCHAR, away VARCHAR) | SELECT date FROM table_name_5 WHERE away = "broadview hawks" |
10,949 | <question>: What is the Home with an Away that is toronto rebels? <context>: CREATE TABLE table_name_94 (home VARCHAR, away VARCHAR) | SELECT home FROM table_name_94 WHERE away = "toronto rebels" |
10,950 | <question>: What is the Time with a Score that is 46-82? <context>: CREATE TABLE table_name_17 (time VARCHAR, score VARCHAR) | SELECT time FROM table_name_17 WHERE score = "46-82" |
10,951 | <question>: What is the Date with an Away that is central blues? <context>: CREATE TABLE table_name_15 (date VARCHAR, away VARCHAR) | SELECT date FROM table_name_15 WHERE away = "central blues" |
10,952 | <question>: What is the Time with a Home that is high park demons? <context>: CREATE TABLE table_name_31 (time VARCHAR, home VARCHAR) | SELECT time FROM table_name_31 WHERE home = "high park demons" |
10,953 | <question>: What is the Away with a Score that is 46-82? <context>: CREATE TABLE table_name_70 (away VARCHAR, score VARCHAR) | SELECT away FROM table_name_70 WHERE score = "46-82" |
10,954 | <question>: Which Partner is on 22 april 2002? <context>: CREATE TABLE table_name_35 (partner VARCHAR, date VARCHAR) | SELECT partner FROM table_name_35 WHERE date = "22 april 2002" |
10,955 | <question>: Which Partner has an Opponents of wayne arthurs sandon stolle? <context>: CREATE TABLE table_name_24 (partner VARCHAR, opponents VARCHAR) | SELECT partner FROM table_name_24 WHERE opponents = "wayne arthurs sandon stolle" |
10,956 | <question>: Which Score has a Tournament of san jose, us (2)? <context>: CREATE TABLE table_name_56 (score VARCHAR, tournament VARCHAR) | SELECT score FROM table_name_56 WHERE tournament = "san jose, us (2)" |
10,957 | <question>: Which Opponents has a Score of 6–3, 6–4, 6–1? <context>: CREATE TABLE table_name_60 (opponents VARCHAR, score VARCHAR) | SELECT opponents FROM table_name_60 WHERE score = "6–3, 6–4, 6–1" |
10,958 | <question>: Which Outcome has a Score of 6–4, 6–4, 6–2? <context>: CREATE TABLE table_name_19 (outcome VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_19 WHERE score = "6–4, 6–4, 6–2" |
10,959 | <question>: Which Tournament has a Score of 1–6, 0–6? <context>: CREATE TABLE table_name_89 (tournament VARCHAR, score VARCHAR) | SELECT tournament FROM table_name_89 WHERE score = "1–6, 0–6" |
10,960 | <question>: Who is the opponent of the 3:00 time? <context>: CREATE TABLE table_name_73 (opponent VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_73 WHERE time = "3:00" |
10,961 | <question>: What was the score of the game with Nathalie Tauziat as a partner? <context>: CREATE TABLE table_name_7 (score VARCHAR, partnering VARCHAR) | SELECT score FROM table_name_7 WHERE partnering = "nathalie tauziat" |
10,962 | <question>: What type of surface was used for the game played on September 20, 1993? <context>: CREATE TABLE table_name_93 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_93 WHERE date = "september 20, 1993" |
10,963 | <question>: What was the score of the game that was played on a grass surface? <context>: CREATE TABLE table_name_24 (score VARCHAR, surface VARCHAR) | SELECT score FROM table_name_24 WHERE surface = "grass" |
10,964 | <question>: What was the date of the game that was played against Laura Golarsa? <context>: CREATE TABLE table_name_85 (date VARCHAR, partnering VARCHAR) | SELECT date FROM table_name_85 WHERE partnering = "laura golarsa" |
10,965 | <question>: What is the total rank of the celebrity with a 34.66 average and a season greater than 1? <context>: CREATE TABLE table_name_39 (rank VARCHAR, average VARCHAR, season VARCHAR) | SELECT COUNT(rank) FROM table_name_39 WHERE average = 34.66 AND season > 1 |
10,966 | <question>: What is the highest average of celebrity Natalia Lesz, who is ranked greater than 4? <context>: CREATE TABLE table_name_19 (average INTEGER, rank VARCHAR, celebrity VARCHAR) | SELECT MAX(average) FROM table_name_19 WHERE rank > 4 AND celebrity = "natalia lesz" |
10,967 | <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? <context>: CREATE TABLE table_name_52 (professional_partner VARCHAR, celebrity VARCHAR, rank VARCHAR, season VARCHAR, average VARCHAR) | SELECT professional_partner FROM table_name_52 WHERE season < 7 AND average > 34.66 AND rank < 10 AND celebrity = "małgorzata foremniak" |
10,968 | <question>: What is the primary language used in the film title Nynke? <context>: CREATE TABLE table_name_86 (main_language_s_ VARCHAR, original_title VARCHAR) | SELECT main_language_s_ FROM table_name_86 WHERE original_title = "nynke" |
10,969 | <question>: For the film made in 1964: (37th), what was the result? <context>: CREATE TABLE table_name_11 (result VARCHAR, year VARCHAR) | SELECT result FROM table_name_11 WHERE year = "1964: (37th)" |
10,970 | <question>: What is the nomination title used for the original film, Monsieur Hawarden? <context>: CREATE TABLE table_name_18 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) | SELECT film_title_used_in_nomination FROM table_name_18 WHERE original_title = "monsieur hawarden" |
10,971 | <question>: What is the nomination title used for the original film, Zwartboek? <context>: CREATE TABLE table_name_98 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) | SELECT film_title_used_in_nomination FROM table_name_98 WHERE original_title = "zwartboek" |
10,972 | <question>: What is the primary language used in the film, Black Book? <context>: CREATE TABLE table_name_53 (main_language_s_ VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT main_language_s_ FROM table_name_53 WHERE film_title_used_in_nomination = "black book" |
10,973 | <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? <context>: CREATE TABLE table_name_53 (agricultural_panel INTEGER, national_university_of_ireland VARCHAR, labour_panel VARCHAR, total VARCHAR) | SELECT AVG(agricultural_panel) FROM table_name_53 WHERE labour_panel < 1 AND total < 21 AND national_university_of_ireland > 0 |
10,974 | <question>: What is the highest administrative panel value with an agricultural panel less than 1 and a labour panel value less than 5? <context>: CREATE TABLE table_name_56 (administrative_panel INTEGER, agricultural_panel VARCHAR, labour_panel VARCHAR) | SELECT MAX(administrative_panel) FROM table_name_56 WHERE agricultural_panel < 1 AND labour_panel < 5 |
10,975 | <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? <context>: CREATE TABLE table_name_43 (labour_panel INTEGER, total VARCHAR, cultural_and_educational_panel VARCHAR, university_of_dublin VARCHAR) | SELECT MAX(labour_panel) FROM table_name_43 WHERE cultural_and_educational_panel > 1 AND university_of_dublin > 0 AND total < 60 |
10,976 | <question>: What is the total University of Dublin value with a labour panel greater than 11? <context>: CREATE TABLE table_name_45 (university_of_dublin VARCHAR, labour_panel INTEGER) | SELECT COUNT(university_of_dublin) FROM table_name_45 WHERE labour_panel > 11 |
10,977 | <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? <context>: CREATE TABLE table_name_87 (cultural_and_educational_panel INTEGER, administrative_panel VARCHAR, agricultural_panel VARCHAR) | SELECT SUM(cultural_and_educational_panel) FROM table_name_87 WHERE administrative_panel = 0 AND agricultural_panel < 0 |
10,978 | <question>: What is the highest 2012 immigration for a country with an immigration of 81,094 in 2011? <context>: CREATE TABLE table_name_69 (Id VARCHAR) | SELECT MAX(2012) FROM table_name_69 WHERE 2011 = 81 OFFSET 094 |
10,979 | <question>: What is the Gauge of Locomotive G534 Owned by Aurizon which has a Status of Operational? <context>: CREATE TABLE table_name_39 (gauge VARCHAR, locomotive VARCHAR, status VARCHAR, owner VARCHAR) | SELECT gauge FROM table_name_39 WHERE status = "operational" AND owner = "aurizon" AND locomotive = "g534" |
10,980 | <question>: Which Locomotive Entered Service in November 1984 and has an Operator of Southern Shorthaul Railroad? <context>: CREATE TABLE table_name_59 (locomotive VARCHAR, operator VARCHAR, entered_service VARCHAR) | SELECT locomotive FROM table_name_59 WHERE operator = "southern shorthaul railroad" AND entered_service = "november 1984" |
10,981 | <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? <context>: CREATE TABLE table_name_90 (serial_no VARCHAR, entered_service VARCHAR, owner VARCHAR) | SELECT serial_no FROM table_name_90 WHERE entered_service = "november 1984" AND owner = "chicago freight car leasing australia" |
10,982 | <question>: What is the Serial Number of the Locomotive that Entered Service October 1989? <context>: CREATE TABLE table_name_26 (serial_no VARCHAR, entered_service VARCHAR) | SELECT serial_no FROM table_name_26 WHERE entered_service = "october 1989" |
10,983 | <question>: What is the 2011 value with a 2008 value of 0.3 and is a member state of the European Union? <context>: CREATE TABLE table_name_64 (member_state VARCHAR) | SELECT 2011 FROM table_name_64 WHERE 2008 = "0.3" AND member_state = "european union" |
10,984 | <question>: What is the 2012 value with a 1.3 in 2010 and a 3.6 in 2008? <context>: CREATE TABLE table_name_67 (Id VARCHAR) | SELECT 2012 FROM table_name_67 WHERE 2010 = "1.3" AND 2008 = "3.6" |
10,985 | <question>: What is the sum of Yellow, when Category is Bugre (Indian), and when Amerindian is less than 50,00? <context>: CREATE TABLE table_name_76 (yellow INTEGER, category VARCHAR, amerindian VARCHAR) | SELECT SUM(yellow) FROM table_name_76 WHERE category = "bugre (indian)" AND amerindian < 50 OFFSET 00 |
10,986 | <question>: What kind of IATA has an Airport of hamburg airport? <context>: CREATE TABLE table_name_5 (iata VARCHAR, airport VARCHAR) | SELECT iata FROM table_name_5 WHERE airport = "hamburg airport" |
10,987 | <question>: Which Country that has a IATA of bal? <context>: CREATE TABLE table_name_83 (country VARCHAR, iata VARCHAR) | SELECT country FROM table_name_83 WHERE iata = "bal" |
10,988 | <question>: Which Country has a IATA of vie? <context>: CREATE TABLE table_name_32 (country VARCHAR, iata VARCHAR) | SELECT country FROM table_name_32 WHERE iata = "vie" |
10,989 | <question>: WHich Country has a ICAO of ltcd? <context>: CREATE TABLE table_name_46 (country VARCHAR, icao VARCHAR) | SELECT country FROM table_name_46 WHERE icao = "ltcd" |
10,990 | <question>: Which Airport has a IATA of erz? <context>: CREATE TABLE table_name_63 (airport VARCHAR, iata VARCHAR) | SELECT airport FROM table_name_63 WHERE iata = "erz" |
10,991 | <question>: What kind of IATA that has a Airport of berlin schönefeld airport? <context>: CREATE TABLE table_name_83 (iata VARCHAR, airport VARCHAR) | SELECT iata FROM table_name_83 WHERE airport = "berlin schönefeld airport" |
10,992 | <question>: Who provided lyrics or music to the artist Cube? <context>: CREATE TABLE table_name_46 (lyrics__l____music__m_ VARCHAR, artist VARCHAR) | SELECT lyrics__l____music__m_ FROM table_name_46 WHERE artist = "cube" |
10,993 | <question>: What was the aircraft damage for the Boeing 707-320B? <context>: CREATE TABLE table_name_51 (aircraft VARCHAR) | SELECT aircraft AS damage FROM table_name_51 WHERE aircraft = "boeing 707-320b" |
10,994 | <question>: What was the number of fatalities for the Viscount 700? <context>: CREATE TABLE table_name_71 (fatalities VARCHAR, aircraft VARCHAR) | SELECT fatalities FROM table_name_71 WHERE aircraft = "viscount 700" |
10,995 | <question>: What was the aircraft damage for the accident that had fatalities of 30/30? <context>: CREATE TABLE table_name_35 (aircraft VARCHAR, fatalities VARCHAR) | SELECT aircraft AS damage FROM table_name_35 WHERE fatalities = "30/30" |
10,996 | <question>: What was the location that had an accident by the F-27-600RF aircraft with tail number 6O-SAZ? <context>: CREATE TABLE table_name_42 (location VARCHAR, aircraft VARCHAR, tail_number VARCHAR) | SELECT location FROM table_name_42 WHERE aircraft = "f-27-600rf" AND tail_number = "6o-saz" |
10,997 | <question>: What was the tail number of the aircraft that had 5/30 fatalities? <context>: CREATE TABLE table_name_86 (tail_number VARCHAR, fatalities VARCHAR) | SELECT tail_number FROM table_name_86 WHERE fatalities = "5/30" |
10,998 | <question>: What was the location of the accident that led to 50/50 fatalities? <context>: CREATE TABLE table_name_84 (location VARCHAR, fatalities VARCHAR) | SELECT location FROM table_name_84 WHERE fatalities = "50/50" |
10,999 | <question>: What % has 4 RLng? <context>: CREATE TABLE table_name_80 (int_percentage VARCHAR, rlng VARCHAR) | SELECT int_percentage FROM table_name_80 WHERE rlng = "4" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.