question
stringlengths 12
244
| create_table_statement
stringlengths 97
895
| sql_query
stringlengths 27
479
| wiki_sql_table_id
stringlengths 8
14
|
---|---|---|---|
The Catalog number is 80809 what is the title? | CREATE TABLE "official_callanetics_videos" (
"year" real,
"title" text,
"format" text,
"studio" text,
"release_date" text,
"copyright_information" text,
"catalog_number" text
); | SELECT "title" FROM "official_callanetics_videos" WHERE "catalog_number"='80809'; | 1-11222744-2 |
where title is beginning callanetics , what is the total of format ? | CREATE TABLE "official_callanetics_videos" (
"year" real,
"title" text,
"format" text,
"studio" text,
"release_date" text,
"copyright_information" text,
"catalog_number" text
); | SELECT COUNT("format") FROM "official_callanetics_videos" WHERE "title"='Beginning Callanetics'; | 1-11222744-2 |
where catalog number is 81258 , what are all the studio ? | CREATE TABLE "official_callanetics_videos" (
"year" real,
"title" text,
"format" text,
"studio" text,
"release_date" text,
"copyright_information" text,
"catalog_number" text
); | SELECT "studio" FROM "official_callanetics_videos" WHERE "catalog_number"='81258'; | 1-11222744-2 |
where title is am/pm callanetics , what are all the copyright information? | CREATE TABLE "official_callanetics_videos" (
"year" real,
"title" text,
"format" text,
"studio" text,
"release_date" text,
"copyright_information" text,
"catalog_number" text
); | SELECT "copyright_information" FROM "official_callanetics_videos" WHERE "title"='AM/PM Callanetics'; | 1-11222744-2 |
What was the GF attendance at the location of Sydney Football Stadium, Sydney (6)? | CREATE TABLE "1908_1994_new_south_wales_rugby_league" (
"season" real,
"grand_final_date" text,
"winning_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
); | SELECT COUNT("gf_attendance") FROM "1908_1994_new_south_wales_rugby_league" WHERE "location"='Sydney Football Stadium, Sydney (6)'; | 1-11236195-2 |
Which losing team had a score of 24-12? | CREATE TABLE "1908_1994_new_south_wales_rugby_league" (
"season" real,
"grand_final_date" text,
"winning_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
); | SELECT "losing_team" FROM "1908_1994_new_south_wales_rugby_league" WHERE "score"='24-12'; | 1-11236195-2 |
What was the losing team in the 1993 season? | CREATE TABLE "1908_1994_new_south_wales_rugby_league" (
"season" real,
"grand_final_date" text,
"winning_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
); | SELECT "losing_team" FROM "1908_1994_new_south_wales_rugby_league" WHERE "season"=1993; | 1-11236195-2 |
What was the compression ration when the engine was Wasp Jr. T1B2? | CREATE TABLE "specifications_for_different_r_985_wasp_" (
"engine" text,
"power_continuous" text,
"critical_altitude_this_is_the_highest_altitude_at_which_the_engine_can_achieve_its_full_continuous_power_rating_above_this_altitude_power_falls_off_with_height_as_with_a_naturally_aspirated_engine_see_superchargernum_altitude_effects_for_details" text,
"power_takeoff" text,
"compression_ratio" text,
"supercharger_gear_ratio" text,
"octane_rating" text,
"dry_weight" text
); | SELECT "compression_ratio" FROM "specifications_for_different_r_985_wasp_" WHERE "engine"='Wasp Jr. T1B2'; | 1-1123802-1 |
What is the compression ration when the continuous power is hp (kw) at 2,200 RPM and the octane rating is 80/87? | CREATE TABLE "specifications_for_different_r_985_wasp_" (
"engine" text,
"power_continuous" text,
"critical_altitude_this_is_the_highest_altitude_at_which_the_engine_can_achieve_its_full_continuous_power_rating_above_this_altitude_power_falls_off_with_height_as_with_a_naturally_aspirated_engine_see_superchargernum_altitude_effects_for_details" text,
"power_takeoff" text,
"compression_ratio" text,
"supercharger_gear_ratio" text,
"octane_rating" text,
"dry_weight" text
); | SELECT "compression_ratio" FROM "specifications_for_different_r_985_wasp_" WHERE "power_continuous"='hp (kW) at 2,200 RPM' AND "octane_rating"='80/87'; | 1-1123802-1 |
What is the compression ratio when the continuous power is hp (KW) at 2,200 RPM and the critical altitude is at sea level? | CREATE TABLE "specifications_for_different_r_985_wasp_" (
"engine" text,
"power_continuous" text,
"critical_altitude_this_is_the_highest_altitude_at_which_the_engine_can_achieve_its_full_continuous_power_rating_above_this_altitude_power_falls_off_with_height_as_with_a_naturally_aspirated_engine_see_superchargernum_altitude_effects_for_details" text,
"power_takeoff" text,
"compression_ratio" text,
"supercharger_gear_ratio" text,
"octane_rating" text,
"dry_weight" text
); | SELECT COUNT("compression_ratio") FROM "specifications_for_different_r_985_wasp_" WHERE "power_continuous"='hp (kW) at 2,200 RPM' AND "critical_altitude_this_is_the_highest_altitude_at_which_the_engine_can_achieve_its_full_continuous_power_rating_above_this_altitude_power_falls_off_with_height_as_with_a_naturally_aspirated_engine_see_superchargernum_altitude_effects_for_details"='sea level'; | 1-1123802-1 |
When the engine is Wasp Jr. T1B2, what is the number needed for takeoff power? | CREATE TABLE "specifications_for_different_r_985_wasp_" (
"engine" text,
"power_continuous" text,
"critical_altitude_this_is_the_highest_altitude_at_which_the_engine_can_achieve_its_full_continuous_power_rating_above_this_altitude_power_falls_off_with_height_as_with_a_naturally_aspirated_engine_see_superchargernum_altitude_effects_for_details" text,
"power_takeoff" text,
"compression_ratio" text,
"supercharger_gear_ratio" text,
"octane_rating" text,
"dry_weight" text
); | SELECT COUNT("power_takeoff") FROM "specifications_for_different_r_985_wasp_" WHERE "engine"='Wasp Jr. T1B2'; | 1-1123802-1 |
When critical altitude is sea level, what is the compression ration for a supercharger gear ratio of 7:1? | CREATE TABLE "specifications_for_different_r_985_wasp_" (
"engine" text,
"power_continuous" text,
"critical_altitude_this_is_the_highest_altitude_at_which_the_engine_can_achieve_its_full_continuous_power_rating_above_this_altitude_power_falls_off_with_height_as_with_a_naturally_aspirated_engine_see_superchargernum_altitude_effects_for_details" text,
"power_takeoff" text,
"compression_ratio" text,
"supercharger_gear_ratio" text,
"octane_rating" text,
"dry_weight" text
); | SELECT "compression_ratio" FROM "specifications_for_different_r_985_wasp_" WHERE "critical_altitude_this_is_the_highest_altitude_at_which_the_engine_can_achieve_its_full_continuous_power_rating_above_this_altitude_power_falls_off_with_height_as_with_a_naturally_aspirated_engine_see_superchargernum_altitude_effects_for_details"='sea level' AND "supercharger_gear_ratio"='7:1'; | 1-1123802-1 |
How many episodes aired on october 27, 2008 | CREATE TABLE "weekly_ratings" (
"num" real,
"episode" text,
"air_date" text,
"timeslot" text,
"viewers" text,
"weekly_rank_for_living" text
); | SELECT COUNT("episode") FROM "weekly_ratings" WHERE "air_date"='October 27, 2008'; | 1-11235334-2 |
The episode "chapter five: dressed to kill" had a weekly ranking of what? | CREATE TABLE "weekly_ratings" (
"num" real,
"episode" text,
"air_date" text,
"timeslot" text,
"viewers" text,
"weekly_rank_for_living" text
); | SELECT "weekly_rank_for_living" FROM "weekly_ratings" WHERE "episode"='\"Chapter Five: Dressed to Kill\"'; | 1-11235334-2 |
what is the most # that aired on september 29, 2008? | CREATE TABLE "weekly_ratings" (
"num" real,
"episode" text,
"air_date" text,
"timeslot" text,
"viewers" text,
"weekly_rank_for_living" text
); | SELECT MAX("num") FROM "weekly_ratings" WHERE "air_date"='September 29, 2008'; | 1-11235334-2 |
How many seasons did the canterbury bulldogs (8) win? | CREATE TABLE "1998_present_national_rugby_league" (
"season" real,
"grand_final_date" text,
"winning_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
); | SELECT COUNT("season") FROM "1998_present_national_rugby_league" WHERE "winning_team"='Canterbury Bulldogs (8)'; | 1-11236195-5 |
How many teams lost at the sydney football stadium, sydney (11)? | CREATE TABLE "1998_present_national_rugby_league" (
"season" real,
"grand_final_date" text,
"winning_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
); | SELECT COUNT("losing_team") FROM "1998_present_national_rugby_league" WHERE "location"='Sydney Football Stadium, Sydney (11)'; | 1-11236195-5 |
What was the date that the st. george-illawarra dragons lost? | CREATE TABLE "1998_present_national_rugby_league" (
"season" real,
"grand_final_date" text,
"winning_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
); | SELECT "grand_final_date" FROM "1998_present_national_rugby_league" WHERE "losing_team"='St. George-Illawarra Dragons'; | 1-11236195-5 |
Brett kimmorley, who was chosen for the clive churchill medal belonged to what team? | CREATE TABLE "1998_present_national_rugby_league" (
"season" real,
"grand_final_date" text,
"winning_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
); | SELECT "winning_team" FROM "1998_present_national_rugby_league" WHERE "clive_churchill_medal"='Brett Kimmorley'; | 1-11236195-5 |
What time slots have a 6.3 rating | CREATE TABLE "weekly_ratings" (
"num" real,
"episode" text,
"air_date" text,
"time_slot_est" text,
"rating" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_overall" text
); | SELECT "time_slot_est" FROM "weekly_ratings" WHERE "rating"='6.3'; | 1-11244302-1 |
What time slot is the episode "the way we weren't" in | CREATE TABLE "weekly_ratings" (
"num" real,
"episode" text,
"air_date" text,
"time_slot_est" text,
"rating" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_overall" text
); | SELECT "time_slot_est" FROM "weekly_ratings" WHERE "episode"='\"The Way We Weren''t\"'; | 1-11244302-1 |
What time slot is the episode "who's your daddy" in | CREATE TABLE "weekly_ratings" (
"num" real,
"episode" text,
"air_date" text,
"time_slot_est" text,
"rating" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_overall" text
); | SELECT "time_slot_est" FROM "weekly_ratings" WHERE "episode"='\"Who''s Your Daddy\"'; | 1-11244302-1 |
Which air date had an 11 share | CREATE TABLE "weekly_ratings" (
"num" real,
"episode" text,
"air_date" text,
"time_slot_est" text,
"rating" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_overall" text
); | SELECT "air_date" FROM "weekly_ratings" WHERE "share"=11; | 1-11244302-1 |
Which air date had the 18-49 rating/share of 3.3/9 | CREATE TABLE "weekly_ratings" (
"num" real,
"episode" text,
"air_date" text,
"time_slot_est" text,
"rating" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_overall" text
); | SELECT "air_date" FROM "weekly_ratings" WHERE "18_49_rating_share"='3.3/9'; | 1-11244302-1 |
Which characters had their first experience in the episode "consequences"? | CREATE TABLE "table1_11240028_3" (
"character" text,
"portrayed_by" text,
"relationship" text,
"first_appearance" text,
"last_appearance" text
); | SELECT "character" FROM "table1_11240028_3" WHERE "first_appearance"='\"Consequences\"'; | 1-11240028-3 |
What episode had the last appearances of the late wife of mac taylor? | CREATE TABLE "table1_11240028_3" (
"character" text,
"portrayed_by" text,
"relationship" text,
"first_appearance" text,
"last_appearance" text
); | SELECT "last_appearance" FROM "table1_11240028_3" WHERE "relationship"='Late wife of Mac Taylor'; | 1-11240028-3 |
Which characters were portrayed by reed garrett? | CREATE TABLE "table1_11240028_3" (
"character" text,
"portrayed_by" text,
"relationship" text,
"first_appearance" text,
"last_appearance" text
); | SELECT "portrayed_by" FROM "table1_11240028_3" WHERE "character"='Reed Garrett'; | 1-11240028-3 |
How many characters were portrayed by the informant of don flack? | CREATE TABLE "table1_11240028_3" (
"character" text,
"portrayed_by" text,
"relationship" text,
"first_appearance" text,
"last_appearance" text
); | SELECT COUNT("portrayed_by") FROM "table1_11240028_3" WHERE "relationship"='Informant of Don Flack'; | 1-11240028-3 |
What episode was the last appearance of the character, rikki sandoval? | CREATE TABLE "table1_11240028_3" (
"character" text,
"portrayed_by" text,
"relationship" text,
"first_appearance" text,
"last_appearance" text
); | SELECT "last_appearance" FROM "table1_11240028_3" WHERE "character"='Rikki Sandoval'; | 1-11240028-3 |
On which episode did actress Sela Ward make her last appearance? | CREATE TABLE "main_characters" (
"character" text,
"portrayed_by" text,
"first_appearance" text,
"last_appearance" text,
"duration" text,
"episodes" text
); | SELECT "last_appearance" FROM "main_characters" WHERE "portrayed_by"='Sela Ward'; | 1-11240028-1 |
Which actors first appeared in "Zoo York"? | CREATE TABLE "main_characters" (
"character" text,
"portrayed_by" text,
"first_appearance" text,
"last_appearance" text,
"duration" text,
"episodes" text
); | SELECT "portrayed_by" FROM "main_characters" WHERE "first_appearance"='\"Zoo York\"'; | 1-11240028-1 |
How many episodes did actress Vanessa Ferlito appear in? | CREATE TABLE "main_characters" (
"character" text,
"portrayed_by" text,
"first_appearance" text,
"last_appearance" text,
"duration" text,
"episodes" text
); | SELECT "episodes" FROM "main_characters" WHERE "portrayed_by"='Vanessa Ferlito'; | 1-11240028-1 |
Which actors first appeared in episode "Blink" 1, 2, 3? | CREATE TABLE "main_characters" (
"character" text,
"portrayed_by" text,
"first_appearance" text,
"last_appearance" text,
"duration" text,
"episodes" text
); | SELECT "portrayed_by" FROM "main_characters" WHERE "first_appearance"='\"Blink\" 1, 2, 3'; | 1-11240028-1 |
What was the duration of Robert Joy's portrayal? | CREATE TABLE "main_characters" (
"character" text,
"portrayed_by" text,
"first_appearance" text,
"last_appearance" text,
"duration" text,
"episodes" text
); | SELECT COUNT("duration") FROM "main_characters" WHERE "portrayed_by"='Robert Joy'; | 1-11240028-1 |
Which episode did actor A. J. Buckley last appear in? | CREATE TABLE "main_characters" (
"character" text,
"portrayed_by" text,
"first_appearance" text,
"last_appearance" text,
"duration" text,
"episodes" text
); | SELECT "last_appearance" FROM "main_characters" WHERE "portrayed_by"='A. J. Buckley'; | 1-11240028-1 |
What is the least top division titles? | CREATE TABLE "clubs" (
"club" text,
"position_in_2012_13" text,
"first_season_in_top_division" text,
"number_of_seasons_in_top_division" real,
"number_of_seasons_in_the_premier_league" real,
"first_season_of_current_spell_in_top_division" text,
"top_division_titles" real,
"last_top_division_title" text
); | SELECT MIN("top_division_titles") FROM "clubs"; | 1-11250-4 |
What is the least number of seasons in top division? | CREATE TABLE "clubs" (
"club" text,
"position_in_2012_13" text,
"first_season_in_top_division" text,
"number_of_seasons_in_top_division" real,
"number_of_seasons_in_the_premier_league" real,
"first_season_of_current_spell_in_top_division" text,
"top_division_titles" real,
"last_top_division_title" text
); | SELECT MIN("number_of_seasons_in_top_division") FROM "clubs"; | 1-11250-4 |
How many viewers (millions) were there for rank (week) 20? | CREATE TABLE "u_s_nielsen_ratings" (
"num" real,
"episode" text,
"rating" text,
"share" real,
"rating_share_18_49" text,
"viewers_millions" text,
"rank_timeslot" real,
"rank_night" real,
"rank_week" text
); | SELECT COUNT("viewers_millions") FROM "u_s_nielsen_ratings" WHERE "rank_week"='20'; | 1-11253290-2 |
What is the rank (timeslot) with the episode name "dangerous liaisons"? | CREATE TABLE "u_s_nielsen_ratings" (
"num" real,
"episode" text,
"rating" text,
"share" real,
"rating_share_18_49" text,
"viewers_millions" text,
"rank_timeslot" real,
"rank_night" real,
"rank_week" text
); | SELECT "rank_timeslot" FROM "u_s_nielsen_ratings" WHERE "episode"='\"Dangerous Liaisons\"'; | 1-11253290-2 |
What is the lowest rank (night) for having viewers (millions) 5.25? | CREATE TABLE "u_s_nielsen_ratings" (
"num" real,
"episode" text,
"rating" text,
"share" real,
"rating_share_18_49" text,
"viewers_millions" text,
"rank_timeslot" real,
"rank_night" real,
"rank_week" text
); | SELECT MIN("rank_night") FROM "u_s_nielsen_ratings" WHERE "viewers_millions"='5.25'; | 1-11253290-2 |
How many times was the episode named "conference call"? | CREATE TABLE "u_s_nielsen_ratings" (
"num" real,
"episode" text,
"rating" text,
"share" real,
"rating_share_18_49" text,
"viewers_millions" text,
"rank_timeslot" real,
"rank_night" real,
"rank_week" text
); | SELECT COUNT("num") FROM "u_s_nielsen_ratings" WHERE "episode"='\"Conference Call\"'; | 1-11253290-2 |
How many times was the rank (night) 11? | CREATE TABLE "u_s_nielsen_ratings" (
"num" real,
"episode" text,
"rating" text,
"share" real,
"rating_share_18_49" text,
"viewers_millions" text,
"rank_timeslot" real,
"rank_night" real,
"rank_week" text
); | SELECT COUNT("viewers_millions") FROM "u_s_nielsen_ratings" WHERE "rank_night"=11; | 1-11253290-2 |
WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS IN 2006 IN THE COUNTRY WHOSE CO2 EMISSIONS (TONS PER PERSON) REACHED 1.4 IN 2OO7? | CREATE TABLE "table1_11251601_2" (
"country" text,
"carbon_dioxide_emissions_per_year_10_6_tons_2006" real,
"percentage_of_global_total" text,
"avg_emission_per_km_2_of_its_land_tons" real,
"carbon_dioxide_emissions_per_year_tons_per_person_2007" text
); | SELECT "carbon_dioxide_emissions_per_year_10_6_tons_2006" FROM "table1_11251601_2" WHERE "carbon_dioxide_emissions_per_year_tons_per_person_2007"='1.4'; | 1-11251601-2 |
HOW MANY TONS OF CO2 EMISSIONS DID RUSSIA PRODUCE IN 2006? | CREATE TABLE "table1_11251601_2" (
"country" text,
"carbon_dioxide_emissions_per_year_10_6_tons_2006" real,
"percentage_of_global_total" text,
"avg_emission_per_km_2_of_its_land_tons" real,
"carbon_dioxide_emissions_per_year_tons_per_person_2007" text
); | SELECT MAX("carbon_dioxide_emissions_per_year_10_6_tons_2006") FROM "table1_11251601_2" WHERE "country"='Russia'; | 1-11251601-2 |
WHAT PERCENTAGE OF GLOBAL TOTAL EMISSIONS DID INDIA PRODUCE? | CREATE TABLE "table1_11251601_2" (
"country" text,
"carbon_dioxide_emissions_per_year_10_6_tons_2006" real,
"percentage_of_global_total" text,
"avg_emission_per_km_2_of_its_land_tons" real,
"carbon_dioxide_emissions_per_year_tons_per_person_2007" text
); | SELECT "percentage_of_global_total" FROM "table1_11251601_2" WHERE "country"='India'; | 1-11251601-2 |
HOW MUCH IS THE PERCENTAGE OF GLOBAL TOTAL EMISSIONS IN THE COUNTRY THAT PRODUCED 4.9 TONS PER PERSON IN 2007? | CREATE TABLE "table1_11251601_2" (
"country" text,
"carbon_dioxide_emissions_per_year_10_6_tons_2006" real,
"percentage_of_global_total" text,
"avg_emission_per_km_2_of_its_land_tons" real,
"carbon_dioxide_emissions_per_year_tons_per_person_2007" text
); | SELECT "percentage_of_global_total" FROM "table1_11251601_2" WHERE "carbon_dioxide_emissions_per_year_tons_per_person_2007"='4.9'; | 1-11251601-2 |
WHAT WAS THE AVERAGE EMISSION PER KM 2 IN INDIA? | CREATE TABLE "table1_11251601_2" (
"country" text,
"carbon_dioxide_emissions_per_year_10_6_tons_2006" real,
"percentage_of_global_total" text,
"avg_emission_per_km_2_of_its_land_tons" real,
"carbon_dioxide_emissions_per_year_tons_per_person_2007" text
); | SELECT MAX("avg_emission_per_km_2_of_its_land_tons") FROM "table1_11251601_2" WHERE "country"='India'; | 1-11251601-2 |
What is the rank number that aired october 26, 2007? | CREATE TABLE "weekly_ratings" (
"num" real,
"episode" text,
"air_date" text,
"timeslot_est" text,
"season" text,
"rating" text,
"share" real,
"18_49" text,
"viewers_m" text,
"rank_num" text
); | SELECT "rank_num" FROM "weekly_ratings" WHERE "air_date"='October 26, 2007'; | 1-11251109-3 |
What is the number of rank with the viewership of 5.96 million? | CREATE TABLE "weekly_ratings" (
"num" real,
"episode" text,
"air_date" text,
"timeslot_est" text,
"season" text,
"rating" text,
"share" real,
"18_49" text,
"viewers_m" text,
"rank_num" text
); | SELECT COUNT("rank_num") FROM "weekly_ratings" WHERE "viewers_m"='5.96'; | 1-11251109-3 |
What is the viewership on november 9, 2007? | CREATE TABLE "weekly_ratings" (
"num" real,
"episode" text,
"air_date" text,
"timeslot_est" text,
"season" text,
"rating" text,
"share" real,
"18_49" text,
"viewers_m" text,
"rank_num" text
); | SELECT "viewers_m" FROM "weekly_ratings" WHERE "air_date"='November 9, 2007'; | 1-11251109-3 |
How many platinum points were awarded when 6 gold points were awarded? | CREATE TABLE "ranking_points" (
"finishing_position" text,
"points_awarded_platinum" real,
"points_awarded_gold" real,
"points_awarded_silver" real,
"points_awarded_satellite" real
); | SELECT MAX("points_awarded_platinum") FROM "ranking_points" WHERE "points_awarded_gold"=6; | 1-11254821-2 |
What was the range of finishing position for 15 awarded platinum points? | CREATE TABLE "ranking_points" (
"finishing_position" text,
"points_awarded_platinum" real,
"points_awarded_gold" real,
"points_awarded_silver" real,
"points_awarded_satellite" real
); | SELECT "finishing_position" FROM "ranking_points" WHERE "points_awarded_platinum"=15; | 1-11254821-2 |
How many platinum points were awarded for 5th place? | CREATE TABLE "ranking_points" (
"finishing_position" text,
"points_awarded_platinum" real,
"points_awarded_gold" real,
"points_awarded_silver" real,
"points_awarded_satellite" real
); | SELECT MAX("points_awarded_platinum") FROM "ranking_points" WHERE "finishing_position"='5th'; | 1-11254821-2 |
How many platinum points were awarded when 70 silver points were awarded? | CREATE TABLE "ranking_points" (
"finishing_position" text,
"points_awarded_platinum" real,
"points_awarded_gold" real,
"points_awarded_silver" real,
"points_awarded_satellite" real
); | SELECT "points_awarded_platinum" FROM "ranking_points" WHERE "points_awarded_silver"=70; | 1-11254821-2 |
How many platinum points were awarded when 9 gold points were awarded? | CREATE TABLE "ranking_points" (
"finishing_position" text,
"points_awarded_platinum" real,
"points_awarded_gold" real,
"points_awarded_silver" real,
"points_awarded_satellite" real
); | SELECT "points_awarded_platinum" FROM "ranking_points" WHERE "points_awarded_gold"=9; | 1-11254821-2 |
How did the episode rank that had 2.65 million viewers? | CREATE TABLE "season_1" (
"no" real,
"episode" text,
"air_date" text,
"timeslot" text,
"rating" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
); | SELECT "rank_num" FROM "season_1" WHERE "viewers_m"='2.65'; | 1-11274401-2 |
What was the share for the first episode that ranked 85? | CREATE TABLE "season_1" (
"no" real,
"episode" text,
"air_date" text,
"timeslot" text,
"rating" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
); | SELECT MIN("share") FROM "season_1" WHERE "rank_num"='85'; | 1-11274401-2 |
Which timeslot did episode no. 15 hold? | CREATE TABLE "season_1" (
"no" real,
"episode" text,
"air_date" text,
"timeslot" text,
"rating" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
); | SELECT "timeslot" FROM "season_1" WHERE "no"=15; | 1-11274401-2 |
What was the timeslot for the episode that aired on May 12, 2009? | CREATE TABLE "season_2" (
"no" real,
"episode" text,
"air_date" text,
"timeslot" text,
"rating" text,
"share" text,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
); | SELECT "timeslot" FROM "season_2" WHERE "air_date"='May 12, 2009'; | 1-11274401-3 |
What's the 18-49 (rating/share) of the episode that originally aired on May 5, 2009? | CREATE TABLE "season_2" (
"no" real,
"episode" text,
"air_date" text,
"timeslot" text,
"rating" text,
"share" text,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
); | SELECT "18_49_rating_share" FROM "season_2" WHERE "air_date"='May 5, 2009'; | 1-11274401-3 |
What's the total number of episodes whose original airings were viewed by 1.82 million viewers? | CREATE TABLE "season_2" (
"no" real,
"episode" text,
"air_date" text,
"timeslot" text,
"rating" text,
"share" text,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
); | SELECT COUNT("air_date") FROM "season_2" WHERE "viewers_m"='1.82'; | 1-11274401-3 |
What's the rating of the episode originally aired on May 5, 2009? | CREATE TABLE "season_2" (
"no" real,
"episode" text,
"air_date" text,
"timeslot" text,
"rating" text,
"share" text,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
); | SELECT "rating" FROM "season_2" WHERE "air_date"='May 5, 2009'; | 1-11274401-3 |
What episode was seen by 2.05 million viewers? | CREATE TABLE "season_2" (
"no" real,
"episode" text,
"air_date" text,
"timeslot" text,
"rating" text,
"share" text,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
); | SELECT "episode" FROM "season_2" WHERE "viewers_m"='2.05'; | 1-11274401-3 |
what's the extroverted, relationship-oriented where extroverted, task-oriented is director | CREATE TABLE "table1_11256021_1" (
"date" text,
"founder" text,
"extroversion_scales" text,
"people_task_orientation_scale" text,
"introverted_task_oriented" text,
"extroverted_task_oriented" text,
"extroverted_relationship_oriented" text,
"introverted_relationship_oriented" text,
"moderate" text
); | SELECT "extroverted_relationship_oriented" FROM "table1_11256021_1" WHERE "extroverted_task_oriented"='Director'; | 1-11256021-1 |
what's the extroverted, relationship-oriented where moderate is introverted sanguine | CREATE TABLE "table1_11256021_1" (
"date" text,
"founder" text,
"extroversion_scales" text,
"people_task_orientation_scale" text,
"introverted_task_oriented" text,
"extroverted_task_oriented" text,
"extroverted_relationship_oriented" text,
"introverted_relationship_oriented" text,
"moderate" text
); | SELECT "extroverted_relationship_oriented" FROM "table1_11256021_1" WHERE "moderate"='Introverted Sanguine'; | 1-11256021-1 |
what's the founder where moderate is ether | CREATE TABLE "table1_11256021_1" (
"date" text,
"founder" text,
"extroversion_scales" text,
"people_task_orientation_scale" text,
"introverted_task_oriented" text,
"extroverted_task_oriented" text,
"extroverted_relationship_oriented" text,
"introverted_relationship_oriented" text,
"moderate" text
); | SELECT "founder" FROM "table1_11256021_1" WHERE "moderate"='ether'; | 1-11256021-1 |
what's the extroverted, relationship-oriented where date is c. 1928 | CREATE TABLE "table1_11256021_1" (
"date" text,
"founder" text,
"extroversion_scales" text,
"people_task_orientation_scale" text,
"introverted_task_oriented" text,
"extroverted_task_oriented" text,
"extroverted_relationship_oriented" text,
"introverted_relationship_oriented" text,
"moderate" text
); | SELECT "extroverted_relationship_oriented" FROM "table1_11256021_1" WHERE "date"='c. 1928'; | 1-11256021-1 |
who is the founder where date is c. 1900 | CREATE TABLE "table1_11256021_1" (
"date" text,
"founder" text,
"extroversion_scales" text,
"people_task_orientation_scale" text,
"introverted_task_oriented" text,
"extroverted_task_oriented" text,
"extroverted_relationship_oriented" text,
"introverted_relationship_oriented" text,
"moderate" text
); | SELECT "founder" FROM "table1_11256021_1" WHERE "date"='c. 1900'; | 1-11256021-1 |
what's the people-task orientation scale where extroverted, relationship-oriented is team type | CREATE TABLE "table1_11256021_1" (
"date" text,
"founder" text,
"extroversion_scales" text,
"people_task_orientation_scale" text,
"introverted_task_oriented" text,
"extroverted_task_oriented" text,
"extroverted_relationship_oriented" text,
"introverted_relationship_oriented" text,
"moderate" text
); | SELECT "people_task_orientation_scale" FROM "table1_11256021_1" WHERE "extroverted_relationship_oriented"='Team Type'; | 1-11256021-1 |
What is the batting team where the runs are 276? | CREATE TABLE "table1_11303072_5" (
"wicket" text,
"runs" text,
"batting_partners" text,
"batting_team" text,
"fielding_team" text,
"venue" text,
"season" text
); | SELECT "batting_team" FROM "table1_11303072_5" WHERE "runs"='276'; | 1-11303072-5 |
Name the batting team at Durham | CREATE TABLE "table1_11303072_5" (
"wicket" text,
"runs" text,
"batting_partners" text,
"batting_team" text,
"fielding_team" text,
"venue" text,
"season" text
); | SELECT "batting_team" FROM "table1_11303072_5" WHERE "fielding_team"='Durham'; | 1-11303072-5 |
What is the batting team with the batting partnets of thilina kandamby and rangana herath? | CREATE TABLE "table1_11303072_5" (
"wicket" text,
"runs" text,
"batting_partners" text,
"batting_team" text,
"fielding_team" text,
"venue" text,
"season" text
); | SELECT "batting_team" FROM "table1_11303072_5" WHERE "batting_partners"='Thilina Kandamby and Rangana Herath'; | 1-11303072-5 |
What is the fielding team with 155 runs? | CREATE TABLE "table1_11303072_5" (
"wicket" text,
"runs" text,
"batting_partners" text,
"batting_team" text,
"fielding_team" text,
"venue" text,
"season" text
); | SELECT "fielding_team" FROM "table1_11303072_5" WHERE "runs"='155'; | 1-11303072-5 |
What is the batting partners with runs of 226? | CREATE TABLE "table1_11303072_5" (
"wicket" text,
"runs" text,
"batting_partners" text,
"batting_team" text,
"fielding_team" text,
"venue" text,
"season" text
); | SELECT "batting_partners" FROM "table1_11303072_5" WHERE "runs"='226'; | 1-11303072-5 |
What is the nationality of David Bairstow? | CREATE TABLE "most_dismissals_in_a_career" (
"rank" real,
"dismissals" real,
"player" text,
"nationality" text,
"catches" real,
"stumpings" real,
"career_span" text
); | SELECT "nationality" FROM "most_dismissals_in_a_career" WHERE "player"='David Bairstow'; | 1-11303072-9 |
What are the players whose rank is 2? | CREATE TABLE "most_dismissals_in_a_career" (
"rank" real,
"dismissals" real,
"player" text,
"nationality" text,
"catches" real,
"stumpings" real,
"career_span" text
); | SELECT "player" FROM "most_dismissals_in_a_career" WHERE "rank"=2; | 1-11303072-9 |
How many stumpings has Paul Nixon in his career? | CREATE TABLE "most_dismissals_in_a_career" (
"rank" real,
"dismissals" real,
"player" text,
"nationality" text,
"catches" real,
"stumpings" real,
"career_span" text
); | SELECT "stumpings" FROM "most_dismissals_in_a_career" WHERE "player"='Paul Nixon'; | 1-11303072-9 |
Where is Adam Gilchrist from? | CREATE TABLE "most_dismissals_in_a_career" (
"rank" real,
"dismissals" real,
"player" text,
"nationality" text,
"catches" real,
"stumpings" real,
"career_span" text
); | SELECT "nationality" FROM "most_dismissals_in_a_career" WHERE "player"='Adam Gilchrist'; | 1-11303072-9 |
What are the title that have 19.48 million u.s. viewers? | CREATE TABLE "table1_1130632_1" (
"no_in_series" real,
"title" text,
"directed_by" text,
"written_by" text,
"featured_character_s" text,
"original_air_date" text,
"u_s_viewers_million" text
); | SELECT "title" FROM "table1_1130632_1" WHERE "u_s_viewers_million"='19.48'; | 1-1130632-1 |
Which titles have 18.73 u.s. viewers. | CREATE TABLE "table1_1130632_1" (
"no_in_series" real,
"title" text,
"directed_by" text,
"written_by" text,
"featured_character_s" text,
"original_air_date" text,
"u_s_viewers_million" text
); | SELECT "title" FROM "table1_1130632_1" WHERE "u_s_viewers_million"='18.73'; | 1-1130632-1 |
Who wrote all the shows with 18.73 u.s. viewers? | CREATE TABLE "table1_1130632_1" (
"no_in_series" real,
"title" text,
"directed_by" text,
"written_by" text,
"featured_character_s" text,
"original_air_date" text,
"u_s_viewers_million" text
); | SELECT "written_by" FROM "table1_1130632_1" WHERE "u_s_viewers_million"='18.73'; | 1-1130632-1 |
What is the rank where the area is Los Angeles? | CREATE TABLE "metropolitan_areas_with_largest_jewish_p" (
"rank_wjc" real,
"rank_arda" real,
"metro_area" text,
"number_of_jews_wjc" real,
"number_of_jews_asarb" real
); | SELECT "rank_wjc" FROM "metropolitan_areas_with_largest_jewish_p" WHERE "metro_area"='Los Angeles'; | 1-1131183-2 |
What is the number of jews where the rank is 1? | CREATE TABLE "metropolitan_areas_with_largest_jewish_p" (
"rank_wjc" real,
"rank_arda" real,
"metro_area" text,
"number_of_jews_wjc" real,
"number_of_jews_asarb" real
); | SELECT COUNT("number_of_jews_wjc") FROM "metropolitan_areas_with_largest_jewish_p" WHERE "rank_arda"=1; | 1-1131183-2 |
What is the number of jews asarb where the metro area is philadelphia? | CREATE TABLE "metropolitan_areas_with_largest_jewish_p" (
"rank_wjc" real,
"rank_arda" real,
"metro_area" text,
"number_of_jews_wjc" real,
"number_of_jews_asarb" real
); | SELECT "number_of_jews_asarb" FROM "metropolitan_areas_with_largest_jewish_p" WHERE "metro_area"='Philadelphia'; | 1-1131183-2 |
what are all the open 1st viii with u15 6th iv being bgs | CREATE TABLE "winning_head_of_the_river_championship_e" (
"crew" real,
"open_1st_viii" text,
"open_2nd_viii" text,
"open_3rd_viii" text,
"u16_1st_viii" text,
"u16_2nd_viii" text,
"u16_3rd_viii" text,
"u15_1st_iv" text,
"u15_2nd_iv" text,
"u15_3rd_iv" text,
"u15_4th_iv" text,
"u15_5th_iv" text,
"u15_6th_iv" text
); | SELECT "open_1st_viii" FROM "winning_head_of_the_river_championship_e" WHERE "u15_6th_iv"='BGS'; | 1-11318462-5 |
what are all the u16 2nd viii with u15 3rd iv being bbc | CREATE TABLE "winning_head_of_the_river_championship_e" (
"crew" real,
"open_1st_viii" text,
"open_2nd_viii" text,
"open_3rd_viii" text,
"u16_1st_viii" text,
"u16_2nd_viii" text,
"u16_3rd_viii" text,
"u15_1st_iv" text,
"u15_2nd_iv" text,
"u15_3rd_iv" text,
"u15_4th_iv" text,
"u15_5th_iv" text,
"u15_6th_iv" text
); | SELECT "u16_2nd_viii" FROM "winning_head_of_the_river_championship_e" WHERE "u15_3rd_iv"='BBC'; | 1-11318462-5 |
what are all the open 1st viii with u15 4th iv being gt | CREATE TABLE "winning_head_of_the_river_championship_e" (
"crew" real,
"open_1st_viii" text,
"open_2nd_viii" text,
"open_3rd_viii" text,
"u16_1st_viii" text,
"u16_2nd_viii" text,
"u16_3rd_viii" text,
"u15_1st_iv" text,
"u15_2nd_iv" text,
"u15_3rd_iv" text,
"u15_4th_iv" text,
"u15_5th_iv" text,
"u15_6th_iv" text
); | SELECT "open_1st_viii" FROM "winning_head_of_the_river_championship_e" WHERE "u15_4th_iv"='GT'; | 1-11318462-5 |
how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs | CREATE TABLE "winning_head_of_the_river_championship_e" (
"crew" real,
"open_1st_viii" text,
"open_2nd_viii" text,
"open_3rd_viii" text,
"u16_1st_viii" text,
"u16_2nd_viii" text,
"u16_3rd_viii" text,
"u15_1st_iv" text,
"u15_2nd_iv" text,
"u15_3rd_iv" text,
"u15_4th_iv" text,
"u15_5th_iv" text,
"u15_6th_iv" text
); | SELECT COUNT("crew") FROM "winning_head_of_the_river_championship_e" WHERE "u15_3rd_iv"='BGS' AND "u15_1st_iv"='ACGS' AND "open_1st_viii"='ACGS'; | 1-11318462-5 |
what are all the u15 3rd iv with u15 4th iv being bbc | CREATE TABLE "winning_head_of_the_river_championship_e" (
"crew" real,
"open_1st_viii" text,
"open_2nd_viii" text,
"open_3rd_viii" text,
"u16_1st_viii" text,
"u16_2nd_viii" text,
"u16_3rd_viii" text,
"u15_1st_iv" text,
"u15_2nd_iv" text,
"u15_3rd_iv" text,
"u15_4th_iv" text,
"u15_5th_iv" text,
"u15_6th_iv" text
); | SELECT "u15_3rd_iv" FROM "winning_head_of_the_river_championship_e" WHERE "u15_4th_iv"='BBC'; | 1-11318462-5 |
how many open 2nd viii had u15 3rd iv being gt | CREATE TABLE "winning_head_of_the_river_championship_e" (
"crew" real,
"open_1st_viii" text,
"open_2nd_viii" text,
"open_3rd_viii" text,
"u16_1st_viii" text,
"u16_2nd_viii" text,
"u16_3rd_viii" text,
"u15_1st_iv" text,
"u15_2nd_iv" text,
"u15_3rd_iv" text,
"u15_4th_iv" text,
"u15_5th_iv" text,
"u15_6th_iv" text
); | SELECT COUNT("open_2nd_viii") FROM "winning_head_of_the_river_championship_e" WHERE "u15_3rd_iv"='GT'; | 1-11318462-5 |
How many schools have an enrollment of 850? | CREATE TABLE "winning_head_of_the_river_championship_e" (
"school" text,
"location" text,
"enrolment" real,
"founded" real,
"denomination" text,
"day_boarding" text,
"school_colours" text,
"abbreviation" text,
"in_competition_since" real
); | SELECT COUNT("founded") FROM "winning_head_of_the_river_championship_e" WHERE "enrolment"=850; | 1-11318462-29 |
What is the location of the school named Brisbane Girls' Grammar School? | CREATE TABLE "winning_head_of_the_river_championship_e" (
"school" text,
"location" text,
"enrolment" real,
"founded" real,
"denomination" text,
"day_boarding" text,
"school_colours" text,
"abbreviation" text,
"in_competition_since" real
); | SELECT "location" FROM "winning_head_of_the_river_championship_e" WHERE "school"='Brisbane Girls'' Grammar School'; | 1-11318462-29 |
How many schools are located in South Brisbane? | CREATE TABLE "winning_head_of_the_river_championship_e" (
"school" text,
"location" text,
"enrolment" real,
"founded" real,
"denomination" text,
"day_boarding" text,
"school_colours" text,
"abbreviation" text,
"in_competition_since" real
); | SELECT COUNT("school") FROM "winning_head_of_the_river_championship_e" WHERE "location"='South Brisbane'; | 1-11318462-29 |
When was SPLC founded? | CREATE TABLE "winning_head_of_the_river_championship_e" (
"school" text,
"location" text,
"enrolment" real,
"founded" real,
"denomination" text,
"day_boarding" text,
"school_colours" text,
"abbreviation" text,
"in_competition_since" real
); | SELECT MIN("founded") FROM "winning_head_of_the_river_championship_e" WHERE "abbreviation"='SPLC'; | 1-11318462-29 |
What is the enrollment of STM which has been in competition since 1990? | CREATE TABLE "winning_head_of_the_river_championship_e" (
"school" text,
"location" text,
"enrolment" real,
"founded" real,
"denomination" text,
"day_boarding" text,
"school_colours" text,
"abbreviation" text,
"in_competition_since" real
); | SELECT COUNT("enrolment") FROM "winning_head_of_the_river_championship_e" WHERE "in_competition_since"=1990 AND "abbreviation"='STM'; | 1-11318462-29 |
What number is the Monaco Grand Prix? | CREATE TABLE "grands_prix" (
"rd" real,
"grand_prix" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"constructor" text,
"report" text
); | SELECT "rd" FROM "grands_prix" WHERE "grand_prix"='Monaco Grand Prix'; | 1-1132568-3 |
Who is in the pole position for the French Grand Prix? | CREATE TABLE "grands_prix" (
"rd" real,
"grand_prix" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"constructor" text,
"report" text
); | SELECT "pole_position" FROM "grands_prix" WHERE "grand_prix"='French Grand Prix'; | 1-1132568-3 |
What are the numbers for the raceways that are constructed by Ferrari, with Michael Schumacher holding the fastest lap and pole position? | CREATE TABLE "grands_prix" (
"rd" real,
"grand_prix" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"constructor" text,
"report" text
); | SELECT "rd" FROM "grands_prix" WHERE "fastest_lap"='Michael Schumacher' AND "constructor"='Ferrari' AND "pole_position"='Michael Schumacher'; | 1-1132568-3 |
How many on the list are called the Austrian Grand Prix? | CREATE TABLE "grands_prix" (
"rd" real,
"grand_prix" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"constructor" text,
"report" text
); | SELECT COUNT("rd") FROM "grands_prix" WHERE "grand_prix"='Austrian Grand Prix'; | 1-1132568-3 |
What number is the Canadian Grand Prix on the list? | CREATE TABLE "grands_prix" (
"rd" real,
"grand_prix" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"constructor" text,
"report" text
); | SELECT "rd" FROM "grands_prix" WHERE "grand_prix"='Canadian Grand Prix'; | 1-1132568-3 |
Subsets and Splits