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" text,
"release_date" text,
"copyright_information" text,
"catalog_number" text
);
### SQL
Given the database schema, here is the SQL query that answers `The Catalog number is 80809 what is the title?`:
```sql
|
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" text,
"studio" text,
"release_date" text,
"copyright_information" text,
"catalog_number" text
);
### SQL
Given the database schema, here is the SQL query that answers `where title is beginning callanetics , what is the total of format ?`:
```sql
|
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,
"studio" text,
"release_date" text,
"copyright_information" text,
"catalog_number" text
);
### SQL
Given the database schema, here is the SQL query that answers `where catalog number is 81258 , what are all the studio ?`:
```sql
|
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,
"format" text,
"studio" text,
"release_date" text,
"copyright_information" text,
"catalog_number" text
);
### SQL
Given the database schema, here is the SQL query that answers `where title is am/pm callanetics , what are all the copyright information?`:
```sql
|
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,
"grand_final_date" text,
"winning_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
);
### SQL
Given the database schema, here is the SQL query that answers `What was the GF attendance at the location of Sydney Football Stadium, Sydney (6)?`:
```sql
|
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_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
);
### SQL
Given the database schema, here is the SQL query that answers `Which losing team had a score of 24-12?`:
```sql
|
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,
"winning_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
);
### SQL
Given the database schema, here is the SQL query that answers `What was the losing team in the 1993 season?`:
```sql
|
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_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
);
### SQL
Given the database schema, here is the SQL query that answers `What was the compression ration when the engine was Wasp Jr. T1B2?`:
```sql
|
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_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
);
### SQL
Given the database schema, here is the SQL query that answers `What is the compression ration when the continuous power is hp (kw) at 2,200 RPM and the octane rating is 80/87?`:
```sql
|
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';
|
## 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_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
);
### SQL
Given the database schema, here is the SQL query that answers `What is the compression ratio when the continuous power is hp (KW) at 2,200 RPM and the critical altitude is at sea level?`:
```sql
|
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,
"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
);
### SQL
Given the database schema, here is the SQL query that answers `When the engine is Wasp Jr. T1B2, what is the number needed for takeoff power?`:
```sql
|
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';
|
## 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_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
);
### SQL
Given the database schema, here is the SQL query that answers `When critical altitude is sea level, what is the compression ration for a supercharger gear ratio of 7:1?`:
```sql
|
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,
"viewers" text,
"weekly_rank_for_living" text
);
### SQL
Given the database schema, here is the SQL query that answers `How many episodes aired on october 27, 2008`:
```sql
|
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" text,
"timeslot" text,
"viewers" text,
"weekly_rank_for_living" text
);
### SQL
Given the database schema, here is the SQL query that answers `The episode "chapter five: dressed to kill" had a weekly ranking of what?`:
```sql
|
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,
"viewers" text,
"weekly_rank_for_living" text
);
### SQL
Given the database schema, here is the SQL query that answers `what is the most # that aired on september 29, 2008?`:
```sql
|
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,
"winning_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
);
### SQL
Given the database schema, here is the SQL query that answers `How many seasons did the canterbury bulldogs (8) win?`:
```sql
|
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" text,
"winning_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
);
### SQL
Given the database schema, here is the SQL query that answers `How many teams lost at the sydney football stadium, sydney (11)?`:
```sql
|
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" text,
"winning_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
);
### SQL
Given the database schema, here is the SQL query that answers `What was the date that the st. george-illawarra dragons lost?`:
```sql
|
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,
"grand_final_date" text,
"winning_team" text,
"score" text,
"losing_team" text,
"location" text,
"gf_attendance" real,
"clive_churchill_medal" text
);
### SQL
Given the database schema, here is the SQL query that answers `Brett kimmorley, who was chosen for the clive churchill medal belonged to what team?`:
```sql
|
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" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_overall" text
);
### SQL
Given the database schema, here is the SQL query that answers `What time slots have a 6.3 rating`:
```sql
|
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" text,
"rating" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_overall" text
);
### SQL
Given the database schema, here is the SQL query that answers `What time slot is the episode "the way we weren't" in`:
```sql
|
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" text,
"rating" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_overall" text
);
### SQL
Given the database schema, here is the SQL query that answers `What time slot is the episode "who's your daddy" in`:
```sql
|
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,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_overall" text
);
### SQL
Given the database schema, here is the SQL query that answers `Which air date had an 11 share`:
```sql
|
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" text,
"rating" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_overall" text
);
### SQL
Given the database schema, here is the SQL query that answers `Which air date had the 18-49 rating/share of 3.3/9`:
```sql
|
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,
"relationship" text,
"first_appearance" text,
"last_appearance" text
);
### SQL
Given the database schema, here is the SQL query that answers `Which characters had their first experience in the episode "consequences"?`:
```sql
|
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,
"relationship" text,
"first_appearance" text,
"last_appearance" text
);
### SQL
Given the database schema, here is the SQL query that answers `What episode had the last appearances of the late wife of mac taylor?`:
```sql
|
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,
"first_appearance" text,
"last_appearance" text
);
### SQL
Given the database schema, here is the SQL query that answers `Which characters were portrayed by reed garrett?`:
```sql
|
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,
"relationship" text,
"first_appearance" text,
"last_appearance" text
);
### SQL
Given the database schema, here is the SQL query that answers `How many characters were portrayed by the informant of don flack?`:
```sql
|
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,
"relationship" text,
"first_appearance" text,
"last_appearance" text
);
### SQL
Given the database schema, here is the SQL query that answers `What episode was the last appearance of the character, rikki sandoval?`:
```sql
|
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_appearance" text,
"last_appearance" text,
"duration" text,
"episodes" text
);
### SQL
Given the database schema, here is the SQL query that answers `On which episode did actress Sela Ward make her last appearance?`:
```sql
|
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_appearance" text,
"duration" text,
"episodes" text
);
### SQL
Given the database schema, here is the SQL query that answers `Which actors first appeared in "Zoo York"?`:
```sql
|
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" text,
"last_appearance" text,
"duration" text,
"episodes" text
);
### SQL
Given the database schema, here is the SQL query that answers `How many episodes did actress Vanessa Ferlito appear in?`:
```sql
|
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" text,
"last_appearance" text,
"duration" text,
"episodes" text
);
### SQL
Given the database schema, here is the SQL query that answers `Which actors first appeared in episode "Blink" 1, 2, 3?`:
```sql
|
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,
"last_appearance" text,
"duration" text,
"episodes" text
);
### SQL
Given the database schema, here is the SQL query that answers `What was the duration of Robert Joy's portrayal?`:
```sql
|
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" text,
"last_appearance" text,
"duration" text,
"episodes" text
);
### SQL
Given the database schema, here is the SQL query that answers `Which episode did actor A. J. Buckley last appear in?`:
```sql
|
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,
"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
);
### SQL
Given the database schema, here is the SQL query that answers `What is the least top division titles?`:
```sql
|
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" 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
);
### SQL
Given the database schema, here is the SQL query that answers `What is the least number of seasons in top division?`:
```sql
|
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" real,
"rating_share_18_49" text,
"viewers_millions" text,
"rank_timeslot" real,
"rank_night" real,
"rank_week" text
);
### SQL
Given the database schema, here is the SQL query that answers `How many viewers (millions) were there for rank (week) 20?`:
```sql
|
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" text,
"share" real,
"rating_share_18_49" text,
"viewers_millions" text,
"rank_timeslot" real,
"rank_night" real,
"rank_week" text
);
### SQL
Given the database schema, here is the SQL query that answers `What is the rank (timeslot) with the episode name "dangerous liaisons"?`:
```sql
|
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,
"share" real,
"rating_share_18_49" text,
"viewers_millions" text,
"rank_timeslot" real,
"rank_night" real,
"rank_week" text
);
### SQL
Given the database schema, here is the SQL query that answers `What is the lowest rank (night) for having viewers (millions) 5.25?`:
```sql
|
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" real,
"rating_share_18_49" text,
"viewers_millions" text,
"rank_timeslot" real,
"rank_night" real,
"rank_week" text
);
### SQL
Given the database schema, here is the SQL query that answers `How many times was the episode named "conference call"?`:
```sql
|
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_share_18_49" text,
"viewers_millions" text,
"rank_timeslot" real,
"rank_night" real,
"rank_week" text
);
### SQL
Given the database schema, here is the SQL query that answers `How many times was the rank (night) 11?`:
```sql
|
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_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
);
### SQL
Given the database schema, here is the SQL query that answers `WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS IN 2006 IN THE COUNTRY WHOSE CO2 EMISSIONS (TONS PER PERSON) REACHED 1.4 IN 2OO7?`:
```sql
|
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_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
);
### SQL
Given the database schema, here is the SQL query that answers `HOW MANY TONS OF CO2 EMISSIONS DID RUSSIA PRODUCE IN 2006?`:
```sql
|
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_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
);
### SQL
Given the database schema, here is the SQL query that answers `WHAT PERCENTAGE OF GLOBAL TOTAL EMISSIONS DID INDIA PRODUCE?`:
```sql
|
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" (
"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
);
### SQL
Given the database schema, here is the SQL query that answers `HOW MUCH IS THE PERCENTAGE OF GLOBAL TOTAL EMISSIONS IN THE COUNTRY THAT PRODUCED 4.9 TONS PER PERSON IN 2007?`:
```sql
|
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" 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
);
### SQL
Given the database schema, here is the SQL query that answers `WHAT WAS THE AVERAGE EMISSION PER KM 2 IN INDIA?`:
```sql
|
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" text,
"season" text,
"rating" text,
"share" real,
"18_49" text,
"viewers_m" text,
"rank_num" text
);
### SQL
Given the database schema, here is the SQL query that answers `What is the rank number that aired october 26, 2007?`:
```sql
|
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,
"timeslot_est" text,
"season" text,
"rating" text,
"share" real,
"18_49" text,
"viewers_m" text,
"rank_num" text
);
### SQL
Given the database schema, here is the SQL query that answers `What is the number of rank with the viewership of 5.96 million?`:
```sql
|
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,
"season" text,
"rating" text,
"share" real,
"18_49" text,
"viewers_m" text,
"rank_num" text
);
### SQL
Given the database schema, here is the SQL query that answers `What is the viewership on november 9, 2007?`:
```sql
|
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_platinum" real,
"points_awarded_gold" real,
"points_awarded_silver" real,
"points_awarded_satellite" real
);
### SQL
Given the database schema, here is the SQL query that answers `How many platinum points were awarded when 6 gold points were awarded?`:
```sql
|
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_platinum" real,
"points_awarded_gold" real,
"points_awarded_silver" real,
"points_awarded_satellite" real
);
### SQL
Given the database schema, here is the SQL query that answers `What was the range of finishing position for 15 awarded platinum points?`:
```sql
|
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,
"points_awarded_gold" real,
"points_awarded_silver" real,
"points_awarded_satellite" real
);
### SQL
Given the database schema, here is the SQL query that answers `How many platinum points were awarded for 5th place?`:
```sql
|
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_platinum" real,
"points_awarded_gold" real,
"points_awarded_silver" real,
"points_awarded_satellite" real
);
### SQL
Given the database schema, here is the SQL query that answers `How many platinum points were awarded when 70 silver points were awarded?`:
```sql
|
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_platinum" real,
"points_awarded_gold" real,
"points_awarded_silver" real,
"points_awarded_satellite" real
);
### SQL
Given the database schema, here is the SQL query that answers `How many platinum points were awarded when 9 gold points were awarded?`:
```sql
|
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,
"rating" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
);
### SQL
Given the database schema, here is the SQL query that answers `How did the episode rank that had 2.65 million viewers?`:
```sql
|
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,
"rating" text,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
);
### SQL
Given the database schema, here is the SQL query that answers `What was the share for the first episode that ranked 85?`:
```sql
|
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,
"share" real,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
);
### SQL
Given the database schema, here is the SQL query that answers `Which timeslot did episode no. 15 hold?`:
```sql
|
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" text,
"rating" text,
"share" text,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
);
### SQL
Given the database schema, here is the SQL query that answers `What was the timeslot for the episode that aired on May 12, 2009?`:
```sql
|
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" text,
"timeslot" text,
"rating" text,
"share" text,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
);
### SQL
Given the database schema, here is the SQL query that answers `What's the 18-49 (rating/share) of the episode that originally aired on May 5, 2009?`:
```sql
|
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,
"air_date" text,
"timeslot" text,
"rating" text,
"share" text,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
);
### SQL
Given the database schema, here is the SQL query that answers `What's the total number of episodes whose original airings were viewed by 1.82 million viewers?`:
```sql
|
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" text,
"rating" text,
"share" text,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
);
### SQL
Given the database schema, here is the SQL query that answers `What's the rating of the episode originally aired on May 5, 2009?`:
```sql
|
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" text,
"share" text,
"18_49_rating_share" text,
"viewers_m" text,
"rank_num" text
);
### SQL
Given the database schema, here is the SQL query that answers `What episode was seen by 2.05 million viewers?`:
```sql
|
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" 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
);
### SQL
Given the database schema, here is the SQL query that answers ` what's the extroverted, relationship-oriented where extroverted, task-oriented is director`:
```sql
|
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,
"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
);
### SQL
Given the database schema, here is the SQL query that answers ` what's the extroverted, relationship-oriented where moderate is introverted sanguine`:
```sql
|
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_task_orientation_scale" text,
"introverted_task_oriented" text,
"extroverted_task_oriented" text,
"extroverted_relationship_oriented" text,
"introverted_relationship_oriented" text,
"moderate" text
);
### SQL
Given the database schema, here is the SQL query that answers ` what's the founder where moderate is ether`:
```sql
|
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_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
);
### SQL
Given the database schema, here is the SQL query that answers ` what's the extroverted, relationship-oriented where date is c. 1928`:
```sql
|
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_orientation_scale" text,
"introverted_task_oriented" text,
"extroverted_task_oriented" text,
"extroverted_relationship_oriented" text,
"introverted_relationship_oriented" text,
"moderate" text
);
### SQL
Given the database schema, here is the SQL query that answers ` who is the founder where date is c. 1900`:
```sql
|
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,
"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
);
### SQL
Given the database schema, here is the SQL query that answers ` what's the people-task orientation scale where extroverted, relationship-oriented is team type`:
```sql
|
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_team" text,
"fielding_team" text,
"venue" text,
"season" text
);
### SQL
Given the database schema, here is the SQL query that answers `What is the batting team where the runs are 276?`:
```sql
|
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,
"fielding_team" text,
"venue" text,
"season" text
);
### SQL
Given the database schema, here is the SQL query that answers `Name the batting team at Durham`:
```sql
|
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" text,
"batting_partners" text,
"batting_team" text,
"fielding_team" text,
"venue" text,
"season" text
);
### SQL
Given the database schema, here is the SQL query that answers `What is the batting team with the batting partnets of thilina kandamby and rangana herath?`:
```sql
|
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" text,
"fielding_team" text,
"venue" text,
"season" text
);
### SQL
Given the database schema, here is the SQL query that answers `What is the fielding team with 155 runs?`:
```sql
|
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_team" text,
"fielding_team" text,
"venue" text,
"season" text
);
### SQL
Given the database schema, here is the SQL query that answers `What is the batting partners with runs of 226?`:
```sql
|
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,
"nationality" text,
"catches" real,
"stumpings" real,
"career_span" text
);
### SQL
Given the database schema, here is the SQL query that answers `What is the nationality of David Bairstow?`:
```sql
|
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" text,
"catches" real,
"stumpings" real,
"career_span" text
);
### SQL
Given the database schema, here is the SQL query that answers `What are the players whose rank is 2?`:
```sql
|
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,
"nationality" text,
"catches" real,
"stumpings" real,
"career_span" text
);
### SQL
Given the database schema, here is the SQL query that answers `How many stumpings has Paul Nixon in his career?`:
```sql
|
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,
"catches" real,
"stumpings" real,
"career_span" text
);
### SQL
Given the database schema, here is the SQL query that answers `Where is Adam Gilchrist from?`:
```sql
|
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,
"written_by" text,
"featured_character_s" text,
"original_air_date" text,
"u_s_viewers_million" text
);
### SQL
Given the database schema, here is the SQL query that answers `What are the title that have 19.48 million u.s. viewers?`:
```sql
|
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,
"featured_character_s" text,
"original_air_date" text,
"u_s_viewers_million" text
);
### SQL
Given the database schema, here is the SQL query that answers `Which titles have 18.73 u.s. viewers.`:
```sql
|
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_by" text,
"featured_character_s" text,
"original_air_date" text,
"u_s_viewers_million" text
);
### SQL
Given the database schema, here is the SQL query that answers `Who wrote all the shows with 18.73 u.s. viewers?`:
```sql
|
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_area" text,
"number_of_jews_wjc" real,
"number_of_jews_asarb" real
);
### SQL
Given the database schema, here is the SQL query that answers `What is the rank where the area is Los Angeles?`:
```sql
|
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_area" text,
"number_of_jews_wjc" real,
"number_of_jews_asarb" real
);
### SQL
Given the database schema, here is the SQL query that answers `What is the number of jews where the rank is 1?`:
```sql
|
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,
"rank_arda" real,
"metro_area" text,
"number_of_jews_wjc" real,
"number_of_jews_asarb" real
);
### SQL
Given the database schema, here is the SQL query that answers `What is the number of jews asarb where the metro area is philadelphia?`:
```sql
|
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,
"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
);
### SQL
Given the database schema, here is the SQL query that answers `what are all the open 1st viii with u15 6th iv being bgs`:
```sql
|
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,
"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
);
### SQL
Given the database schema, here is the SQL query that answers `what are all the u16 2nd viii with u15 3rd iv being bbc`:
```sql
|
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,
"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
);
### SQL
Given the database schema, here is the SQL query that answers `what are all the open 1st viii with u15 4th iv being gt`:
```sql
|
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" (
"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
);
### SQL
Given the database schema, here is the SQL query that answers `how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs`:
```sql
|
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,
"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
);
### SQL
Given the database schema, here is the SQL query that answers `what are all the u15 3rd iv with u15 4th iv being bbc`:
```sql
|
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_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
);
### SQL
Given the database schema, here is the SQL query that answers `how many open 2nd viii had u15 3rd iv being gt`:
```sql
|
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" real,
"founded" real,
"denomination" text,
"day_boarding" text,
"school_colours" text,
"abbreviation" text,
"in_competition_since" real
);
### SQL
Given the database schema, here is the SQL query that answers `How many schools have an enrollment of 850?`:
```sql
|
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,
"location" text,
"enrolment" real,
"founded" real,
"denomination" text,
"day_boarding" text,
"school_colours" text,
"abbreviation" text,
"in_competition_since" real
);
### SQL
Given the database schema, here is the SQL query that answers `What is the location of the school named Brisbane Girls' Grammar School?`:
```sql
|
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" real,
"founded" real,
"denomination" text,
"day_boarding" text,
"school_colours" text,
"abbreviation" text,
"in_competition_since" real
);
### SQL
Given the database schema, here is the SQL query that answers `How many schools are located in South Brisbane?`:
```sql
|
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,
"denomination" text,
"day_boarding" text,
"school_colours" text,
"abbreviation" text,
"in_competition_since" real
);
### SQL
Given the database schema, here is the SQL query that answers `When was SPLC founded?`:
```sql
|
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,
"location" text,
"enrolment" real,
"founded" real,
"denomination" text,
"day_boarding" text,
"school_colours" text,
"abbreviation" text,
"in_competition_since" real
);
### SQL
Given the database schema, here is the SQL query that answers `What is the enrollment of STM which has been in competition since 1990?`:
```sql
|
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,
"winning_driver" text,
"constructor" text,
"report" text
);
### SQL
Given the database schema, here is the SQL query that answers `What number is the Monaco Grand Prix?`:
```sql
|
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_lap" text,
"winning_driver" text,
"constructor" text,
"report" text
);
### SQL
Given the database schema, here is the SQL query that answers `Who is in the pole position for the French Grand Prix?`:
```sql
|
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 "grands_prix" (
"rd" real,
"grand_prix" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"constructor" text,
"report" text
);
### SQL
Given the database schema, here is the SQL query that answers `What are the numbers for the raceways that are constructed by Ferrari, with Michael Schumacher holding the fastest lap and pole position?`:
```sql
|
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_lap" text,
"winning_driver" text,
"constructor" text,
"report" text
);
### SQL
Given the database schema, here is the SQL query that answers `How many on the list are called the Austrian Grand Prix?`:
```sql
|
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" text,
"winning_driver" text,
"constructor" text,
"report" text
);
### SQL
Given the database schema, here is the SQL query that answers `What number is the Canadian Grand Prix on the list?`:
```sql
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.