question
stringlengths 12
244
| create_table_statement
stringlengths 97
895
| sql_query
stringlengths 27
479
| wiki_sql_table_id
stringlengths 8
14
|
---|---|---|---|
What is the lowest ru? | CREATE TABLE "table1_10818465_1" (
"model" text,
"ru" real,
"max_processors" text,
"processor_frequency" text,
"max_memory" text,
"max_disk_capacity" text,
"ga_date" text
); | SELECT MIN("ru") FROM "table1_10818465_1"; | 1-10818465-1 |
What ga date do the models with 1.0, 1.2, 1.4ghz processor frequencies have? | CREATE TABLE "table1_10818465_1" (
"model" text,
"ru" real,
"max_processors" text,
"processor_frequency" text,
"max_memory" text,
"max_disk_capacity" text,
"ga_date" text
); | SELECT "ga_date" FROM "table1_10818465_1" WHERE "processor_frequency"='1.0, 1.2, 1.4GHz'; | 1-10818465-1 |
What is the ga date of the t5120 model? | CREATE TABLE "table1_10818465_1" (
"model" text,
"ru" real,
"max_processors" text,
"processor_frequency" text,
"max_memory" text,
"max_disk_capacity" text,
"ga_date" text
); | SELECT "ga_date" FROM "table1_10818465_1" WHERE "model"='T5120'; | 1-10818465-1 |
What is the sport of the La Liga league? | CREATE TABLE "top_10_in_total_attendance" (
"league" text,
"sport" text,
"country" text,
"season" text,
"games" real,
"average_attendance" real,
"total_attendance" real
); | SELECT "sport" FROM "top_10_in_total_attendance" WHERE "league"='La Liga'; | 1-10815352-1 |
What's the minimum total attendance of the Premier League association football? | CREATE TABLE "top_10_in_total_attendance" (
"league" text,
"sport" text,
"country" text,
"season" text,
"games" real,
"average_attendance" real,
"total_attendance" real
); | SELECT MIN("total_attendance") FROM "top_10_in_total_attendance" WHERE "sport"='Association football' AND "league"='Premier League'; | 1-10815352-1 |
What's the average attendance of the leagues in the season of 2013? | CREATE TABLE "top_10_in_total_attendance" (
"league" text,
"sport" text,
"country" text,
"season" text,
"games" real,
"average_attendance" real,
"total_attendance" real
); | SELECT MIN("average_attendance") FROM "top_10_in_total_attendance" WHERE "season"='2013'; | 1-10815352-1 |
What's the total attendance of the leagues in season of 2010? | CREATE TABLE "top_10_in_total_attendance" (
"league" text,
"sport" text,
"country" text,
"season" text,
"games" real,
"average_attendance" real,
"total_attendance" real
); | SELECT COUNT("total_attendance") FROM "top_10_in_total_attendance" WHERE "season"='2010'; | 1-10815352-1 |
Who were the directors of the film submitted with the title Young Törless? | CREATE TABLE "table1_10874596_1" (
"year_e_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"director" text,
"result" text
); | SELECT "director" FROM "table1_10874596_1" WHERE "film_title_used_in_nomination"='Young Törless'; | 1-10874596-1 |
What was the original title of the film submitted with the title A Woman in Flames? | CREATE TABLE "table1_10874596_1" (
"year_e_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"director" text,
"result" text
); | SELECT "original_title" FROM "table1_10874596_1" WHERE "film_title_used_in_nomination"='A Woman in Flames'; | 1-10874596-1 |
In what years was a film submitted with the title The Enigma of Kaspar Hauser? | CREATE TABLE "table1_10874596_1" (
"year_e_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"director" text,
"result" text
); | SELECT "year_e_ceremony" FROM "table1_10874596_1" WHERE "film_title_used_in_nomination"='The Enigma of Kaspar Hauser'; | 1-10874596-1 |
Who were the directors of the film with the original title o.k.? | CREATE TABLE "table1_10874596_1" (
"year_e_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"director" text,
"result" text
); | SELECT "director" FROM "table1_10874596_1" WHERE "original_title"='o.k.'; | 1-10874596-1 |
What is the division for the division semifinals playoffs? | CREATE TABLE "kansas_city_comets" (
"year" text,
"division" text,
"league" text,
"reg_season" text,
"playoffs" text,
"avg_attendance" real
); | SELECT "division" FROM "kansas_city_comets" WHERE "playoffs"='Division Semifinals'; | 1-1087659-2 |
What is the number in series of "say uncle"? | CREATE TABLE "table1_10908676_7" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text
); | SELECT "no_in_series" FROM "table1_10908676_7" WHERE "title"='\"Say Uncle\"'; | 1-10908676-7 |
What is the title written by David Mamet? | CREATE TABLE "table1_10908676_7" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text
); | SELECT "title" FROM "table1_10908676_7" WHERE "written_by"='David Mamet'; | 1-10908676-7 |
What was the finale for 潮爆大狀 | CREATE TABLE "highest_rating_drama_series_of_2006" (
"rank" real,
"english_title" text,
"chinese_title" text,
"average" real,
"peak" real,
"premiere" real,
"finale" real,
"hk_viewers" text
); | SELECT "finale" FROM "highest_rating_drama_series_of_2006" WHERE "chinese_title"='潮爆大狀'; | 1-10942714-1 |
What was the finale for 潮爆大狀 | CREATE TABLE "highest_rating_drama_series_of_2006" (
"rank" real,
"english_title" text,
"chinese_title" text,
"average" real,
"peak" real,
"premiere" real,
"finale" real,
"hk_viewers" text
); | SELECT "finale" FROM "highest_rating_drama_series_of_2006" WHERE "chinese_title"='潮爆大狀'; | 1-10942714-1 |
How many viewers were there for the premier with 34 | CREATE TABLE "highest_rating_drama_series_of_2006" (
"rank" real,
"english_title" text,
"chinese_title" text,
"average" real,
"peak" real,
"premiere" real,
"finale" real,
"hk_viewers" text
); | SELECT "hk_viewers" FROM "highest_rating_drama_series_of_2006" WHERE "premiere"=34; | 1-10942714-1 |
How many are listed under 潮爆大狀 | CREATE TABLE "highest_rating_drama_series_of_2006" (
"rank" real,
"english_title" text,
"chinese_title" text,
"average" real,
"peak" real,
"premiere" real,
"finale" real,
"hk_viewers" text
); | SELECT COUNT("peak") FROM "highest_rating_drama_series_of_2006" WHERE "chinese_title"='潮爆大狀'; | 1-10942714-1 |
Who was the director of the episode with a production code of 2393059? | CREATE TABLE "season_2_1993_1994" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT "director" FROM "season_2_1993_1994" WHERE "production_code"='2393059'; | 1-10953197-2 |
How many people wrote "Michael's Game"? | CREATE TABLE "season_2_1993_1994" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT COUNT("writer_s") FROM "season_2_1993_1994" WHERE "title"='\"Michael''s Game\"'; | 1-10953197-2 |
When did the episode title "Duet For One" air? | CREATE TABLE "season_2_1993_1994" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT "original_air_date" FROM "season_2_1993_1994" WHERE "title"='\"Duet for One\"'; | 1-10953197-2 |
Which episode had 16.38 million U.S. viewers? | CREATE TABLE "table1_10935548_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text,
"u_s_viewers_millions" text
); | SELECT "title" FROM "table1_10935548_1" WHERE "u_s_viewers_millions"='16.38'; | 1-10935548-1 |
What is the production code of the episode written by José Molina that aired on October 12, 2004? | CREATE TABLE "table1_10935548_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text,
"u_s_viewers_millions" text
); | SELECT "production_code" FROM "table1_10935548_1" WHERE "written_by"='José Molina' AND "original_air_date"='October 12, 2004'; | 1-10935548-1 |
What was the original air date of the episode "Quarry"? | CREATE TABLE "table1_10935548_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text,
"u_s_viewers_millions" text
); | SELECT "original_air_date" FROM "table1_10935548_1" WHERE "title"='\"Quarry\"'; | 1-10935548-1 |
Which episode was directed by Jean de Segonzac? | CREATE TABLE "table1_10935548_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text,
"u_s_viewers_millions" text
); | SELECT "title" FROM "table1_10935548_1" WHERE "directed_by"='Jean de Segonzac'; | 1-10935548-1 |
what are the original air dates with a production code of 2394087 | CREATE TABLE "table1_10953197_3" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT "original_air_date" FROM "table1_10953197_3" WHERE "production_code"='2394087'; | 1-10953197-3 |
Who are the writers for the title "boxing sydney" | CREATE TABLE "table1_10953197_3" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT "writer_s" FROM "table1_10953197_3" WHERE "title"='\"Boxing Sydney\"'; | 1-10953197-3 |
What are the production codes for the title "all about brooke" | CREATE TABLE "table1_10953197_3" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT "production_code" FROM "table1_10953197_3" WHERE "title"='\"All About Brooke\"'; | 1-10953197-3 |
Who are the writer(s) for the production code 2394084 | CREATE TABLE "table1_10953197_3" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT "writer_s" FROM "table1_10953197_3" WHERE "production_code"='2394084'; | 1-10953197-3 |
What's the total number of episodes with the production code 2395113A? | CREATE TABLE "season_4_1995_1996" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT COUNT("title") FROM "season_4_1995_1996" WHERE "production_code"='2395113A'; | 1-10953197-4 |
What's the number of the episode called "Melrose Unglued"? | CREATE TABLE "season_4_1995_1996" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT MAX("no_in_series") FROM "season_4_1995_1996" WHERE "title"='\"Melrose Unglued\"'; | 1-10953197-4 |
Who's the writer for the episode with a production code 2395114? | CREATE TABLE "season_4_1995_1996" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT "writer_s" FROM "season_4_1995_1996" WHERE "production_code"='2395114'; | 1-10953197-4 |
Who directed the episode titled "Full Metal Betsy"? | CREATE TABLE "season_4_1995_1996" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT "director" FROM "season_4_1995_1996" WHERE "title"='\"Full Metal Betsy\"'; | 1-10953197-4 |
What's the number of the episode with production code 2395118? | CREATE TABLE "season_4_1995_1996" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT "no_in_season" FROM "season_4_1995_1996" WHERE "production_code"='2395118'; | 1-10953197-4 |
Who was the writer for the episode with production code 2395096? | CREATE TABLE "season_4_1995_1996" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT "writer_s" FROM "season_4_1995_1996" WHERE "production_code"='2395096'; | 1-10953197-4 |
What generation of spectrograph is most likely to detect a planet with a radial velocity of 0.089 m/s? | CREATE TABLE "planets" (
"planet" text,
"planet_type" text,
"semimajor_axis_au" text,
"orbital_period" text,
"radial_velocity_m_s" text,
"detectable_by" text
); | SELECT "detectable_by" FROM "planets" WHERE "radial_velocity_m_s"='0.089'; | 1-10932739-2 |
How long is the orbital period for the planet that has a semimajor axis of 5.20 au? | CREATE TABLE "planets" (
"planet" text,
"planet_type" text,
"semimajor_axis_au" text,
"orbital_period" text,
"radial_velocity_m_s" text,
"detectable_by" text
); | SELECT "orbital_period" FROM "planets" WHERE "semimajor_axis_au"='5.20'; | 1-10932739-2 |
What generation of spectrograph is Jupiter detected by? | CREATE TABLE "planets" (
"planet" text,
"planet_type" text,
"semimajor_axis_au" text,
"orbital_period" text,
"radial_velocity_m_s" text,
"detectable_by" text
); | SELECT "detectable_by" FROM "planets" WHERE "planet"='Jupiter'; | 1-10932739-2 |
Which planet has an orbital period of 11.86 years? | CREATE TABLE "planets" (
"planet" text,
"planet_type" text,
"semimajor_axis_au" text,
"orbital_period" text,
"radial_velocity_m_s" text,
"detectable_by" text
); | SELECT "planet" FROM "planets" WHERE "orbital_period"='11.86 years'; | 1-10932739-2 |
who directed the production code 2398204 | CREATE TABLE "season_7_1998_1999" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT "director" FROM "season_7_1998_1999" WHERE "production_code"='2398204'; | 1-10953197-7 |
when did "unpleasantville" air? | CREATE TABLE "season_7_1998_1999" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT "original_air_date" FROM "season_7_1998_1999" WHERE "title"='\"Unpleasantville\"'; | 1-10953197-7 |
What is player Alexis Bwenge's pick number? | CREATE TABLE "table1_10960039_1" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "pick_num" FROM "table1_10960039_1" WHERE "player"='Alexis Bwenge'; | 1-10960039-1 |
What player is pick #2? | CREATE TABLE "table1_10960039_1" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "player" FROM "table1_10960039_1" WHERE "pick_num"=2; | 1-10960039-1 |
Which player's college is Saskatchewan? | CREATE TABLE "table1_10960039_1" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "player" FROM "table1_10960039_1" WHERE "college"='Saskatchewan'; | 1-10960039-1 |
What is McMaster College's pick number? | CREATE TABLE "table1_10960039_1" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT MIN("pick_num") FROM "table1_10960039_1" WHERE "college"='McMaster'; | 1-10960039-1 |
give the least number of times an episode was shown from 1997-1998 | CREATE TABLE "season_6_1997_1998" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT MIN("no_in_season") FROM "season_6_1997_1998"; | 1-10953197-6 |
when was the episode named "the doctor is in... deep" first broadcast | CREATE TABLE "season_6_1997_1998" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT "original_air_date" FROM "season_6_1997_1998" WHERE "title"='\"The Doctor Is In... Deep\"'; | 1-10953197-6 |
how many times does the episode called "coop de grace" appear | CREATE TABLE "season_6_1997_1998" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT COUNT("no_in_series") FROM "season_6_1997_1998" WHERE "title"='\"Coop de Grace\"'; | 1-10953197-6 |
what is season 6 sum of both the number of times processing ID 2397162 was assigned and the number of times chip chalmers managed an episode | CREATE TABLE "season_6_1997_1998" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"director" text,
"writer_s" text,
"original_air_date" text,
"production_code" text
); | SELECT MAX("no_in_season") FROM "season_6_1997_1998" WHERE "director"='Chip Chalmers' AND "production_code"='2397162'; | 1-10953197-6 |
Which player went to Michigan State? | CREATE TABLE "table1_10966926_2" (
"round" real,
"choice" real,
"player_name" text,
"position" text,
"height" text,
"weight" real,
"college" text
); | SELECT "player_name" FROM "table1_10966926_2" WHERE "college"='Michigan State'; | 1-10966926-2 |
Which player went to college in Oklahoma? | CREATE TABLE "table1_10966926_2" (
"round" real,
"choice" real,
"player_name" text,
"position" text,
"height" text,
"weight" real,
"college" text
); | SELECT "player_name" FROM "table1_10966926_2" WHERE "college"='Oklahoma'; | 1-10966926-2 |
Which position does Colt Brennan play? | CREATE TABLE "table1_10966926_2" (
"round" real,
"choice" real,
"player_name" text,
"position" text,
"height" text,
"weight" real,
"college" text
); | SELECT "position" FROM "table1_10966926_2" WHERE "player_name"='Colt Brennan'; | 1-10966926-2 |
What is the height of the person that weighs 320 pounds? | CREATE TABLE "table1_10966926_2" (
"round" real,
"choice" real,
"player_name" text,
"position" text,
"height" text,
"weight" real,
"college" text
); | SELECT "height" FROM "table1_10966926_2" WHERE "weight"=320; | 1-10966926-2 |
How many colleges have a DB position? | CREATE TABLE "round_four" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT COUNT("college") FROM "round_four" WHERE "position"='DB'; | 1-10975034-4 |
What is the maximum number of picks for the CFL team Calgary Stampeders? | CREATE TABLE "round_four" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT MAX("pick_num") FROM "round_four" WHERE "cfl_team"='Calgary Stampeders'; | 1-10975034-4 |
How many CFL teams are from York college? | CREATE TABLE "round_four" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT COUNT("cfl_team") FROM "round_four" WHERE "college"='York'; | 1-10975034-4 |
What CFL teams are part of Simon Fraser college? | CREATE TABLE "round_four" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "cfl_team" FROM "round_four" WHERE "college"='Simon Fraser'; | 1-10975034-4 |
Which players have a pick number of 27? | CREATE TABLE "round_four" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "player" FROM "round_four" WHERE "pick_num"=27; | 1-10975034-4 |
How many times were players named brett ralph were selected? | CREATE TABLE "round_six" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT COUNT("pick_num") FROM "round_six" WHERE "player"='Brett Ralph'; | 1-10960039-6 |
What schools did lenard semajuste play for? | CREATE TABLE "round_six" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "college" FROM "round_six" WHERE "player"='Lenard Semajuste'; | 1-10960039-6 |
What is the highest selection number for the saskatchewan roughriders team? | CREATE TABLE "round_six" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT MAX("pick_num") FROM "round_six" WHERE "cfl_team"='Saskatchewan Roughriders'; | 1-10960039-6 |
How many fb players were drafted? | CREATE TABLE "round_six" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT COUNT("pick_num") FROM "round_six" WHERE "position"='FB'; | 1-10960039-6 |
How many players played for adams state school? | CREATE TABLE "round_six" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT COUNT("player") FROM "round_six" WHERE "college"='Adams State'; | 1-10960039-6 |
What teams drafted players that played for northwood school? | CREATE TABLE "round_six" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "cfl_team" FROM "round_six" WHERE "college"='Northwood'; | 1-10960039-6 |
What college did Craig Zimmer go to? | CREATE TABLE "round_five" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "college" FROM "round_five" WHERE "player"='Craig Zimmer'; | 1-10975034-5 |
What is the pick number of regina? | CREATE TABLE "round_five" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "pick_num" FROM "round_five" WHERE "college"='Regina'; | 1-10975034-5 |
What is the player who is lb and cfl team is saskatchewan roughriders? | CREATE TABLE "round_five" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "player" FROM "round_five" WHERE "position"='LB' AND "cfl_team"='Saskatchewan Roughriders'; | 1-10975034-5 |
What is the cfl team that has a position of ol? | CREATE TABLE "round_five" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "cfl_team" FROM "round_five" WHERE "position"='OL'; | 1-10975034-5 |
What is the number of position where the pick number is 43? | CREATE TABLE "round_five" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT COUNT("position") FROM "round_five" WHERE "pick_num"=43; | 1-10975034-5 |
What is the cfl team with ryan folk? | CREATE TABLE "round_five" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "cfl_team" FROM "round_five" WHERE "player"='Ryan Folk'; | 1-10975034-5 |
What release date is when kids-270 is a reference? | CREATE TABLE "singles" (
"romaji_title" text,
"japanese_title" text,
"release_date" text,
"reference" text,
"oricon" real
); | SELECT "release_date" FROM "singles" WHERE "reference"='KIDS-270'; | 1-10979230-5 |
what is the title where romaji is titles da.i.su.ki | CREATE TABLE "singles" (
"romaji_title" text,
"japanese_title" text,
"release_date" text,
"reference" text,
"oricon" real
); | SELECT "japanese_title" FROM "singles" WHERE "romaji_title"='Da.i.su.ki'; | 1-10979230-5 |
what are the title in japanese where the reference is kids-430? | CREATE TABLE "singles" (
"romaji_title" text,
"japanese_title" text,
"release_date" text,
"reference" text,
"oricon" real
); | SELECT "japanese_title" FROM "singles" WHERE "reference"='KIDS-430'; | 1-10979230-5 |
who is the reference when romaji title is heartbreak sniper? | CREATE TABLE "singles" (
"romaji_title" text,
"japanese_title" text,
"release_date" text,
"reference" text,
"oricon" real
); | SELECT "reference" FROM "singles" WHERE "romaji_title"='Heartbreak Sniper'; | 1-10979230-5 |
What rank is 愛のバカ on the Japanese singles chart? | CREATE TABLE "albums" (
"romaji_title" text,
"japanese_title" text,
"release_date" text,
"reference" text,
"oricon" real
); | SELECT COUNT("oricon") FROM "albums" WHERE "japanese_title"='愛のバカ'; | 1-10979230-4 |
How many songs have mi-chemin as their Japanese name and romanji name? | CREATE TABLE "albums" (
"romaji_title" text,
"japanese_title" text,
"release_date" text,
"reference" text,
"oricon" real
); | SELECT COUNT("romaji_title") FROM "albums" WHERE "japanese_title"='Mi-Chemin'; | 1-10979230-4 |
What was the partial thromboplastin time for factor x deficiency as seen in amyloid purpura | CREATE TABLE "laboratory_findings_in_various_platelet_" (
"condition" text,
"prothrombin_time" text,
"partial_thromboplastin_time" text,
"bleeding_time" text,
"platelet_count" text
); | SELECT "partial_thromboplastin_time" FROM "laboratory_findings_in_various_platelet_" WHERE "condition"='Factor X deficiency as seen in amyloid purpura'; | 1-1099080-1 |
How many conditions have an unaffected prothrombin time and a prolonged bleeding time | CREATE TABLE "laboratory_findings_in_various_platelet_" (
"condition" text,
"prothrombin_time" text,
"partial_thromboplastin_time" text,
"bleeding_time" text,
"platelet_count" text
); | SELECT COUNT("condition") FROM "laboratory_findings_in_various_platelet_" WHERE "prothrombin_time"='Unaffected' AND "bleeding_time"='Prolonged'; | 1-1099080-1 |
What was the bleeding time for the factor x deficiency as seen in amyloid purpura | CREATE TABLE "laboratory_findings_in_various_platelet_" (
"condition" text,
"prothrombin_time" text,
"partial_thromboplastin_time" text,
"bleeding_time" text,
"platelet_count" text
); | SELECT "bleeding_time" FROM "laboratory_findings_in_various_platelet_" WHERE "condition"='Factor X deficiency as seen in amyloid purpura'; | 1-1099080-1 |
What conditions had both prolonged bleeding times and prolonged partial thromboplastin times | CREATE TABLE "laboratory_findings_in_various_platelet_" (
"condition" text,
"prothrombin_time" text,
"partial_thromboplastin_time" text,
"bleeding_time" text,
"platelet_count" text
); | SELECT "condition" FROM "laboratory_findings_in_various_platelet_" WHERE "partial_thromboplastin_time"='Prolonged' AND "bleeding_time"='Prolonged'; | 1-1099080-1 |
What was the bleeding time for factor xii deficiency | CREATE TABLE "laboratory_findings_in_various_platelet_" (
"condition" text,
"prothrombin_time" text,
"partial_thromboplastin_time" text,
"bleeding_time" text,
"platelet_count" text
); | SELECT "bleeding_time" FROM "laboratory_findings_in_various_platelet_" WHERE "condition"='Factor XII deficiency'; | 1-1099080-1 |
What were the bleeding times when both the platelet count was unaffected and the partial thromboplastin time was unaffected | CREATE TABLE "laboratory_findings_in_various_platelet_" (
"condition" text,
"prothrombin_time" text,
"partial_thromboplastin_time" text,
"bleeding_time" text,
"platelet_count" text
); | SELECT "bleeding_time" FROM "laboratory_findings_in_various_platelet_" WHERE "partial_thromboplastin_time"='Unaffected' AND "platelet_count"='Unaffected'; | 1-1099080-1 |
what's the tuesday time with location being millhopper | CREATE TABLE "locations" (
"location" text,
"monday" text,
"tuesday" text,
"wednesday" text,
"thursday" text,
"friday" text,
"saturday" text,
"sunday" text
); | SELECT "tuesday" FROM "locations" WHERE "location"='Millhopper'; | 1-11019212-1 |
what's the wednesday time with monday being 10:00-8:00 | CREATE TABLE "locations" (
"location" text,
"monday" text,
"tuesday" text,
"wednesday" text,
"thursday" text,
"friday" text,
"saturday" text,
"sunday" text
); | SELECT "wednesday" FROM "locations" WHERE "monday"='10:00-8:00'; | 1-11019212-1 |
what's the thursday time with location being hawthorne | CREATE TABLE "locations" (
"location" text,
"monday" text,
"tuesday" text,
"wednesday" text,
"thursday" text,
"friday" text,
"saturday" text,
"sunday" text
); | SELECT "thursday" FROM "locations" WHERE "location"='Hawthorne'; | 1-11019212-1 |
what's the saturday time with wednesday being 10:00-5:00 | CREATE TABLE "locations" (
"location" text,
"monday" text,
"tuesday" text,
"wednesday" text,
"thursday" text,
"friday" text,
"saturday" text,
"sunday" text
); | SELECT "saturday" FROM "locations" WHERE "wednesday"='10:00-5:00'; | 1-11019212-1 |
what's the thursday time with sunday being 1:00-5:00 and tuesday being 1:00-7:00 | CREATE TABLE "locations" (
"location" text,
"monday" text,
"tuesday" text,
"wednesday" text,
"thursday" text,
"friday" text,
"saturday" text,
"sunday" text
); | SELECT "thursday" FROM "locations" WHERE "sunday"='1:00-5:00' AND "tuesday"='1:00-7:00'; | 1-11019212-1 |
what's the monday time with tuesday being 9:00-6:00 | CREATE TABLE "locations" (
"location" text,
"monday" text,
"tuesday" text,
"wednesday" text,
"thursday" text,
"friday" text,
"saturday" text,
"sunday" text
); | SELECT "monday" FROM "locations" WHERE "tuesday"='9:00-6:00'; | 1-11019212-1 |
What are all the reports where Paul Tracy had the fastest lap? | CREATE TABLE "race_results" (
"rnd" real,
"race_name" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_team" text,
"report" text
); | SELECT "report" FROM "race_results" WHERE "fastest_lap"='Paul Tracy'; | 1-11056278-3 |
Who drove the fastest lap at the Tenneco Automotive Grand Prix of Detroit? | CREATE TABLE "race_results" (
"rnd" real,
"race_name" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_team" text,
"report" text
); | SELECT "fastest_lap" FROM "race_results" WHERE "race_name"='Tenneco Automotive Grand Prix of Detroit'; | 1-11056278-3 |
Who had the fastest lap in the races won by Max Papis? | CREATE TABLE "race_results" (
"rnd" real,
"race_name" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_team" text,
"report" text
); | SELECT "fastest_lap" FROM "race_results" WHERE "winning_driver"='Max Papis'; | 1-11056278-3 |
In Round 6, how many winning drivers were there? | CREATE TABLE "race_results" (
"rnd" real,
"race_name" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_team" text,
"report" text
); | SELECT COUNT("winning_driver") FROM "race_results" WHERE "rnd"=6; | 1-11056278-3 |
What are the original names of the districts where the population in the 2010 census was 210450? | CREATE TABLE "districts_of_bogor_city" (
"english_name" text,
"original_name" text,
"area_in_km" text,
"population_at_2010_census" real,
"number_of_settlements_and_villages" real
); | SELECT "original_name" FROM "districts_of_bogor_city" WHERE "population_at_2010_census"=210450; | 1-1104312-5 |
What is the original name of the district with the current English name of South Bogor? | CREATE TABLE "districts_of_bogor_city" (
"english_name" text,
"original_name" text,
"area_in_km" text,
"population_at_2010_census" real,
"number_of_settlements_and_villages" real
); | SELECT "original_name" FROM "districts_of_bogor_city" WHERE "english_name"='South Bogor'; | 1-1104312-5 |
What is the listed population from the 2010 census of West Bogor? | CREATE TABLE "districts_of_bogor_city" (
"english_name" text,
"original_name" text,
"area_in_km" text,
"population_at_2010_census" real,
"number_of_settlements_and_villages" real
); | SELECT MIN("population_at_2010_census") FROM "districts_of_bogor_city" WHERE "english_name"='West Bogor'; | 1-1104312-5 |
How many districts have an area of 17.72 KM2? | CREATE TABLE "districts_of_bogor_city" (
"english_name" text,
"original_name" text,
"area_in_km" text,
"population_at_2010_census" real,
"number_of_settlements_and_villages" real
); | SELECT COUNT("english_name") FROM "districts_of_bogor_city" WHERE "area_in_km"='17.72'; | 1-1104312-5 |
What is the area in km2 for the district whose original name was Kecamatan Bogor Timur? | CREATE TABLE "districts_of_bogor_city" (
"english_name" text,
"original_name" text,
"area_in_km" text,
"population_at_2010_census" real,
"number_of_settlements_and_villages" real
); | SELECT "area_in_km" FROM "districts_of_bogor_city" WHERE "original_name"='Kecamatan Bogor Timur'; | 1-1104312-5 |
What is the number of colour with the regisration number of mg-509? | CREATE TABLE "production_overview" (
"pilot_car_no" real,
"colour" text,
"serial_no" text,
"engine_no" real,
"registration_no" text
); | SELECT COUNT("colour") FROM "production_overview" WHERE "registration_no"='MG-509'; | 1-11066073-1 |
What is the title of the episode directed by Mark Tinker? | CREATE TABLE "table1_11058032_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_millions" text
); | SELECT "title" FROM "table1_11058032_1" WHERE "directed_by"='Mark Tinker'; | 1-11058032-1 |
What episode in the season was directed by Jeff Melman? | CREATE TABLE "table1_11058032_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_millions" text
); | SELECT MIN("no_in_season") FROM "table1_11058032_1" WHERE "directed_by"='Jeff Melman'; | 1-11058032-1 |
Subsets and Splits