question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
what is the average rank when the lane is more than 4 and the name is dominik meichtry?
CREATE TABLE "semifinal_2" ( "rank" real, "lane" real, "name" text, "nationality" text, "time" real );
SELECT AVG("rank") FROM "semifinal_2" WHERE "lane">4 AND "name"='dominik meichtry';
2-18624623-5
What is the 2012 Employees (Total) when the rank (2012) is 7?
CREATE TABLE "largest_employers" ( "rank_2012" real, "rank_2010" real, "employer" text, "industry" text, "2012_employees_total" real, "2010_employees_total" real, "2007_employees_total" text, "head_office" text );
SELECT "2012_employees_total" FROM "largest_employers" WHERE "rank_2012"=7;
2-1841-1
What is the total number of 2012 Employees (Total) when 2007 Employees (Total) is 8,985, and rank (2010) is smaller than 9?
CREATE TABLE "largest_employers" ( "rank_2012" real, "rank_2010" real, "employer" text, "industry" text, "2012_employees_total" real, "2010_employees_total" real, "2007_employees_total" text, "head_office" text );
SELECT COUNT("2012_employees_total") FROM "largest_employers" WHERE "2007_employees_total"='8,985' AND "rank_2010"<9;
2-1841-1
What is the lowest 2010 Employees (Total) when the 2007 Employees (Total) is see note, and the 2012 Employees (Total) is larger than 99,400?
CREATE TABLE "largest_employers" ( "rank_2012" real, "rank_2010" real, "employer" text, "industry" text, "2012_employees_total" real, "2010_employees_total" real, "2007_employees_total" text, "head_office" text );
SELECT MIN("2010_employees_total") FROM "largest_employers" WHERE "2007_employees_total"='see note' AND "2012_employees_total">'99,400';
2-1841-1
What shows for 2010 Employees (Total) when the employer is University of Alberta?
CREATE TABLE "largest_employers" ( "rank_2012" real, "rank_2010" real, "employer" text, "industry" text, "2012_employees_total" real, "2010_employees_total" real, "2007_employees_total" text, "head_office" text );
SELECT SUM("2010_employees_total") FROM "largest_employers" WHERE "employer"='university of alberta';
2-1841-1
How many floors when the rank is 73.0 72=?
CREATE TABLE "tallest_buildings" ( "rank" text, "name" text, "height_ft_m" text, "floors" real, "year" real );
SELECT "floors" FROM "tallest_buildings" WHERE "rank"='73.0 72=';
2-1888019-1
What year was the 190 South Lasalle Street?
CREATE TABLE "tallest_buildings" ( "rank" text, "name" text, "height_ft_m" text, "floors" real, "year" real );
SELECT MAX("year") FROM "tallest_buildings" WHERE "name"='190 south lasalle street';
2-1888019-1
What rank has a Time of 4:00.191?
CREATE TABLE "heat_2" ( "rank" real, "athletes" text, "country" text, "time" text, "notes" text );
SELECT "rank" FROM "heat_2" WHERE "time"='4:00.191';
2-18646220-4
What is the time for Brazil?
CREATE TABLE "heat_2" ( "rank" real, "athletes" text, "country" text, "time" text, "notes" text );
SELECT "time" FROM "heat_2" WHERE "country"='brazil';
2-18646220-4
what is the date when the format is cd (limited edition steel-box) from united kingdom?
CREATE TABLE "release_history" ( "country" text, "date" text, "label" text, "format" text, "catalogue_no" text );
SELECT "date" FROM "release_history" WHERE "format"='cd (limited edition steel-box)' AND "country"='united kingdom';
2-18424778-6
What is the country that has the format of cd, the label of sony music and the catalogue no sicp-2055?
CREATE TABLE "release_history" ( "country" text, "date" text, "label" text, "format" text, "catalogue_no" text );
SELECT "country" FROM "release_history" WHERE "format"='cd' AND "label"='sony music' AND "catalogue_no"='sicp-2055';
2-18424778-6
what is the format for the country united kingdom on 20 october 2008?
CREATE TABLE "release_history" ( "country" text, "date" text, "label" text, "format" text, "catalogue_no" text );
SELECT "format" FROM "release_history" WHERE "country"='united kingdom' AND "date"='20 october 2008';
2-18424778-6
what is the catalogue no when the format is cd (limited edition steel-box) and the country is germany?
CREATE TABLE "release_history" ( "country" text, "date" text, "label" text, "format" text, "catalogue_no" text );
SELECT "catalogue_no" FROM "release_history" WHERE "format"='cd (limited edition steel-box)' AND "country"='germany';
2-18424778-6
Which Total has a Rank of 4, and a Silver larger than 2?
CREATE TABLE "medals_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MIN("total") FROM "medals_table" WHERE "rank"='4' AND "silver">2;
2-18607938-4
How much Total has a Rank of 5, and a Bronze larger than 3?
CREATE TABLE "medals_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT SUM("total") FROM "medals_table" WHERE "rank"='5' AND "bronze">3;
2-18607938-4
Which Silver has a Nation of total, and a Bronze smaller than 18?
CREATE TABLE "medals_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MAX("silver") FROM "medals_table" WHERE "nation"='total' AND "bronze"<18;
2-18607938-4
How much Silver has a Nation of total, and a Total smaller than 54?
CREATE TABLE "medals_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT COUNT("silver") FROM "medals_table" WHERE "nation"='total' AND "total"<54;
2-18607938-4
What was the result for the award for best current affairs presenter?
CREATE TABLE "awards_achievements" ( "year" real, "organisation" text, "award" text, "nominated_work_title" text, "result" text );
SELECT "result" FROM "awards_achievements" WHERE "award"='best current affairs presenter';
2-18498470-1
Which award was given to Lianhe Zaobao?
CREATE TABLE "awards_achievements" ( "year" real, "organisation" text, "award" text, "nominated_work_title" text, "result" text );
SELECT "award" FROM "awards_achievements" WHERE "organisation"='lianhe zaobao';
2-18498470-1
What's the release date of Feather Finger with an MM Series?
CREATE TABLE "1966" ( "title" text, "series" text, "director" text, "release_date" text, "characters" text );
SELECT "release_date" FROM "1966" WHERE "series"='mm' AND "title"='feather finger';
2-18792950-7
Which Opponent has a Venue of h, and a Result of 0–1, and a Date of 29 august 1998?
CREATE TABLE "fa_premier_league" ( "date" text, "opponent" text, "venue" text, "result" text, "attendance" real );
SELECT "opponent" FROM "fa_premier_league" WHERE "venue"='h' AND "result"='0–1' AND "date"='29 august 1998';
2-18720148-2
Which Opponent has a Result of 1–1, and a Date of 28 november 1998?
CREATE TABLE "fa_premier_league" ( "date" text, "opponent" text, "venue" text, "result" text, "attendance" real );
SELECT "opponent" FROM "fa_premier_league" WHERE "result"='1–1' AND "date"='28 november 1998';
2-18720148-2
What was the venue on 14 november 1998?
CREATE TABLE "fa_premier_league" ( "date" text, "opponent" text, "venue" text, "result" text, "attendance" real );
SELECT "venue" FROM "fa_premier_league" WHERE "date"='14 november 1998';
2-18720148-2
Which Place is the highest one that has a Draw larger than 1, and 49 Points?
CREATE TABLE "festival_da_can_o_1996" ( "draw" real, "singer" text, "song" text, "points" real, "place" real );
SELECT MAX("place") FROM "festival_da_can_o_1996" WHERE "draw">1 AND "points"=49;
2-18994360-1
Which Song has Points smaller than 54, and a Draw smaller than 4, and a Place smaller than 10?
CREATE TABLE "festival_da_can_o_1996" ( "draw" real, "singer" text, "song" text, "points" real, "place" real );
SELECT "song" FROM "festival_da_can_o_1996" WHERE "points"<54 AND "draw"<4 AND "place"<10;
2-18994360-1
What is the bronze number when the total is 54/
CREATE TABLE "world_championships_total_medals" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT AVG("bronze") FROM "world_championships_total_medals" WHERE "total"=54;
2-18938222-5
What is the least bronze number when the silver is less than 0?
CREATE TABLE "world_championships_total_medals" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MIN("bronze") FROM "world_championships_total_medals" WHERE "silver"<0;
2-18938222-5
What is the least silver when the total is more than 2, bronze is 3, gold is more than 0, and rank is 1?
CREATE TABLE "world_championships_total_medals" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MIN("silver") FROM "world_championships_total_medals" WHERE "total">2 AND "bronze"=3 AND "gold">0 AND "rank"='1';
2-18938222-5
What is the number of silver when the total is more than 2, and bronze is less than 3, with a rank of 7?
CREATE TABLE "world_championships_total_medals" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT COUNT("silver") FROM "world_championships_total_medals" WHERE "total">2 AND "bronze"<3 AND "rank"='7';
2-18938222-5
Which Time has a Lane smaller than 4, and a Rank larger than 6?
CREATE TABLE "semifinal_2" ( "rank" real, "lane" real, "name" text, "nationality" text, "time" real );
SELECT AVG("time") FROM "semifinal_2" WHERE "lane"<4 AND "rank">6;
2-18579618-5
Which Rank has a Nationality of france, and a Name of alain bernard, and a Lane smaller than 6?
CREATE TABLE "semifinal_2" ( "rank" real, "lane" real, "name" text, "nationality" text, "time" real );
SELECT AVG("rank") FROM "semifinal_2" WHERE "nationality"='france' AND "name"='alain bernard' AND "lane"<6;
2-18579618-5
Which Nationality has a Rank larger than 1, and a Time smaller than 22.12, and a Lane smaller than 4, and a Name of ashley callus?
CREATE TABLE "semifinal_2" ( "rank" real, "lane" real, "name" text, "nationality" text, "time" real );
SELECT "nationality" FROM "semifinal_2" WHERE "rank">1 AND "time"<22.12 AND "lane"<4 AND "name"='ashley callus';
2-18579618-5
When the date is 8 october 2008 what is the sum of attendance?
CREATE TABLE "attendance_at_home_games" ( "round" text, "date" text, "against" text, "score_aufc_away" text, "attendance" real, "weekday" text );
SELECT SUM("attendance") FROM "attendance_at_home_games" WHERE "date"='8 october 2008';
2-18484319-17
What date has an against of pohang steelers?
CREATE TABLE "attendance_at_home_games" ( "round" text, "date" text, "against" text, "score_aufc_away" text, "attendance" real, "weekday" text );
SELECT "date" FROM "attendance_at_home_games" WHERE "against"='pohang steelers';
2-18484319-17
What weekday has an against of kashima antlers?
CREATE TABLE "attendance_at_home_games" ( "round" text, "date" text, "against" text, "score_aufc_away" text, "attendance" real, "weekday" text );
SELECT "weekday" FROM "attendance_at_home_games" WHERE "against"='kashima antlers';
2-18484319-17
What was the final score of Game #4?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "record" text );
SELECT "score" FROM "game_log" WHERE "game"=4;
2-18394824-3
Which Level has a Leading scorer 1 of tom greaves 8?
CREATE TABLE "league_and_cup_history" ( "season" text, "league_contested" text, "level" real, "league_position" text, "avg_home_attendance_1" text, "fa_cup" text, "fa_trophy" text, "leading_scorer_1" text );
SELECT "level" FROM "league_and_cup_history" WHERE "leading_scorer_1"='tom greaves 8';
2-1895942-1
Which Leading scorer 1 has a Season of 2010–11?
CREATE TABLE "league_and_cup_history" ( "season" text, "league_contested" text, "level" real, "league_position" text, "avg_home_attendance_1" text, "fa_cup" text, "fa_trophy" text, "leading_scorer_1" text );
SELECT "leading_scorer_1" FROM "league_and_cup_history" WHERE "season"='2010–11';
2-1895942-1
Which Leading scorer 1 has a League Contested of northern premier league premier division, and an FA Cup of 2q?
CREATE TABLE "league_and_cup_history" ( "season" text, "league_contested" text, "level" real, "league_position" text, "avg_home_attendance_1" text, "fa_cup" text, "fa_trophy" text, "leading_scorer_1" text );
SELECT "leading_scorer_1" FROM "league_and_cup_history" WHERE "league_contested"='northern premier league premier division' AND "fa_cup"='2q';
2-1895942-1
Which Level has a League Contested of northern premier league premier division, and a Season of 2011–12?
CREATE TABLE "league_and_cup_history" ( "season" text, "league_contested" text, "level" real, "league_position" text, "avg_home_attendance_1" text, "fa_cup" text, "fa_trophy" text, "leading_scorer_1" text );
SELECT AVG("level") FROM "league_and_cup_history" WHERE "league_contested"='northern premier league premier division' AND "season"='2011–12';
2-1895942-1
What is the least Top-5 when 1 is the cuts made?
CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real, "events" real, "cuts_made" real );
SELECT MIN("top_5") FROM "summary" WHERE "cuts_made"=1;
2-18512893-3
With events less than 0, what is the fewest Top-5?
CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real, "events" real, "cuts_made" real );
SELECT MIN("top_5") FROM "summary" WHERE "events"<0;
2-18512893-3
How many wins of average has cuts made less than 0?
CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real, "events" real, "cuts_made" real );
SELECT AVG("wins") FROM "summary" WHERE "cuts_made"<0;
2-18512893-3
How many events total is the Top-5 2, and 4 is the cuts made, and less than 0 wins?
CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real, "events" real, "cuts_made" real );
SELECT COUNT("events") FROM "summary" WHERE "top_5"=2 AND "cuts_made"=4 AND "wins"<0;
2-18512893-3
In the Open Championship with more than 3 cuts made, what is the average wins?
CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real, "events" real, "cuts_made" real );
SELECT AVG("wins") FROM "summary" WHERE "tournament"='the open championship' AND "cuts_made">3;
2-18512893-3
What lane did the barbados swimmer compete in before heat 3?
CREATE TABLE "heats" ( "rank" real, "heat" real, "lane" real, "name" text, "nationality" text, "time" text );
SELECT "lane" FROM "heats" WHERE "heat"<3 AND "nationality"='barbados';
2-18624901-3
What was the time of the 5th ranked swimmer who swam after heat 3 and was in a lane under 5?
CREATE TABLE "heats" ( "rank" real, "heat" real, "lane" real, "name" text, "nationality" text, "time" text );
SELECT "time" FROM "heats" WHERE "heat">3 AND "lane"<5 AND "rank"=5;
2-18624901-3
What is the average population for an area less than 433.7km and a 23013 code?
CREATE TABLE "main_places" ( "place" text, "code" real, "area_km_2" real, "population" real, "most_spoken_language" text );
SELECT AVG("population") FROM "main_places" WHERE "area_km_2"<433.7 AND "code"=23013;
2-18409245-1
What is the total code number for Amadiba?
CREATE TABLE "main_places" ( "place" text, "code" real, "area_km_2" real, "population" real, "most_spoken_language" text );
SELECT COUNT("code") FROM "main_places" WHERE "place"='amadiba';
2-18409245-1
What is the total capacity for the Leicester Tigers?
CREATE TABLE "rugby_union" ( "club" text, "league" text, "city_town" text, "stadium" text, "capacity" real );
SELECT COUNT("capacity") FROM "rugby_union" WHERE "club"='leicester tigers';
2-184077-2
What town has the Welford Road Stadium?
CREATE TABLE "rugby_union" ( "club" text, "league" text, "city_town" text, "stadium" text, "capacity" real );
SELECT "city_town" FROM "rugby_union" WHERE "stadium"='welford road';
2-184077-2
What date was the Cross Code Debut of rl 1st test great britain v australia, and the Int'l Debut was RU Five Nations v Ireland?
CREATE TABLE "scotland" ( "player" text, "int_l_debut" text, "year" real, "cross_code_debut" text, "date" text, "position" text );
SELECT "date" FROM "scotland" WHERE "cross_code_debut"='rl 1st test great britain v australia' AND "int_l_debut"='ru five nations v ireland';
2-18860278-11
What year was the player David Rose?
CREATE TABLE "scotland" ( "player" text, "int_l_debut" text, "year" real, "cross_code_debut" text, "date" text, "position" text );
SELECT SUM("year") FROM "scotland" WHERE "player"='david rose';
2-18860278-11
What is the median family income when the per capita is $24,114?
CREATE TABLE "tennessee_counties_ranked_by_per_capita_" ( "county" text, "per_capita_income" text, "median_household_income" text, "median_family_income" text, "population" real, "number_of_households" real );
SELECT "median_family_income" FROM "tennessee_counties_ranked_by_per_capita_" WHERE "per_capita_income"='$24,114';
2-1840537-1
What is the median household income when the per capita is $21,585?
CREATE TABLE "tennessee_counties_ranked_by_per_capita_" ( "county" text, "per_capita_income" text, "median_household_income" text, "median_family_income" text, "population" real, "number_of_households" real );
SELECT "median_household_income" FROM "tennessee_counties_ranked_by_per_capita_" WHERE "per_capita_income"='$21,585';
2-1840537-1
What is the population where the median family income is $48,446 and there are more than 35,343 households?
CREATE TABLE "tennessee_counties_ranked_by_per_capita_" ( "county" text, "per_capita_income" text, "median_household_income" text, "median_family_income" text, "population" real, "number_of_households" real );
SELECT AVG("population") FROM "tennessee_counties_ranked_by_per_capita_" WHERE "median_family_income"='$48,446' AND "number_of_households">'35,343';
2-1840537-1
What is the population where the median household income is $87,832 and there are fewer than 64,886 households?
CREATE TABLE "tennessee_counties_ranked_by_per_capita_" ( "county" text, "per_capita_income" text, "median_household_income" text, "median_family_income" text, "population" real, "number_of_households" real );
SELECT AVG("population") FROM "tennessee_counties_ranked_by_per_capita_" WHERE "median_household_income"='$87,832' AND "number_of_households"<'64,886';
2-1840537-1
What is the score 1 for the major league soccer all-star game?
CREATE TABLE "stats" ( "match" real, "date" text, "competition_or_tour" text, "ground" text, "opponent" text, "score1" text, "scorers" text );
SELECT "score1" FROM "stats" WHERE "competition_or_tour"='major league soccer all-star game';
2-18539546-24
What is the score 1 with a h ground?
CREATE TABLE "stats" ( "match" real, "date" text, "competition_or_tour" text, "ground" text, "opponent" text, "score1" text, "scorers" text );
SELECT "score1" FROM "stats" WHERE "ground"='h';
2-18539546-24
Who are the scorers on 1 August 2008, where the ground was A?
CREATE TABLE "stats" ( "match" real, "date" text, "competition_or_tour" text, "ground" text, "opponent" text, "score1" text, "scorers" text );
SELECT "scorers" FROM "stats" WHERE "ground"='a' AND "date"='1 august 2008';
2-18539546-24
What ground had Portsmouth reserves as an opponent?
CREATE TABLE "stats" ( "match" real, "date" text, "competition_or_tour" text, "ground" text, "opponent" text, "score1" text );
SELECT "ground" FROM "stats" WHERE "opponent"='portsmouth reserves';
2-18539546-18
What ground had a match smaller than 6 and Chelsea Reserves as the opponent?
CREATE TABLE "stats" ( "match" real, "date" text, "competition_or_tour" text, "ground" text, "opponent" text, "score1" text );
SELECT "ground" FROM "stats" WHERE "match"<6 AND "opponent"='chelsea reserves';
2-18539546-18
Which Team has Losses larger than 5, and a Position of 12?
CREATE TABLE "torneo_clausura" ( "position" real, "team" text, "played" real, "wins" real, "draws_p_k_wins_p_k_losses" text, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT "team" FROM "torneo_clausura" WHERE "losses">5 AND "position"=12;
2-18703133-6
How many Points have a Position larger than 4, and Losses larger than 5, and a Conceded of 15, and a Scored larger than 11?
CREATE TABLE "torneo_clausura" ( "position" real, "team" text, "played" real, "wins" real, "draws_p_k_wins_p_k_losses" text, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT COUNT("points") FROM "torneo_clausura" WHERE "position">4 AND "losses">5 AND "conceded"=15 AND "scored">11;
2-18703133-6
How many positions have Played smaller than 12?
CREATE TABLE "torneo_clausura" ( "position" real, "team" text, "played" real, "wins" real, "draws_p_k_wins_p_k_losses" text, "losses" real, "scored" real, "conceded" real, "points" real );
SELECT SUM("position") FROM "torneo_clausura" WHERE "played"<12;
2-18703133-6
Who was the Prato Elector with a faction of Italian?
CREATE TABLE "cardinal_electors" ( "elector" text, "nationality" text, "faction" text, "elevated" text, "elevator" text );
SELECT "elector" FROM "cardinal_electors" WHERE "faction"='italian' AND "nationality"='prato';
2-18777366-1
What's the elevator of Jacques D'euse?
CREATE TABLE "cardinal_electors" ( "elector" text, "nationality" text, "faction" text, "elevated" text, "elevator" text );
SELECT "elevator" FROM "cardinal_electors" WHERE "elector"='jacques d''euse';
2-18777366-1
What's the nationality for Nicholas III?
CREATE TABLE "cardinal_electors" ( "elector" text, "nationality" text, "faction" text, "elevated" text, "elevator" text );
SELECT "nationality" FROM "cardinal_electors" WHERE "elevator"='nicholas iii';
2-18777366-1
What is the fewest mintage from Dora de Pédery-Hunt, and the year was before 2002?
CREATE TABLE "specimen_set_editions" ( "year" real, "theme" text, "artist" text, "mintage" real, "issue_price" text );
SELECT MIN("mintage") FROM "specimen_set_editions" WHERE "artist"='dora de pédery-hunt' AND "year"<2002;
2-18400-2
What is the most mintage with common eider as the theme, and the year less than 2008?
CREATE TABLE "specimen_set_editions" ( "year" real, "theme" text, "artist" text, "mintage" real, "issue_price" text );
SELECT MAX("mintage") FROM "specimen_set_editions" WHERE "theme"='common eider' AND "year"<2008;
2-18400-2
What is the earliest year when the 25th Anniversary Loonie was the theme, and the mintage was less than 35,000?
CREATE TABLE "specimen_set_editions" ( "year" real, "theme" text, "artist" text, "mintage" real, "issue_price" text );
SELECT MIN("year") FROM "specimen_set_editions" WHERE "theme"='25th anniversary loonie' AND "mintage"<'35,000';
2-18400-2
Who was the artist that had $49.95 as the issue price for the 2010 year?
CREATE TABLE "specimen_set_editions" ( "year" real, "theme" text, "artist" text, "mintage" real, "issue_price" text );
SELECT "artist" FROM "specimen_set_editions" WHERE "issue_price"='$49.95' AND "year"=2010;
2-18400-2
What is the score for the southern home team?
CREATE TABLE "first_round" ( "time" text, "home_team" text, "score" text, "away_team" text, "venue" text );
SELECT "score" FROM "first_round" WHERE "home_team"='southern';
2-18880018-6
What time is it for the southern home team?
CREATE TABLE "first_round" ( "time" text, "home_team" text, "score" text, "away_team" text, "venue" text );
SELECT "time" FROM "first_round" WHERE "home_team"='southern';
2-18880018-6
What is the Result of the game on November 24, 1946?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "score" text, "record" text );
SELECT "result" FROM "schedule" WHERE "date"='november 24, 1946';
2-18532493-1
What is the Week number on September 6, 1946?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "score" text, "record" text );
SELECT SUM("week") FROM "schedule" WHERE "date"='september 6, 1946';
2-18532493-1
What is the Date of the game with a Record of 5-3?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "score" text, "record" text );
SELECT "date" FROM "schedule" WHERE "record"='5-3';
2-18532493-1
What was the lowest ranking rower from Great Britain?
CREATE TABLE "heat_2" ( "rank" real, "rowers" text, "country" text, "time" text, "notes" text );
SELECT MIN("rank") FROM "heat_2" WHERE "country"='great britain';
2-18662686-3
What are the notes for the rower in ranks over 2 and having a time of 7:00:46?
CREATE TABLE "heat_2" ( "rank" real, "rowers" text, "country" text, "time" text, "notes" text );
SELECT "notes" FROM "heat_2" WHERE "rank">2 AND "time"='7:00:46';
2-18662686-3
Which Programming has a Video of audio only?
CREATE TABLE "digital_channels" ( "channel" real, "video" text, "aspect" text, "psip_short_name" text, "programming" text );
SELECT "programming" FROM "digital_channels" WHERE "video"='audio only';
2-1882602-1
Which Video has a Channel of 25.3?
CREATE TABLE "digital_channels" ( "channel" real, "video" text, "aspect" text, "psip_short_name" text, "programming" text );
SELECT "video" FROM "digital_channels" WHERE "channel"=25.3;
2-1882602-1
Which Video has an Aspect of 16:9?
CREATE TABLE "digital_channels" ( "channel" real, "video" text, "aspect" text, "psip_short_name" text, "programming" text );
SELECT "video" FROM "digital_channels" WHERE "aspect"='16:9';
2-1882602-1
What is the Original Air date of the episode "Touch and Go"?
CREATE TABLE "episodes" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "original_air_date" FROM "episodes" WHERE "title"='\"touch and go\"';
2-18427249-1
On which date did Michael Signer earn 4%?
CREATE TABLE "democratic_primary" ( "source" text, "date" text, "jody_wagner" text, "pat_edmonson" text, "michael_signer" text, "rich_savage" text, "jon_bowerbank" text, "undecided" text );
SELECT "date" FROM "democratic_primary" WHERE "michael_signer"='4%';
2-18898951-1
Which polling source gave Michael Signer 5%?
CREATE TABLE "democratic_primary" ( "source" text, "date" text, "jody_wagner" text, "pat_edmonson" text, "michael_signer" text, "rich_savage" text, "jon_bowerbank" text, "undecided" text );
SELECT "source" FROM "democratic_primary" WHERE "michael_signer"='5%';
2-18898951-1
Which date had the undecided percentage at 42%?
CREATE TABLE "democratic_primary" ( "source" text, "date" text, "jody_wagner" text, "pat_edmonson" text, "michael_signer" text, "rich_savage" text, "jon_bowerbank" text, "undecided" text );
SELECT "date" FROM "democratic_primary" WHERE "undecided"='42%';
2-18898951-1
What is the Rich Savage percentage in the poll with Jody Wagner at 30%?
CREATE TABLE "democratic_primary" ( "source" text, "date" text, "jody_wagner" text, "pat_edmonson" text, "michael_signer" text, "rich_savage" text, "jon_bowerbank" text, "undecided" text );
SELECT "rich_savage" FROM "democratic_primary" WHERE "jody_wagner"='30%';
2-18898951-1
What is the Rich Savage percentage in the poll that had undecideds at 68%?
CREATE TABLE "democratic_primary" ( "source" text, "date" text, "jody_wagner" text, "pat_edmonson" text, "michael_signer" text, "rich_savage" text, "jon_bowerbank" text, "undecided" text );
SELECT "rich_savage" FROM "democratic_primary" WHERE "undecided"='68%';
2-18898951-1
Who was the opponent when the record was 31-24?
CREATE TABLE "game_log" ( "game" text, "date" text, "opponent" text, "score" text, "location_attendance" text, "record" text );
SELECT "opponent" FROM "game_log" WHERE "record"='31-24';
2-18493036-7
What was the score of Game 48?
CREATE TABLE "game_log" ( "game" text, "date" text, "opponent" text, "score" text, "location_attendance" text, "record" text );
SELECT "score" FROM "game_log" WHERE "game"='48';
2-18493036-7
Who was the opponent at the game at Madison Square Garden?
CREATE TABLE "game_log" ( "game" text, "date" text, "opponent" text, "score" text, "location_attendance" text, "record" text );
SELECT "opponent" FROM "game_log" WHERE "location_attendance"='madison square garden';
2-18493036-7
What was the score of the game at Great Western Forum?
CREATE TABLE "game_log" ( "game" text, "date" text, "opponent" text, "score" text, "location_attendance" text, "record" text );
SELECT "score" FROM "game_log" WHERE "location_attendance"='great western forum';
2-18493036-7
Which Romaji Title has a Japanese Title of 花より男子2(リターンズ)?
CREATE TABLE "2007_winter_season" ( "japanese_title" text, "romaji_title" text, "tv_station" text, "episodes" real, "average_ratings" text );
SELECT "romaji_title" FROM "2007_winter_season" WHERE "japanese_title"='花より男子2(リターンズ)';
2-18539861-1
Which Romaji Title has a TV Station of fuji tv, and Average Ratings of 12.41%?
CREATE TABLE "2007_winter_season" ( "japanese_title" text, "romaji_title" text, "tv_station" text, "episodes" real, "average_ratings" text );
SELECT "romaji_title" FROM "2007_winter_season" WHERE "tv_station"='fuji tv' AND "average_ratings"='12.41%';
2-18539861-1
Which Japanese Title has more than 9 Episodes, and a Romaji Title of haikei, chichiue-sama?
CREATE TABLE "2007_winter_season" ( "japanese_title" text, "romaji_title" text, "tv_station" text, "episodes" real, "average_ratings" text );
SELECT "japanese_title" FROM "2007_winter_season" WHERE "episodes">9 AND "romaji_title"='haikei, chichiue-sama';
2-18539861-1
Which Romaji Title has 11 Episodes, and a TV Station of fuji tv, and Average Ratings of 14.9%?
CREATE TABLE "2007_winter_season" ( "japanese_title" text, "romaji_title" text, "tv_station" text, "episodes" real, "average_ratings" text );
SELECT "romaji_title" FROM "2007_winter_season" WHERE "episodes"=11 AND "tv_station"='fuji tv' AND "average_ratings"='14.9%';
2-18539861-1
What was the result of nomination for Season 6 after 1995?
CREATE TABLE "artios_awards" ( "year" real, "category" text, "nominee_s" text, "episode" text, "result" text );
SELECT "result" FROM "artios_awards" WHERE "year">1995 AND "episode"='season 6';
2-18540176-5
What was the category of the award that John Frank Levey was nominated for after 1995?
CREATE TABLE "artios_awards" ( "year" real, "category" text, "nominee_s" text, "episode" text, "result" text );
SELECT "category" FROM "artios_awards" WHERE "nominee_s"='john frank levey' AND "year">1995;
2-18540176-5
What is the English Translation for the French song by the Artist Rachel?
CREATE TABLE "results" ( "draw" real, "language" text, "artist" text, "song" text, "english_translation" text, "place" real, "points" real );
SELECT "english_translation" FROM "results" WHERE "language"='french' AND "artist"='rachel';
2-184803-1
What is the Song by Artist Robert Cogoi?
CREATE TABLE "results" ( "draw" real, "language" text, "artist" text, "song" text, "english_translation" text, "place" real, "points" real );
SELECT "song" FROM "results" WHERE "artist"='robert cogoi';
2-184803-1