question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
Where is two medicine formation? | CREATE TABLE table_name_46 (location VARCHAR, unit VARCHAR) | SELECT location FROM table_name_46 WHERE unit = "two medicine formation" |
What is varricchio's unit? | CREATE TABLE table_name_75 (unit VARCHAR, authors VARCHAR) | SELECT unit FROM table_name_75 WHERE authors = "varricchio" |
Which authors have a Unit of densuș-ciula formation? | CREATE TABLE table_name_42 (authors VARCHAR, unit VARCHAR) | SELECT authors FROM table_name_42 WHERE unit = "densuș-ciula formation" |
Which Status has a Unit of daohugou beds? | CREATE TABLE table_name_55 (status VARCHAR, unit VARCHAR) | SELECT status FROM table_name_55 WHERE unit = "daohugou beds" |
What is varricchio's status? | CREATE TABLE table_name_75 (status VARCHAR, authors VARCHAR) | SELECT status FROM table_name_75 WHERE authors = "varricchio" |
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? | 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 |
What are the most games when the points are 100 and goals for less than 356? | 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 |
What is the most points when the goals against are 354 and games less than 82? | 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 |
For games less than 70 and goals for greater than 335 what is the most points? | 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 |
What is Gold, when Total is less than 4, when Silver is 1, and when Bronze is 1? | 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" |
What is Silver, when Total is greater than 4, when Bronze is 2, and when Rank is greater than 1? | 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 |
Who was on the Socialist Labor ticket that had Arthur Levitt as the Liberal Ticket? | 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" |
Robert S. Flanzer was the Free Libertarian ticket with who listed as the Liberal Ticket? | 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" |
The Liberal Ticket listed which candidate when Jack A. Martin was listed on the Free Libertarian Ticket? | 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" |
The person who is on the Democratic ticket for the position of Office of U.S. Senator was who? | CREATE TABLE table_name_68 (democratic_ticket VARCHAR, office VARCHAR) | SELECT democratic_ticket FROM table_name_68 WHERE office = "u.s. senator" |
Leland W. Schubert, Free Libertarian ticket, had who listed on the Democratic ticket? | 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" |
What is the lowest Extras for Chamara Kapugedera, with an E.R. less than 4.59? | 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 |
What is the highest Extras with an E.R. of 4.59, and more than 101 Runs Conceded? | 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 |
What is the average Extras for Muttiah Muralitharan, with less than 353 Runs Conceded? | 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 |
What is the highest Extras for Farveez Maharoof, with more than 4 wickets? | 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 |
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? | 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 |
How many FA Cups on average have a larger total than 32 and a larger league than 24? | 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 |
How many FA Trophies had a total of 27, 2 FA cups, and a league larger than 24? | 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 |
What is the year built of the home with a built status and a 42 m. height? | CREATE TABLE table_name_41 (status VARCHAR, height VARCHAR) | SELECT "built" FROM table_name_41 WHERE status = "built" AND height = "42 m." |
What is the height of the home with stories greater than 22 and built in 2009? | CREATE TABLE table_name_34 (height VARCHAR, stories VARCHAR, built VARCHAR) | SELECT height FROM table_name_34 WHERE stories > 22 AND built = "2009" |
What is the highest number of stories in homes with a height of 42 m.? | CREATE TABLE table_name_7 (stories INTEGER, height VARCHAR) | SELECT MAX(stories) FROM table_name_7 WHERE height = "42 m." |
When the game is listed as 2, what is the score? | CREATE TABLE table_name_81 (score VARCHAR, game VARCHAR) | SELECT score FROM table_name_81 WHERE game = 2 |
What is the latest November date with an Opponent of @ Pittsburgh Pirates and the game is more than 3? | 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 |
When the record is listed as 2-0-0, and the November date is less than 27, what is the sum of the game? | 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" |
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? | 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 |
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? | 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 |
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? | 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 |
How many people were born in a non EU state (in millions), when the Total population (in millions) was 62.008? | 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 |
What away team has tottenham hotspur as the home team? | CREATE TABLE table_name_67 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_67 WHERE home_team = "tottenham hotspur" |
What is the Tamil Name of the Thaipusam holiday? | CREATE TABLE table_name_96 (tamil_name VARCHAR, english_name VARCHAR) | SELECT tamil_name FROM table_name_96 WHERE english_name = "thaipusam" |
What is the Tamil Name of சந்திர புத்தாண்டு (தினம் 2)? | CREATE TABLE table_name_80 (type VARCHAR, tamil_name VARCHAR) | SELECT type FROM table_name_80 WHERE tamil_name = "சந்திர புத்தாண்டு (தினம் 2)" |
What is the Chinese Type Chinese Name of the holiday with a Tamil Name of சந்திர புத்தாண்டு (தினம் 3)? | 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)" |
Who was second for the United States team? | CREATE TABLE table_name_35 (second VARCHAR, nation VARCHAR) | SELECT second FROM table_name_35 WHERE nation = "united states" |
Yumie Hayashi was third for which club? | CREATE TABLE table_name_23 (club VARCHAR, third VARCHAR) | SELECT club FROM table_name_23 WHERE third = "yumie hayashi" |
Who was Switzerland's alternate? | CREATE TABLE table_name_86 (alternate VARCHAR, nation VARCHAR) | SELECT alternate FROM table_name_86 WHERE nation = "switzerland" |
Which club was from Great Britain? | CREATE TABLE table_name_27 (club VARCHAR, nation VARCHAR) | SELECT club FROM table_name_27 WHERE nation = "great britain" |
Glenys Bakker was second for which nation? | CREATE TABLE table_name_74 (nation VARCHAR, second VARCHAR) | SELECT nation FROM table_name_74 WHERE second = "glenys bakker" |
Rosa Pompanin was second for which club? | CREATE TABLE table_name_64 (club VARCHAR, second VARCHAR) | SELECT club FROM table_name_64 WHERE second = "rosa pompanin" |
What date was the Singapore Gross 1999? | CREATE TABLE table_name_18 (date VARCHAR, singapore_gross VARCHAR) | SELECT date FROM table_name_18 WHERE singapore_gross = "1999" |
What is the name of the producer that produced a film with a production cost of $1,000,000? | CREATE TABLE table_name_71 (producer VARCHAR, production_cost VARCHAR) | SELECT producer FROM table_name_71 WHERE production_cost = "$1,000,000" |
What is the name of the director who directed the movie that Raintree Pictures produced? | CREATE TABLE table_name_13 (director VARCHAR, producer VARCHAR) | SELECT director FROM table_name_13 WHERE producer = "raintree pictures" |
What is the title of the film that had a production cost of $850,000? | CREATE TABLE table_name_93 (title VARCHAR, production_cost VARCHAR) | SELECT title FROM table_name_93 WHERE production_cost = "$850,000" |
How much is the Singapore Gross for the film that Siu Wing directed? | CREATE TABLE table_name_93 (singapore_gross VARCHAR, director VARCHAR) | SELECT singapore_gross FROM table_name_93 WHERE director = "siu wing" |
What is the Date with an Away that is broadview hawks? | CREATE TABLE table_name_5 (date VARCHAR, away VARCHAR) | SELECT date FROM table_name_5 WHERE away = "broadview hawks" |
What is the Home with an Away that is toronto rebels? | CREATE TABLE table_name_94 (home VARCHAR, away VARCHAR) | SELECT home FROM table_name_94 WHERE away = "toronto rebels" |
What is the Time with a Score that is 46-82? | CREATE TABLE table_name_17 (time VARCHAR, score VARCHAR) | SELECT time FROM table_name_17 WHERE score = "46-82" |
What is the Date with an Away that is central blues? | CREATE TABLE table_name_15 (date VARCHAR, away VARCHAR) | SELECT date FROM table_name_15 WHERE away = "central blues" |
What is the Time with a Home that is high park demons? | CREATE TABLE table_name_31 (time VARCHAR, home VARCHAR) | SELECT time FROM table_name_31 WHERE home = "high park demons" |
What is the Away with a Score that is 46-82? | CREATE TABLE table_name_70 (away VARCHAR, score VARCHAR) | SELECT away FROM table_name_70 WHERE score = "46-82" |
Which Partner is on 22 april 2002? | CREATE TABLE table_name_35 (partner VARCHAR, date VARCHAR) | SELECT partner FROM table_name_35 WHERE date = "22 april 2002" |
Which Partner has an Opponents of wayne arthurs sandon stolle? | CREATE TABLE table_name_24 (partner VARCHAR, opponents VARCHAR) | SELECT partner FROM table_name_24 WHERE opponents = "wayne arthurs sandon stolle" |
Which Score has a Tournament of san jose, us (2)? | CREATE TABLE table_name_56 (score VARCHAR, tournament VARCHAR) | SELECT score FROM table_name_56 WHERE tournament = "san jose, us (2)" |
Which Opponents has a Score of 6–3, 6–4, 6–1? | CREATE TABLE table_name_60 (opponents VARCHAR, score VARCHAR) | SELECT opponents FROM table_name_60 WHERE score = "6–3, 6–4, 6–1" |
Which Outcome has a Score of 6–4, 6–4, 6–2? | CREATE TABLE table_name_19 (outcome VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_19 WHERE score = "6–4, 6–4, 6–2" |
Which Tournament has a Score of 1–6, 0–6? | CREATE TABLE table_name_89 (tournament VARCHAR, score VARCHAR) | SELECT tournament FROM table_name_89 WHERE score = "1–6, 0–6" |
Who is the opponent of the 3:00 time? | CREATE TABLE table_name_73 (opponent VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_73 WHERE time = "3:00" |
What was the score of the game with Nathalie Tauziat as a partner? | CREATE TABLE table_name_7 (score VARCHAR, partnering VARCHAR) | SELECT score FROM table_name_7 WHERE partnering = "nathalie tauziat" |
What type of surface was used for the game played on September 20, 1993? | CREATE TABLE table_name_93 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_93 WHERE date = "september 20, 1993" |
What was the score of the game that was played on a grass surface? | CREATE TABLE table_name_24 (score VARCHAR, surface VARCHAR) | SELECT score FROM table_name_24 WHERE surface = "grass" |
What was the date of the game that was played against Laura Golarsa? | CREATE TABLE table_name_85 (date VARCHAR, partnering VARCHAR) | SELECT date FROM table_name_85 WHERE partnering = "laura golarsa" |
What is the total rank of the celebrity with a 34.66 average and a season greater than 1? | 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 |
What is the highest average of celebrity Natalia Lesz, who is ranked greater than 4? | 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" |
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? | 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" |
What is the primary language used in the film title Nynke? | CREATE TABLE table_name_86 (main_language_s_ VARCHAR, original_title VARCHAR) | SELECT main_language_s_ FROM table_name_86 WHERE original_title = "nynke" |
For the film made in 1964: (37th), what was the result? | CREATE TABLE table_name_11 (result VARCHAR, year VARCHAR) | SELECT result FROM table_name_11 WHERE year = "1964: (37th)" |
What is the nomination title used for the original film, Monsieur Hawarden? | 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" |
What is the nomination title used for the original film, Zwartboek? | 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" |
What is the primary language used in the film, Black Book? | 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" |
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? | 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 |
What is the highest administrative panel value with an agricultural panel less than 1 and a labour panel value less than 5? | 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 |
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? | 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 |
What is the total University of Dublin value with a labour panel greater than 11? | 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 |
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? | 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 |
What is the highest 2012 immigration for a country with an immigration of 81,094 in 2011? | CREATE TABLE table_name_69 (Id VARCHAR) | SELECT MAX(2012) FROM table_name_69 WHERE 2011 = 81 OFFSET 094 |
What is the Gauge of Locomotive G534 Owned by Aurizon which has a Status of Operational? | 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" |
Which Locomotive Entered Service in November 1984 and has an Operator of Southern Shorthaul Railroad? | 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" |
What is the Serial number of the Locomotive that Entered Service in November 1984 and has an Owner of Chicago Freight Car Leasing Australia? | 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" |
What is the Serial Number of the Locomotive that Entered Service October 1989? | CREATE TABLE table_name_26 (serial_no VARCHAR, entered_service VARCHAR) | SELECT serial_no FROM table_name_26 WHERE entered_service = "october 1989" |
What is the 2011 value with a 2008 value of 0.3 and is a member state of the European Union? | CREATE TABLE table_name_64 (member_state VARCHAR) | SELECT 2011 FROM table_name_64 WHERE 2008 = "0.3" AND member_state = "european union" |
What is the 2012 value with a 1.3 in 2010 and a 3.6 in 2008? | CREATE TABLE table_name_67 (Id VARCHAR) | SELECT 2012 FROM table_name_67 WHERE 2010 = "1.3" AND 2008 = "3.6" |
What is the sum of Yellow, when Category is Bugre (Indian), and when Amerindian is less than 50,00? | 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 |
What kind of IATA has an Airport of hamburg airport? | CREATE TABLE table_name_5 (iata VARCHAR, airport VARCHAR) | SELECT iata FROM table_name_5 WHERE airport = "hamburg airport" |
Which Country that has a IATA of bal? | CREATE TABLE table_name_83 (country VARCHAR, iata VARCHAR) | SELECT country FROM table_name_83 WHERE iata = "bal" |
Which Country has a IATA of vie? | CREATE TABLE table_name_32 (country VARCHAR, iata VARCHAR) | SELECT country FROM table_name_32 WHERE iata = "vie" |
WHich Country has a ICAO of ltcd? | CREATE TABLE table_name_46 (country VARCHAR, icao VARCHAR) | SELECT country FROM table_name_46 WHERE icao = "ltcd" |
Which Airport has a IATA of erz? | CREATE TABLE table_name_63 (airport VARCHAR, iata VARCHAR) | SELECT airport FROM table_name_63 WHERE iata = "erz" |
What kind of IATA that has a Airport of berlin schönefeld airport? | CREATE TABLE table_name_83 (iata VARCHAR, airport VARCHAR) | SELECT iata FROM table_name_83 WHERE airport = "berlin schönefeld airport" |
Who provided lyrics or music to the artist Cube? | CREATE TABLE table_name_46 (lyrics__l____music__m_ VARCHAR, artist VARCHAR) | SELECT lyrics__l____music__m_ FROM table_name_46 WHERE artist = "cube" |
What was the aircraft damage for the Boeing 707-320B? | CREATE TABLE table_name_51 (aircraft VARCHAR) | SELECT aircraft AS damage FROM table_name_51 WHERE aircraft = "boeing 707-320b" |
What was the number of fatalities for the Viscount 700? | CREATE TABLE table_name_71 (fatalities VARCHAR, aircraft VARCHAR) | SELECT fatalities FROM table_name_71 WHERE aircraft = "viscount 700" |
What was the aircraft damage for the accident that had fatalities of 30/30? | CREATE TABLE table_name_35 (aircraft VARCHAR, fatalities VARCHAR) | SELECT aircraft AS damage FROM table_name_35 WHERE fatalities = "30/30" |
What was the location that had an accident by the F-27-600RF aircraft with tail number 6O-SAZ? | 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" |
What was the tail number of the aircraft that had 5/30 fatalities? | CREATE TABLE table_name_86 (tail_number VARCHAR, fatalities VARCHAR) | SELECT tail_number FROM table_name_86 WHERE fatalities = "5/30" |
What was the location of the accident that led to 50/50 fatalities? | CREATE TABLE table_name_84 (location VARCHAR, fatalities VARCHAR) | SELECT location FROM table_name_84 WHERE fatalities = "50/50" |
What % has 4 RLng? | 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.