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