question
stringlengths 12
244
| create_table_statement
stringlengths 97
895
| sql_query
stringlengths 27
479
| wiki_sql_table_id
stringlengths 8
14
|
---|---|---|---|
Who is the director of the fimm Biola Tak Berdawai? | CREATE TABLE "submissions" (
"year_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"director" text,
"result" text
); | SELECT "director" FROM "submissions" WHERE "original_title"='Biola tak berdawai'; | 1-13719788-1 |
What title was used in the nomination for the title Biola Tak Berdawai? | CREATE TABLE "submissions" (
"year_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"director" text,
"result" text
); | SELECT "film_title_used_in_nomination" FROM "submissions" WHERE "original_title"='Biola tak berdawai'; | 1-13719788-1 |
How many years have a film that uses the title "Nagabonar" in the nomination? | CREATE TABLE "submissions" (
"year_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"director" text,
"result" text
); | SELECT COUNT("year_ceremony") FROM "submissions" WHERE "film_title_used_in_nomination"='Nagabonar'; | 1-13719788-1 |
Who is the director of the film Gie? | CREATE TABLE "submissions" (
"year_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"director" text,
"result" text
); | SELECT "director" FROM "submissions" WHERE "film_title_used_in_nomination"='Gie'; | 1-13719788-1 |
Name the try bonus for tries against is 70 | CREATE TABLE "2008_2009_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "try_bonus" FROM "2008_2009_table" WHERE "tries_against"='70'; | 1-13741576-4 |
What is the try bonus for when tries against is 43? | CREATE TABLE "2008_2009_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "try_bonus" FROM "2008_2009_table" WHERE "tries_against"='43'; | 1-13741576-4 |
Name the drawn for llandaff rfc | CREATE TABLE "2008_2009_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "drawn" FROM "2008_2009_table" WHERE "club"='Llandaff RFC'; | 1-13741576-4 |
Name the won for try bonus of 10 | CREATE TABLE "2008_2009_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "won" FROM "2008_2009_table" WHERE "try_bonus"='10'; | 1-13741576-4 |
It was announced on July 2, 2006 that what asset was acquired? | CREATE TABLE "table1_1373542_1" (
"asset_acquired" text,
"acquired_from" text,
"date_announced" text,
"date_completed" text,
"reported_cost" text
); | SELECT "asset_acquired" FROM "table1_1373542_1" WHERE "date_announced"='July 2, 2006'; | 1-1373542-1 |
On what date was it announced that an asset was acquired for US$9 Million? | CREATE TABLE "table1_1373542_1" (
"asset_acquired" text,
"acquired_from" text,
"date_announced" text,
"date_completed" text,
"reported_cost" text
); | SELECT "date_announced" FROM "table1_1373542_1" WHERE "reported_cost"='US$9 million'; | 1-1373542-1 |
On what date was the asset acquisition that was announced on February 22, 2007 completed? | CREATE TABLE "table1_1373542_1" (
"asset_acquired" text,
"acquired_from" text,
"date_announced" text,
"date_completed" text,
"reported_cost" text
); | SELECT "date_completed" FROM "table1_1373542_1" WHERE "date_announced"='February 22, 2007'; | 1-1373542-1 |
It is was announced on July 2, 2006 that what asset had been acquired? | CREATE TABLE "table1_1373542_1" (
"asset_acquired" text,
"acquired_from" text,
"date_announced" text,
"date_completed" text,
"reported_cost" text
); | SELECT "asset_acquired" FROM "table1_1373542_1" WHERE "date_announced"='July 2, 2006'; | 1-1373542-1 |
What was the reported cost of the asset acquired from Standard & Poor's? | CREATE TABLE "table1_1373542_1" (
"asset_acquired" text,
"acquired_from" text,
"date_announced" text,
"date_completed" text,
"reported_cost" text
); | SELECT "reported_cost" FROM "table1_1373542_1" WHERE "acquired_from"='Standard & Poor''s'; | 1-1373542-1 |
what's the trim with fuel mileage (latest epa mpg - us ) being 22 city, 30 hwy, 25 comb | CREATE TABLE "engines" (
"trim" text,
"engine" text,
"displacement" text,
"power" text,
"torque" text,
"transmission" text,
"fuel_mileage_latest_epa_mpg_us" text
); | SELECT "trim" FROM "engines" WHERE "fuel_mileage_latest_epa_mpg_us"='22 city, 30 hwy, 25 comb'; | 1-1373768-1 |
what's the trim with fuel mileage (latest epa mpg - us ) being 22 city, 30 hwy, 25 comb | CREATE TABLE "engines" (
"trim" text,
"engine" text,
"displacement" text,
"power" text,
"torque" text,
"transmission" text,
"fuel_mileage_latest_epa_mpg_us" text
); | SELECT "trim" FROM "engines" WHERE "fuel_mileage_latest_epa_mpg_us"='22 city, 30 hwy, 25 comb'; | 1-1373768-1 |
what's the trim with engine being 3.5l lz4 v6 | CREATE TABLE "engines" (
"trim" text,
"engine" text,
"displacement" text,
"power" text,
"torque" text,
"transmission" text,
"fuel_mileage_latest_epa_mpg_us" text
); | SELECT "trim" FROM "engines" WHERE "engine"='3.5L LZ4 V6'; | 1-1373768-1 |
what's the torque with fuel mileage (latest epa mpg - us ) being 22 city, 30 hwy, 25 comb | CREATE TABLE "engines" (
"trim" text,
"engine" text,
"displacement" text,
"power" text,
"torque" text,
"transmission" text,
"fuel_mileage_latest_epa_mpg_us" text
); | SELECT "torque" FROM "engines" WHERE "fuel_mileage_latest_epa_mpg_us"='22 city, 30 hwy, 25 comb'; | 1-1373768-1 |
what's the torque with trim being xe (2009) | CREATE TABLE "engines" (
"trim" text,
"engine" text,
"displacement" text,
"power" text,
"torque" text,
"transmission" text,
"fuel_mileage_latest_epa_mpg_us" text
); | SELECT "torque" FROM "engines" WHERE "trim"='XE (2009)'; | 1-1373768-1 |
what's the transmbeingsion with trim being xe (2009) | CREATE TABLE "engines" (
"trim" text,
"engine" text,
"displacement" text,
"power" text,
"torque" text,
"transmission" text,
"fuel_mileage_latest_epa_mpg_us" text
); | SELECT "transmission" FROM "engines" WHERE "trim"='XE (2009)'; | 1-1373768-1 |
Who is the director of the episode "rain of terror" that was written by John Brown? | CREATE TABLE "table1_13740746_1" (
"ep_no" real,
"title" text,
"director" text,
"written_by" text,
"original_air_date" text,
"production_no" real
); | SELECT "director" FROM "table1_13740746_1" WHERE "written_by"='John Brown' AND "title"='\"Rain of Terror\"'; | 1-13740746-1 |
What is the production number of "rain of terror"? | CREATE TABLE "table1_13740746_1" (
"ep_no" real,
"title" text,
"director" text,
"written_by" text,
"original_air_date" text,
"production_no" real
); | SELECT MIN("production_no") FROM "table1_13740746_1" WHERE "title"='\"Rain of Terror\"'; | 1-13740746-1 |
Who wrote the episode called "mercury falling"? | CREATE TABLE "table1_13740746_1" (
"ep_no" real,
"title" text,
"director" text,
"written_by" text,
"original_air_date" text,
"production_no" real
); | SELECT "written_by" FROM "table1_13740746_1" WHERE "title"='\"Mercury Falling\"'; | 1-13740746-1 |
Nantyglo RFC had 546 points for and how many points? | CREATE TABLE "2006_2007_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"points" text
); | SELECT "points" FROM "2006_2007_table" WHERE "points_for"='546'; | 1-13741576-6 |
What club had 523 points against? | CREATE TABLE "2006_2007_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"points" text
); | SELECT "club" FROM "2006_2007_table" WHERE "points_against"='523'; | 1-13741576-6 |
What club has 536 points for? | CREATE TABLE "2006_2007_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"points" text
); | SELECT "club" FROM "2006_2007_table" WHERE "points_for"='536'; | 1-13741576-6 |
How many clubs had 7 wins? | CREATE TABLE "2006_2007_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"points" text
); | SELECT COUNT("club") FROM "2006_2007_table" WHERE "won"='7'; | 1-13741576-6 |
What club had 404 points against? | CREATE TABLE "2006_2007_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"points" text
); | SELECT "club" FROM "2006_2007_table" WHERE "points_against"='404'; | 1-13741576-6 |
Risca RFC has 54 tries for and how many draws? | CREATE TABLE "2006_2007_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"points" text
); | SELECT "drawn" FROM "2006_2007_table" WHERE "tries_for"='54'; | 1-13741576-6 |
What club has 36 points? | CREATE TABLE "2009_2010_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "club" FROM "2009_2010_table" WHERE "points"='36'; | 1-13758945-1 |
What are the lost where points lost is 353? | CREATE TABLE "2009_2010_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "lost" FROM "2009_2010_table" WHERE "points_for"='353'; | 1-13758945-1 |
What are the won games with losing bonus of 0? | CREATE TABLE "2009_2010_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "won" FROM "2009_2010_table" WHERE "losing_bonus"='0'; | 1-13758945-1 |
Which club has 565 points? | CREATE TABLE "2009_2010_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "club" FROM "2009_2010_table" WHERE "points_for"='565'; | 1-13758945-1 |
How many tries where points is 77? | CREATE TABLE "2009_2010_table" (
"club" text,
"played" text,
"won" text,
"drawn" text,
"lost" text,
"points_for" text,
"points_against" text,
"tries_for" text,
"tries_against" text,
"try_bonus" text,
"losing_bonus" text,
"points" text
); | SELECT "tries_for" FROM "2009_2010_table" WHERE "points"='77'; | 1-13758945-1 |
what's the percentage of votes with number of deputies being 112 | CREATE TABLE "parliamentary_elections" (
"election_date" real,
"party_leader" text,
"number_of_votes_received" real,
"percentage_of_votes" text,
"number_of_deputies" real
); | SELECT "percentage_of_votes" FROM "parliamentary_elections" WHERE "number_of_deputies"=112; | 1-13746866-2 |
what's the percentage of votes with number of deputies being 112 | CREATE TABLE "parliamentary_elections" (
"election_date" real,
"party_leader" text,
"number_of_votes_received" real,
"percentage_of_votes" text,
"number_of_deputies" real
); | SELECT "percentage_of_votes" FROM "parliamentary_elections" WHERE "number_of_deputies"=112; | 1-13746866-2 |
what's the percentage of votes with election date being 1981 | CREATE TABLE "parliamentary_elections" (
"election_date" real,
"party_leader" text,
"number_of_votes_received" real,
"percentage_of_votes" text,
"number_of_deputies" real
); | SELECT "percentage_of_votes" FROM "parliamentary_elections" WHERE "election_date"=1981; | 1-13746866-2 |
what's the number of deputies with number of votes received being smaller than 1549176.2765483726 and election date being 1969 | CREATE TABLE "parliamentary_elections" (
"election_date" real,
"party_leader" text,
"number_of_votes_received" real,
"percentage_of_votes" text,
"number_of_deputies" real
); | SELECT "number_of_deputies" FROM "parliamentary_elections" WHERE "number_of_votes_received"<1549176.2765483726 AND "election_date"=1969; | 1-13746866-2 |
Who wrote the sorry of the episode directed by Dan Attias? | CREATE TABLE "table1_13755296_1" (
"series_num" real,
"season_num" real,
"title" text,
"story_by" text,
"teleplay_by" text,
"directed_by" text,
"original_air_date" text
); | SELECT "story_by" FROM "table1_13755296_1" WHERE "directed_by"='Dan Attias'; | 1-13755296-1 |
What's the season number of the episode directed by Dan Attias? | CREATE TABLE "table1_13755296_1" (
"series_num" real,
"season_num" real,
"title" text,
"story_by" text,
"teleplay_by" text,
"directed_by" text,
"original_air_date" text
); | SELECT MIN("season_num") FROM "table1_13755296_1" WHERE "directed_by"='Dan Attias'; | 1-13755296-1 |
What's the title of the episode written by David Simon? | CREATE TABLE "table1_13755296_1" (
"series_num" real,
"season_num" real,
"title" text,
"story_by" text,
"teleplay_by" text,
"directed_by" text,
"original_air_date" text
); | SELECT "title" FROM "table1_13755296_1" WHERE "teleplay_by"='David Simon'; | 1-13755296-1 |
What year was Skyline High School founded? | CREATE TABLE "4_a_members" (
"high_school" text,
"location" text,
"founded" real,
"affiliation" text,
"enrollment" real,
"nickname" text,
"division" text
); | SELECT COUNT("founded") FROM "4_a_members" WHERE "high_school"='Skyline'; | 1-13759592-1 |
How many enrollment figures are provided for Roosevelt High School? | CREATE TABLE "4_a_members" (
"high_school" text,
"location" text,
"founded" real,
"affiliation" text,
"enrollment" real,
"nickname" text,
"division" text
); | SELECT COUNT("enrollment") FROM "4_a_members" WHERE "high_school"='Roosevelt'; | 1-13759592-1 |
Which location has a team that is nicknamed the Vikings? | CREATE TABLE "4_a_members" (
"high_school" text,
"location" text,
"founded" real,
"affiliation" text,
"enrollment" real,
"nickname" text,
"division" text
); | SELECT "location" FROM "4_a_members" WHERE "nickname"='Vikings'; | 1-13759592-1 |
What year was Kirkland founded? | CREATE TABLE "3_a_members" (
"institution" text,
"location" text,
"founded" real,
"affiliation" text,
"enrollment" real,
"nickname" text
); | SELECT "founded" FROM "3_a_members" WHERE "location"='Kirkland'; | 1-13759592-2 |
Which institution was founded in 1923? | CREATE TABLE "3_a_members" (
"institution" text,
"location" text,
"founded" real,
"affiliation" text,
"enrollment" real,
"nickname" text
); | SELECT "institution" FROM "3_a_members" WHERE "founded"=1923; | 1-13759592-2 |
Where is Interlake located? | CREATE TABLE "3_a_members" (
"institution" text,
"location" text,
"founded" real,
"affiliation" text,
"enrollment" real,
"nickname" text
); | SELECT "location" FROM "3_a_members" WHERE "institution"='Interlake'; | 1-13759592-2 |
What was the series count at on May 23? | CREATE TABLE "2006_nba_playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "series" FROM "2006_nba_playoffs" WHERE "date"='May 23'; | 1-13762472-13 |
What is the lowest numbered game on the list? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT MIN("game") FROM "game_log"; | 1-13762472-5 |
Who had the high rebounds at the delta center? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "high_rebounds" FROM "game_log" WHERE "location_attendance"='Delta Center'; | 1-13762472-5 |
How many people had the high rebound total when the team was 19-13? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT COUNT("high_rebounds") FROM "game_log" WHERE "record"='19-13'; | 1-13762472-5 |
Who had the high point total when the team was 24-17? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "high_points" FROM "game_log" WHERE "record"='24-17'; | 1-13762472-5 |
What was the score when the heat played at charlotte arena? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "score" FROM "game_log" WHERE "location_attendance"='Charlotte Arena'; | 1-13762472-7 |
How many games had the team played after they were 40-20? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "game" FROM "game_log" WHERE "record"='40-20'; | 1-13762472-7 |
What was the score on November 25? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "score" FROM "game_log" WHERE "date"='November 25'; | 1-13762472-3 |
How many players scored the most points when the opposing team was New Orleans/Oklahoma City? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT COUNT("high_points") FROM "game_log" WHERE "team"='New Orleans/Oklahoma City'; | 1-13762472-3 |
How many players scored the most points on game 4? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT COUNT("high_points") FROM "game_log" WHERE "game"=4; | 1-13762472-3 |
What was the last game where the record was 6-3? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT MAX("game") FROM "game_log" WHERE "record"='6-3'; | 1-13762472-3 |
what's the country/region with seasons and winners being season 1, 2012: demetra malalan | CREATE TABLE "table1_13779832_1" (
"country_region" text,
"local_title" text,
"television_network" text,
"seasons_and_winners" text,
"judges" text,
"presenters" text
); | SELECT "country_region" FROM "table1_13779832_1" WHERE "seasons_and_winners"='Season 1, 2012: Demetra Malalan'; | 1-13779832-1 |
how many local title with televbeingion network being tv nova website | CREATE TABLE "table1_13779832_1" (
"country_region" text,
"local_title" text,
"television_network" text,
"seasons_and_winners" text,
"judges" text,
"presenters" text
); | SELECT COUNT("local_title") FROM "table1_13779832_1" WHERE "television_network"='TV Nova Website'; | 1-13779832-1 |
who is the the judges with seasons and winners being season 1, 2013–2014: upcoming season | CREATE TABLE "table1_13779832_1" (
"country_region" text,
"local_title" text,
"television_network" text,
"seasons_and_winners" text,
"judges" text,
"presenters" text
); | SELECT "judges" FROM "table1_13779832_1" WHERE "seasons_and_winners"='Season 1, 2013–2014: Upcoming season'; | 1-13779832-1 |
who is the the judges with local title being x factor and presenters being heikki paasonen jukka rossi (xtra factor) | CREATE TABLE "table1_13779832_1" (
"country_region" text,
"local_title" text,
"television_network" text,
"seasons_and_winners" text,
"judges" text,
"presenters" text
); | SELECT "judges" FROM "table1_13779832_1" WHERE "local_title"='X Factor' AND "presenters"='Heikki Paasonen Jukka Rossi (Xtra Factor)'; | 1-13779832-1 |
what's the local title with seasons and winners being series 1, 2006: lucy benjamin | CREATE TABLE "table1_13779832_1" (
"country_region" text,
"local_title" text,
"television_network" text,
"seasons_and_winners" text,
"judges" text,
"presenters" text
); | SELECT "local_title" FROM "table1_13779832_1" WHERE "seasons_and_winners"='Series 1, 2006: Lucy Benjamin'; | 1-13779832-1 |
what's the country/region with presenters being heikki paasonen jukka rossi (xtra factor) | CREATE TABLE "table1_13779832_1" (
"country_region" text,
"local_title" text,
"television_network" text,
"seasons_and_winners" text,
"judges" text,
"presenters" text
); | SELECT "country_region" FROM "table1_13779832_1" WHERE "presenters"='Heikki Paasonen Jukka Rossi (Xtra Factor)'; | 1-13779832-1 |
how many chroma format with name being high profile | CREATE TABLE "mpeg_2_profiles" (
"abbr" text,
"name" text,
"picture_coding_types" text,
"chroma_format" text,
"aspect_ratios" text,
"scalable_modes" text,
"intra_dc_precision" text
); | SELECT COUNT("chroma_format") FROM "mpeg_2_profiles" WHERE "name"='High profile'; | 1-1376890-2 |
what's the chroma format with scalable modes being snr- or spatial-scalable and intra dc precbeingion being 8, 9, 10 | CREATE TABLE "mpeg_2_profiles" (
"abbr" text,
"name" text,
"picture_coding_types" text,
"chroma_format" text,
"aspect_ratios" text,
"scalable_modes" text,
"intra_dc_precision" text
); | SELECT "chroma_format" FROM "mpeg_2_profiles" WHERE "scalable_modes"='SNR- or spatial-scalable' AND "intra_dc_precision"='8, 9, 10'; | 1-1376890-2 |
what's the chroma format with name being high profile | CREATE TABLE "mpeg_2_profiles" (
"abbr" text,
"name" text,
"picture_coding_types" text,
"chroma_format" text,
"aspect_ratios" text,
"scalable_modes" text,
"intra_dc_precision" text
); | SELECT "chroma_format" FROM "mpeg_2_profiles" WHERE "name"='High profile'; | 1-1376890-2 |
who is the the artbeingt with song title being " a steel guitar and a glass of wine " | CREATE TABLE "table1_13789248_2" (
"position" real,
"artist" text,
"song_title" text,
"highest_position" real,
"points" real
); | SELECT "artist" FROM "table1_13789248_2" WHERE "song_title"='\" A Steel Guitar And A Glass Of Wine \"'; | 1-13789248-2 |
what's the points with artbeingt being dave appell | CREATE TABLE "table1_13789248_2" (
"position" real,
"artist" text,
"song_title" text,
"highest_position" real,
"points" real
); | SELECT "points" FROM "table1_13789248_2" WHERE "artist"='Dave Appell'; | 1-13789248-2 |
who is the the artbeingt with song title being " a little bitty tear " | CREATE TABLE "table1_13789248_2" (
"position" real,
"artist" text,
"song_title" text,
"highest_position" real,
"points" real
); | SELECT "artist" FROM "table1_13789248_2" WHERE "song_title"='\" A Little Bitty Tear \"'; | 1-13789248-2 |
who is the the artbeingt with position being 32 | CREATE TABLE "table1_13789248_2" (
"position" real,
"artist" text,
"song_title" text,
"highest_position" real,
"points" real
); | SELECT "artist" FROM "table1_13789248_2" WHERE "position"=32; | 1-13789248-2 |
how many song title with artbeingt being chubby checker | CREATE TABLE "table1_13789248_2" (
"position" real,
"artist" text,
"song_title" text,
"highest_position" real,
"points" real
); | SELECT COUNT("song_title") FROM "table1_13789248_2" WHERE "artist"='Chubby Checker'; | 1-13789248-2 |
what is the minimum points with highest position being 1 | CREATE TABLE "table1_13789248_2" (
"position" real,
"artist" text,
"song_title" text,
"highest_position" real,
"points" real
); | SELECT MIN("points") FROM "table1_13789248_2" WHERE "highest_position"=1; | 1-13789248-2 |
What is the maximum number of trnsit passeners when the total number of international passengers is 4870184? | CREATE TABLE "2008_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2007_2008" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT MAX("transit_passengers") FROM "2008_data" WHERE "international_passengers"=4870184; | 1-13836704-7 |
What is Edinburgh's airport's freight in metric tonnes? | CREATE TABLE "2008_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2007_2008" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT MAX("freight_metric_tonnes") FROM "2008_data" WHERE "airport"='Edinburgh'; | 1-13836704-7 |
How many different total number of transit passengers are there in London Luton? | CREATE TABLE "2008_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2007_2008" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT COUNT("transit_passengers") FROM "2008_data" WHERE "airport"='London Luton'; | 1-13836704-7 |
What are the total freights in metric tonnes when the total transit passengers is 147791? | CREATE TABLE "2008_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2007_2008" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT "freight_metric_tonnes" FROM "2008_data" WHERE "transit_passengers"=147791; | 1-13836704-7 |
What is the total number of passengers of the airport ranked 15? | CREATE TABLE "2008_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2007_2008" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT "international_passengers" FROM "2008_data" WHERE "rank"=15; | 1-13836704-7 |
Whatis the original title for lion's den? | CREATE TABLE "table1_13834298_1" (
"year_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"director" text,
"result" text
); | SELECT "original_title" FROM "table1_13834298_1" WHERE "film_title_used_in_nomination"='Lion''s Den'; | 1-13834298-1 |
What is the percent change from 08/09 for belfast international? | CREATE TABLE "2009_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2008_2009" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT "pct_change_2008_2009" FROM "2009_data" WHERE "airport"='Belfast International'; | 1-13836704-6 |
How many transit passengers at london gatwick? | CREATE TABLE "2009_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2008_2009" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT "transit_passengers" FROM "2009_data" WHERE "airport"='London Gatwick'; | 1-13836704-6 |
What is the rank of the airport with freight ( metric tonnes ) of 255121? | CREATE TABLE "2009_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2008_2009" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT "rank" FROM "2009_data" WHERE "freight_metric_tonnes"=255121; | 1-13836704-6 |
What is the rank of the airport with a freight ( metric tonnes ) of 23791? | CREATE TABLE "2009_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2008_2009" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT "rank" FROM "2009_data" WHERE "freight_metric_tonnes"=23791; | 1-13836704-6 |
what's the airport with total passengers 2009 being 157933 | CREATE TABLE "2008_2009_data" (
"rank" real,
"airport" text,
"total_passengers_2008" real,
"total_passengers_2009" real,
"change_2008_09" text,
"aircraft_movements_2009" real
); | SELECT "airport" FROM "2008_2009_data" WHERE "total_passengers_2009"=157933; | 1-13836704-4 |
what being the maximum total passengers 2008 with change 2008/09 being 6.5% | CREATE TABLE "2008_2009_data" (
"rank" real,
"airport" text,
"total_passengers_2008" real,
"total_passengers_2009" real,
"change_2008_09" text,
"aircraft_movements_2009" real
); | SELECT MAX("total_passengers_2008") FROM "2008_2009_data" WHERE "change_2008_09"='6.5%'; | 1-13836704-4 |
what's the airport with aircraft movements 2009 being smaller than 238223.1659471435 and change 2008/09 being 0.5% | CREATE TABLE "2008_2009_data" (
"rank" real,
"airport" text,
"total_passengers_2008" real,
"total_passengers_2009" real,
"change_2008_09" text,
"aircraft_movements_2009" real
); | SELECT "airport" FROM "2008_2009_data" WHERE "aircraft_movements_2009"<238223.1659471435 AND "change_2008_09"='0.5%'; | 1-13836704-4 |
what is the maximum aircraft movements 2009 with change 2008/09 being 18.2% | CREATE TABLE "2008_2009_data" (
"rank" real,
"airport" text,
"total_passengers_2008" real,
"total_passengers_2009" real,
"change_2008_09" text,
"aircraft_movements_2009" real
); | SELECT MAX("aircraft_movements_2009") FROM "2008_2009_data" WHERE "change_2008_09"='18.2%'; | 1-13836704-4 |
what's the total passengers 2008 with change 2008/09 being 6.5% | CREATE TABLE "2008_2009_data" (
"rank" real,
"airport" text,
"total_passengers_2008" real,
"total_passengers_2009" real,
"change_2008_09" text,
"aircraft_movements_2009" real
); | SELECT "total_passengers_2008" FROM "2008_2009_data" WHERE "change_2008_09"='6.5%'; | 1-13836704-4 |
Name the rank of birmingham airport | CREATE TABLE "2007_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2006_2007" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT MAX("rank") FROM "2007_data" WHERE "airport"='Birmingham Airport'; | 1-13836704-8 |
Name the transit passengers for 171078 | CREATE TABLE "2007_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2006_2007" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT MAX("transit_passengers") FROM "2007_data" WHERE "freight_metric_tonnes"=171078; | 1-13836704-8 |
Beata syta is the minimum year for womens singles. | CREATE TABLE "past_winners" (
"year" real,
"mens_singles" text,
"womens_singles" text,
"mens_doubles" text,
"womens_doubles" text,
"mixed_doubles" text
); | SELECT MIN("year") FROM "past_winners" WHERE "womens_singles"='Beata Syta'; | 1-13857501-1 |
what is the maximum aircraft movements with international passengers being 21002260 | CREATE TABLE "2006_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2005_2006" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT MAX("aircraft_movements") FROM "2006_data" WHERE "international_passengers"=21002260; | 1-13836704-9 |
what is the maximum freight (metric tonnes) with airport being liverpool | CREATE TABLE "2006_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2005_2006" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT MAX("freight_metric_tonnes") FROM "2006_data" WHERE "airport"='Liverpool'; | 1-13836704-9 |
what's the airport with % change 2005/2006 being 13.0% | CREATE TABLE "2006_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2005_2006" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT "airport" FROM "2006_data" WHERE "pct_change_2005_2006"='13.0%'; | 1-13836704-9 |
what is the maximum aircraft movements with airport being liverpool | CREATE TABLE "2006_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2005_2006" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT MAX("aircraft_movements") FROM "2006_data" WHERE "airport"='Liverpool'; | 1-13836704-9 |
what's the total passengers with freight (metric tonnes) being 827 | CREATE TABLE "2006_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2005_2006" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT "total_passengers" FROM "2006_data" WHERE "freight_metric_tonnes"=827; | 1-13836704-9 |
how many airport with rank being 4 | CREATE TABLE "2006_data" (
"rank" real,
"airport" text,
"total_passengers" real,
"pct_change_2005_2006" text,
"international_passengers" real,
"domestic_passengers" real,
"transit_passengers" real,
"aircraft_movements" real,
"freight_metric_tonnes" real
); | SELECT COUNT("airport") FROM "2006_data" WHERE "rank"=4; | 1-13836704-9 |
how many mens singles with mens doubles being pontus jantti lasse lindelöf | CREATE TABLE "past_winners" (
"year" real,
"mens_singles" text,
"womens_singles" text,
"mens_doubles" text,
"womens_doubles" text,
"mixed_doubles" text
); | SELECT COUNT("mens_singles") FROM "past_winners" WHERE "mens_doubles"='Pontus Jantti Lasse Lindelöf'; | 1-13857700-1 |
who is the the mens doubles with mixed doubles being jimm aalto nina sarnesto | CREATE TABLE "past_winners" (
"year" real,
"mens_singles" text,
"womens_singles" text,
"mens_doubles" text,
"womens_doubles" text,
"mixed_doubles" text
); | SELECT "mens_doubles" FROM "past_winners" WHERE "mixed_doubles"='Jimm Aalto Nina Sarnesto'; | 1-13857700-1 |
who is the the mixed doubles with year being 1972 | CREATE TABLE "past_winners" (
"year" real,
"mens_singles" text,
"womens_singles" text,
"mens_doubles" text,
"womens_doubles" text,
"mixed_doubles" text
); | SELECT "mixed_doubles" FROM "past_winners" WHERE "year"=1972; | 1-13857700-1 |
who is the the mens doubles with year being 1978 | CREATE TABLE "past_winners" (
"year" real,
"mens_singles" text,
"womens_singles" text,
"mens_doubles" text,
"womens_doubles" text,
"mixed_doubles" text
); | SELECT "mens_doubles" FROM "past_winners" WHERE "year"=1978; | 1-13857700-1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.