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 season year where the rank is 39?
|
CREATE TABLE "u_s_broadcast_and_ratings" (
"season" real,
"timeslot_et" text,
"season_premiere" text,
"season_finale" text,
"tv_season" text,
"rank" text,
"viewers_millions" text
);
|
SELECT "tv_season" FROM "u_s_broadcast_and_ratings" WHERE "rank"='39';
|
1-10120207-8
|
What is the number of season premieres were 10.17 people watched?
|
CREATE TABLE "u_s_broadcast_and_ratings" (
"season" real,
"timeslot_et" text,
"season_premiere" text,
"season_finale" text,
"tv_season" text,
"rank" text,
"viewers_millions" text
);
|
SELECT COUNT("season_premiere") FROM "u_s_broadcast_and_ratings" WHERE "viewers_millions"='10.17';
|
1-10120207-8
|
What is the year of the season that was 12?
|
CREATE TABLE "u_s_broadcast_and_ratings" (
"season" real,
"timeslot_et" text,
"season_premiere" text,
"season_finale" text,
"tv_season" text,
"rank" text,
"viewers_millions" text
);
|
SELECT "tv_season" FROM "u_s_broadcast_and_ratings" WHERE "season"=12;
|
1-10120207-8
|
In 2012 what was the average finish?
|
CREATE TABLE "nascar_sprint_cup_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
);
|
SELECT "avg_finish" FROM "nascar_sprint_cup_series" WHERE "year"=2012;
|
1-1012730-1
|
How many wins happened in 1983?
|
CREATE TABLE "nascar_sprint_cup_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
);
|
SELECT MIN("wins") FROM "nascar_sprint_cup_series" WHERE "year"=1983;
|
1-1012730-1
|
How many top tens had an average start of 29.4?
|
CREATE TABLE "nascar_sprint_cup_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
);
|
SELECT COUNT("top_10") FROM "nascar_sprint_cup_series" WHERE "avg_start"='29.4';
|
1-1012730-1
|
How many poles had an average finish of 19.1?
|
CREATE TABLE "nascar_sprint_cup_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
);
|
SELECT MAX("poles") FROM "nascar_sprint_cup_series" WHERE "avg_finish"='19.1';
|
1-1012730-1
|
How many starts did Hendrick motorsports have?
|
CREATE TABLE "nascar_sprint_cup_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
);
|
SELECT MIN("starts") FROM "nascar_sprint_cup_series" WHERE "team_s"='Hendrick Motorsports';
|
1-1012730-1
|
NHL players are all centre in Florida panthers.
|
CREATE TABLE "round_ten" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "player" FROM "round_ten" WHERE "position"='Centre' AND "nhl_team"='Florida Panthers';
|
1-1013129-10
|
NHL team player San Jose Sharks is United States nationally.
|
CREATE TABLE "round_ten" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "player" FROM "round_ten" WHERE "nhl_team"='San Jose Sharks' AND "nationality"='United States';
|
1-1013129-10
|
All players are position mark polak.
|
CREATE TABLE "round_ten" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "position" FROM "round_ten" WHERE "player"='Mark Polak';
|
1-1013129-10
|
Position in nhl team centre are all smaller pick than 243.0
|
CREATE TABLE "round_ten" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "nhl_team" FROM "round_ten" WHERE "position"='Centre' AND "pick"<243.0;
|
1-1013129-10
|
What college/junior/club teams do the players from the St. Louis Blues come from?
|
CREATE TABLE "round_eleven" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "college_junior_club_team" FROM "round_eleven" WHERE "nhl_team"='St. Louis Blues';
|
1-1013129-11
|
What teams do the players from TPS (Finland) play for?
|
CREATE TABLE "round_eleven" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "nhl_team" FROM "round_eleven" WHERE "college_junior_club_team"='TPS (Finland)';
|
1-1013129-11
|
What high school team did Doug Nolan play for?
|
CREATE TABLE "round_eleven" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "college_junior_club_team" FROM "round_eleven" WHERE "player"='Doug Nolan';
|
1-1013129-11
|
What club team is Per Gustafsson play for?
|
CREATE TABLE "round_eleven" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "college_junior_club_team" FROM "round_eleven" WHERE "player"='Per Gustafsson';
|
1-1013129-11
|
What is the nationality of Shayne Wright?
|
CREATE TABLE "round_eleven" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "nationality" FROM "round_eleven" WHERE "player"='Shayne Wright';
|
1-1013129-11
|
How many votes did Southern England cast whilst Northern Ireland cast 3?
|
CREATE TABLE "voting" (
"song" text,
"mobiles" real,
"northern_ireland" real,
"northern_england" real,
"scotland" real,
"southern_england" real,
"wales" real,
"total" real
);
|
SELECT "southern_england" FROM "voting" WHERE "northern_ireland"=3;
|
1-10128185-2
|
What was the lowest number of votes Scotland cast?
|
CREATE TABLE "voting" (
"song" text,
"mobiles" real,
"northern_ireland" real,
"northern_england" real,
"scotland" real,
"southern_england" real,
"wales" real,
"total" real
);
|
SELECT MIN("scotland") FROM "voting";
|
1-10128185-2
|
What is the total number of votes if Scotland cast 35?
|
CREATE TABLE "voting" (
"song" text,
"mobiles" real,
"northern_ireland" real,
"northern_england" real,
"scotland" real,
"southern_england" real,
"wales" real,
"total" real
);
|
SELECT COUNT("scotland") FROM "voting" WHERE "total"=35;
|
1-10128185-2
|
How many votes did Northern Ireland cast if the total was 35?
|
CREATE TABLE "voting" (
"song" text,
"mobiles" real,
"northern_ireland" real,
"northern_england" real,
"scotland" real,
"southern_england" real,
"wales" real,
"total" real
);
|
SELECT "northern_ireland" FROM "voting" WHERE "total"=35;
|
1-10128185-2
|
How many votes did Wales cast when Northern England cast 6?
|
CREATE TABLE "voting" (
"song" text,
"mobiles" real,
"northern_ireland" real,
"northern_england" real,
"scotland" real,
"southern_england" real,
"wales" real,
"total" real
);
|
SELECT MIN("wales") FROM "voting" WHERE "northern_england"=6;
|
1-10128185-2
|
What teams had 9 in the top 5 and 1 wins?
|
CREATE TABLE "nascar_nationwide_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
);
|
SELECT "team_s" FROM "nascar_nationwide_series" WHERE "top_5"=9 AND "wins"=1;
|
1-1012730-2
|
What teams did the player vadim sharifijanov play for?
|
CREATE TABLE "round_one" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "college_junior_club_team" FROM "round_one" WHERE "player"='Vadim Sharifijanov';
|
1-1013129-1
|
What positions do the hartford whalers nhl team have?
|
CREATE TABLE "round_one" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "position" FROM "round_one" WHERE "nhl_team"='Hartford Whalers';
|
1-1013129-1
|
What is the smallest pick for the player, brett lindros?
|
CREATE TABLE "round_one" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT MIN("pick") FROM "round_one" WHERE "player"='Brett Lindros';
|
1-1013129-1
|
What positions does the college/junior/club team, molot perm (russia) have?
|
CREATE TABLE "round_one" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "position" FROM "round_one" WHERE "college_junior_club_team"='Molot Perm (Russia)';
|
1-1013129-1
|
The nhl team new york islanders is what nationality?
|
CREATE TABLE "round_one" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "nationality" FROM "round_one" WHERE "nhl_team"='New York Islanders';
|
1-1013129-1
|
What is the name of the vacator for district Louisiana 1st?
|
CREATE TABLE "table1_1013168_3" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
);
|
SELECT "vacator" FROM "table1_1013168_3" WHERE "district"='Louisiana 1st';
|
1-1013168-3
|
What is the notion when the crystal structure is tetragonal and the formula is bi 2 sr 2 cacu 2 o 8
|
CREATE TABLE "critical_temperature_t_c_crystal_structu" (
"formula" text,
"notation" text,
"t_c_k" real,
"no_of_cu_o_planes_in_unit_cell" real,
"crystal_structure" text
);
|
SELECT "notation" FROM "critical_temperature_t_c_crystal_structu" WHERE "crystal_structure"='Tetragonal' AND "formula"='Bi 2 Sr 2 CaCu 2 O 8';
|
1-101336-1
|
How many times is the formula tl 2 ba 2 cuo 6?
|
CREATE TABLE "critical_temperature_t_c_crystal_structu" (
"formula" text,
"notation" text,
"t_c_k" real,
"no_of_cu_o_planes_in_unit_cell" real,
"crystal_structure" text
);
|
SELECT "no_of_cu_o_planes_in_unit_cell" FROM "critical_temperature_t_c_crystal_structu" WHERE "formula"='Tl 2 Ba 2 CuO 6';
|
1-101336-1
|
What is the crystal structure for the formula yba 2 cu 3 o 7?
|
CREATE TABLE "critical_temperature_t_c_crystal_structu" (
"formula" text,
"notation" text,
"t_c_k" real,
"no_of_cu_o_planes_in_unit_cell" real,
"crystal_structure" text
);
|
SELECT "crystal_structure" FROM "critical_temperature_t_c_crystal_structu" WHERE "formula"='YBa 2 Cu 3 O 7';
|
1-101336-1
|
What is the number for t c (k) when the notation is tl-2212?
|
CREATE TABLE "critical_temperature_t_c_crystal_structu" (
"formula" text,
"notation" text,
"t_c_k" real,
"no_of_cu_o_planes_in_unit_cell" real,
"crystal_structure" text
);
|
SELECT COUNT("t_c_k") FROM "critical_temperature_t_c_crystal_structu" WHERE "notation"='Tl-2212';
|
1-101336-1
|
How many 2010 estimations have been done in the city of Cremona?
|
CREATE TABLE "references" (
"num" real,
"city" text,
"1981_census" real,
"1991_census" real,
"2001_census" real,
"2010_est" real,
"region" text
);
|
SELECT COUNT("2010_est") FROM "references" WHERE "city"='Cremona';
|
1-10138926-1
|
What's the 2001 census of the region of Abruzzo where the 1871 census is bigger than 51092.0?
|
CREATE TABLE "references" (
"num" real,
"city" text,
"1981_census" real,
"1991_census" real,
"2001_census" real,
"2010_est" real,
"region" text
);
|
SELECT MIN("2001_census") FROM "references" WHERE "region"='Abruzzo' AND "1981_census">51092.0;
|
1-10138926-1
|
What's the 1991 census of the city of Carpi?
|
CREATE TABLE "references" (
"num" real,
"city" text,
"1981_census" real,
"1991_census" real,
"2001_census" real,
"2010_est" real,
"region" text
);
|
SELECT MAX("1991_census") FROM "references" WHERE "city"='Carpi';
|
1-10138926-1
|
How many 2001 censuses are there on number 13?
|
CREATE TABLE "references" (
"num" real,
"city" text,
"1981_census" real,
"1991_census" real,
"2001_census" real,
"2010_est" real,
"region" text
);
|
SELECT COUNT("2001_census") FROM "references" WHERE "num"=13;
|
1-10138926-1
|
What's the 1981 census of Livorno?
|
CREATE TABLE "references" (
"num" real,
"city" text,
"1981_census" real,
"1991_census" real,
"2001_census" real,
"2010_est" real,
"region" text
);
|
SELECT "1981_census" FROM "references" WHERE "city"='Livorno';
|
1-10138926-1
|
Which NHL team has player Mike Loach?
|
CREATE TABLE "round_eight" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "nhl_team" FROM "round_eight" WHERE "player"='Mike Loach';
|
1-1013129-8
|
What is the NHL team that has Peter Strom?
|
CREATE TABLE "round_eight" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "nhl_team" FROM "round_eight" WHERE "player"='Peter Strom';
|
1-1013129-8
|
What team is Keith Mccambridge on?
|
CREATE TABLE "round_eight" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT "college_junior_club_team" FROM "round_eight" WHERE "player"='Keith McCambridge';
|
1-1013129-8
|
How many nationalities are the pick 193?
|
CREATE TABLE "round_eight" (
"pick" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
);
|
SELECT COUNT("nationality") FROM "round_eight" WHERE "pick"=193;
|
1-1013129-8
|
Who was the succesor that was formally installed on November 8, 1978?
|
CREATE TABLE "table1_1013168_2" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
);
|
SELECT "successor" FROM "table1_1013168_2" WHERE "date_of_successors_formal_installation"='November 8, 1978';
|
1-1013168-2
|
How many songs received a 10 from Goodman and were rated by Tonioli?
|
CREATE TABLE "table1_1014319_1" (
"week" real,
"dance_song" text,
"horwood" text,
"goodman" text,
"dixon" text,
"tonioli" text,
"total" text,
"result" text
);
|
SELECT COUNT("tonioli") FROM "table1_1014319_1" WHERE "goodman"='10';
|
1-1014319-1
|
What score did Goodman give to all songs with safe results, which received a 7 from Horwood and have a total score of 31?
|
CREATE TABLE "table1_1014319_1" (
"week" real,
"dance_song" text,
"horwood" text,
"goodman" text,
"dixon" text,
"tonioli" text,
"total" text,
"result" text
);
|
SELECT "goodman" FROM "table1_1014319_1" WHERE "total"='31' AND "horwood"='7' AND "result"='Safe';
|
1-1014319-1
|
What score did Dixon give to the song "samba / young hearts run free", which was in second place?
|
CREATE TABLE "table1_1014319_1" (
"week" real,
"dance_song" text,
"horwood" text,
"goodman" text,
"dixon" text,
"tonioli" text,
"total" text,
"result" text
);
|
SELECT "dixon" FROM "table1_1014319_1" WHERE "dance_song"='Samba / Young Hearts Run Free' AND "result"='Second place';
|
1-1014319-1
|
How many scores did Goodman give to "samba / young hearts run free", which was in second place?
|
CREATE TABLE "table1_1014319_1" (
"week" real,
"dance_song" text,
"horwood" text,
"goodman" text,
"dixon" text,
"tonioli" text,
"total" text,
"result" text
);
|
SELECT COUNT("goodman") FROM "table1_1014319_1" WHERE "result"='Second place' AND "dance_song"='Samba / Young Hearts Run Free';
|
1-1014319-1
|
What year was number 7 built?
|
CREATE TABLE "current_fleet_details" (
"class" text,
"operator" text,
"no_built" real,
"year_built" text,
"cars_per_set" real,
"unit_nos" text
);
|
SELECT "year_built" FROM "current_fleet_details" WHERE "no_built"=7;
|
1-1015421-1
|
What is we two when the case/suffix is loc.?
|
CREATE TABLE "nominal_morphology" (
"case_suffix" text,
"we_two" text,
"you_and_i" text,
"you_two" text,
"them_two_the_two" text,
"who_two" text
);
|
SELECT "we_two" FROM "nominal_morphology" WHERE "case_suffix"='loc.';
|
1-1015914-24
|
What is them two (the two) when we two is ngalbelpa?
|
CREATE TABLE "nominal_morphology" (
"case_suffix" text,
"we_two" text,
"you_and_i" text,
"you_two" text,
"them_two_the_two" text,
"who_two" text
);
|
SELECT "them_two_the_two" FROM "nominal_morphology" WHERE "we_two"='ngalbelpa';
|
1-1015914-24
|
What is them two (the two) when you and i is ngœbalngu?
|
CREATE TABLE "nominal_morphology" (
"case_suffix" text,
"we_two" text,
"you_and_i" text,
"you_two" text,
"them_two_the_two" text,
"who_two" text
);
|
SELECT "them_two_the_two" FROM "nominal_morphology" WHERE "you_and_i"='ngœbalngu';
|
1-1015914-24
|
What is who-two where you and i is ngœban?
|
CREATE TABLE "nominal_morphology" (
"case_suffix" text,
"we_two" text,
"you_and_i" text,
"you_two" text,
"them_two_the_two" text,
"who_two" text
);
|
SELECT "who_two" FROM "nominal_morphology" WHERE "you_and_i"='ngœban';
|
1-1015914-24
|
What is we two where you two is ngipen?
|
CREATE TABLE "nominal_morphology" (
"case_suffix" text,
"we_two" text,
"you_and_i" text,
"you_two" text,
"them_two_the_two" text,
"who_two" text
);
|
SELECT "we_two" FROM "nominal_morphology" WHERE "you_two"='ngipen';
|
1-1015914-24
|
What is who-two when you two is ngipelngu?
|
CREATE TABLE "nominal_morphology" (
"case_suffix" text,
"we_two" text,
"you_and_i" text,
"you_two" text,
"them_two_the_two" text,
"who_two" text
);
|
SELECT "who_two" FROM "nominal_morphology" WHERE "you_two"='ngipelngu';
|
1-1015914-24
|
what's the points with driver mark martin
|
CREATE TABLE "race_results" (
"position" real,
"driver" text,
"points" real,
"winnings" text,
"series" text
);
|
SELECT "points" FROM "race_results" WHERE "driver"='Mark Martin';
|
1-10160447-1
|
what's the points with driver rusty wallace
|
CREATE TABLE "race_results" (
"position" real,
"driver" text,
"points" real,
"winnings" text,
"series" text
);
|
SELECT "points" FROM "race_results" WHERE "driver"='Rusty Wallace';
|
1-10160447-1
|
what's the total number of position with driver robby gordon
|
CREATE TABLE "race_results" (
"position" real,
"driver" text,
"points" real,
"winnings" text,
"series" text
);
|
SELECT COUNT("position") FROM "race_results" WHERE "driver"='Robby Gordon';
|
1-10160447-1
|
what's the maximum position with winnings $50,000
|
CREATE TABLE "race_results" (
"position" real,
"driver" text,
"points" real,
"winnings" text,
"series" text
);
|
SELECT MAX("position") FROM "race_results" WHERE "winnings"='$50,000';
|
1-10160447-1
|
What actor was nominted for an award in the film Anastasiya Slutskaya?
|
CREATE TABLE "stozhary_2003_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "actors_name" FROM "stozhary_2003_prize_winners" WHERE "film_name"='Anastasiya Slutskaya';
|
1-10236830-6
|
What was the film Falling up nominated for?
|
CREATE TABLE "stozhary_2003_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "nomination" FROM "stozhary_2003_prize_winners" WHERE "film_name"='Falling Up';
|
1-10236830-6
|
What is the name of the actress that was nominated for best actress in a leading role in the film Chopin: Desire for love?
|
CREATE TABLE "stozhary_2003_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "actors_name" FROM "stozhary_2003_prize_winners" WHERE "film_name"='Chopin: Desire for Love' AND "nomination"='Best Actress in a Leading Role';
|
1-10236830-6
|
What is the name of the actress that was nominated for best actress in a leading role in the film Chopin: Desire for love?
|
CREATE TABLE "stozhary_2003_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "actors_name" FROM "stozhary_2003_prize_winners" WHERE "film_name"='Chopin: Desire for Love' AND "nomination"='Best Actress in a Leading Role';
|
1-10236830-6
|
Which films does the actor Alla Sergiyko star in?
|
CREATE TABLE "stozhary_2003_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "film_name" FROM "stozhary_2003_prize_winners" WHERE "actors_name"='Alla Sergiyko';
|
1-10236830-6
|
Which nominations was the film 27 Stolen Kisses nominated for?
|
CREATE TABLE "stozhary_2003_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "nomination" FROM "stozhary_2003_prize_winners" WHERE "film_name"='27 Stolen Kisses';
|
1-10236830-6
|
Which actor from Serbia was nominated for best actor in a supporting role?
|
CREATE TABLE "stozhary_99_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "actors_name" FROM "stozhary_99_prize_winners" WHERE "nomination"='Best Actor in a Supporting Role' AND "country"='Serbia';
|
1-10236830-4
|
Vsevolod Shilovskiy is from what country?
|
CREATE TABLE "stozhary_99_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "country" FROM "stozhary_99_prize_winners" WHERE "actors_name"='Vsevolod Shilovskiy';
|
1-10236830-4
|
Which nominations are connected to the film Totalitarian Romance?
|
CREATE TABLE "stozhary_99_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "nomination" FROM "stozhary_99_prize_winners" WHERE "film_name"='Totalitarian Romance';
|
1-10236830-4
|
Srdjan Dragojevic worked on a film which earned what nomination?
|
CREATE TABLE "stozhary_99_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "nomination" FROM "stozhary_99_prize_winners" WHERE "director"='Srdjan Dragojevic';
|
1-10236830-4
|
Which actors are from Ukraine?
|
CREATE TABLE "stozhary_99_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "actors_name" FROM "stozhary_99_prize_winners" WHERE "country"='Ukraine';
|
1-10236830-4
|
What was the film that vadim ilyenko directed?
|
CREATE TABLE "stozhary_95_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "film_name" FROM "stozhary_95_prize_winners" WHERE "director"='Vadim Ilyenko';
|
1-10236830-1
|
What was the actors name that vadim ilyenko directed?
|
CREATE TABLE "stozhary_95_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "actors_name" FROM "stozhary_95_prize_winners" WHERE "director"='Vadim Ilyenko';
|
1-10236830-1
|
What was the actors name for fuchzhou and nomination was best non-professional actor?
|
CREATE TABLE "stozhary_95_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "actors_name" FROM "stozhary_95_prize_winners" WHERE "film_name"='Fuchzhou' AND "nomination"='Best Non-Professional Actor';
|
1-10236830-1
|
What film did michaylo ilyenko make with best actor in a supporting role?
|
CREATE TABLE "stozhary_95_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "film_name" FROM "stozhary_95_prize_winners" WHERE "director"='Michaylo Ilyenko' AND "nomination"='Best Actor in a Supporting Role';
|
1-10236830-1
|
What was the actor's name for best debut?
|
CREATE TABLE "stozhary_95_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT "actors_name" FROM "stozhary_95_prize_winners" WHERE "nomination"='Best Debut';
|
1-10236830-1
|
What was the number of nominations for natalia raskokoha?
|
CREATE TABLE "stozhary_95_prize_winners" (
"nomination" text,
"actors_name" text,
"film_name" text,
"director" text,
"country" text
);
|
SELECT COUNT("nomination") FROM "stozhary_95_prize_winners" WHERE "actors_name"='Natalia Raskokoha';
|
1-10236830-1
|
What is the highest value of Total Goals?
|
CREATE TABLE "barnsley" (
"season" text,
"division" text,
"league_apps" real,
"league_goals" real,
"fa_cup_apps" real,
"fa_cup_goals" real,
"total_apps" real,
"total_goals" real
);
|
SELECT MAX("total_goals") FROM "barnsley";
|
1-10240125-1
|
When FA Cup Apps is 9 what is the smallest number of FA Cup Goals?
|
CREATE TABLE "barnsley" (
"season" text,
"division" text,
"league_apps" real,
"league_goals" real,
"fa_cup_apps" real,
"fa_cup_goals" real,
"total_apps" real,
"total_goals" real
);
|
SELECT MIN("fa_cup_goals") FROM "barnsley" WHERE "fa_cup_apps"=9;
|
1-10240125-1
|
What is the smallest number of Total Goals?
|
CREATE TABLE "barnsley" (
"season" text,
"division" text,
"league_apps" real,
"league_goals" real,
"fa_cup_apps" real,
"fa_cup_goals" real,
"total_apps" real,
"total_goals" real
);
|
SELECT MIN("total_goals") FROM "barnsley";
|
1-10240125-1
|
What circuit was the race where Hideki Mutoh had the fastest lap?
|
CREATE TABLE "race_calendar_and_results" (
"round" real,
"circuit" text,
"date" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_team" text
);
|
SELECT "circuit" FROM "race_calendar_and_results" WHERE "fastest_lap"='Hideki Mutoh';
|
1-10264179-2
|
what is the minimum production code with title "foreign exchange problem / turn about"
|
CREATE TABLE "table1_10269427_3" (
"episode_num" real,
"production_code" real,
"title" text,
"directed_by" text,
"written_by" text,
"airdate" text
);
|
SELECT MIN("production_code") FROM "table1_10269427_3" WHERE "title"='\"Foreign Exchange Problem / Turn About\"';
|
1-10269427-3
|
what is the episode # for title "the yindianapolis 500 / personality problem"
|
CREATE TABLE "table1_10269427_3" (
"episode_num" real,
"production_code" real,
"title" text,
"directed_by" text,
"written_by" text,
"airdate" text
);
|
SELECT "episode_num" FROM "table1_10269427_3" WHERE "title"='\"The Yindianapolis 500 / Personality Problem\"';
|
1-10269427-3
|
what is the episode # for production code 227
|
CREATE TABLE "table1_10269427_3" (
"episode_num" real,
"production_code" real,
"title" text,
"directed_by" text,
"written_by" text,
"airdate" text
);
|
SELECT "episode_num" FROM "table1_10269427_3" WHERE "production_code"=227;
|
1-10269427-3
|
who directed the movie written by is sib ventress / aydrea ten bosch
|
CREATE TABLE "table1_10269427_3" (
"episode_num" real,
"production_code" real,
"title" text,
"directed_by" text,
"written_by" text,
"airdate" text
);
|
SELECT "directed_by" FROM "table1_10269427_3" WHERE "written_by"='Sib Ventress / Aydrea ten Bosch';
|
1-10269427-3
|
what is the production code with title "skirting the issue / moon over my yinnie"
|
CREATE TABLE "table1_10269427_3" (
"episode_num" real,
"production_code" real,
"title" text,
"directed_by" text,
"written_by" text,
"airdate" text
);
|
SELECT "production_code" FROM "table1_10269427_3" WHERE "title"='\"Skirting the Issue / Moon Over my Yinnie\"';
|
1-10269427-3
|
Whatis the number of total goals maximum?
|
CREATE TABLE "sheffield_united" (
"season" text,
"division" text,
"league_apps" real,
"league_goals" real,
"fa_cup_apps" real,
"fa_cup_goals" real,
"total_apps" real,
"total_goals" real
);
|
SELECT MAX("total_goals") FROM "sheffield_united";
|
1-10240125-2
|
HOW MANY TEMPERATURE INTERVALS ARE POSSIBLE TO USE WITH ACRYL?
|
CREATE TABLE "technology_overview" (
"assembly_type" text,
"adhesive_type" text,
"time_sec" text,
"temp_c" text,
"pressure" text
);
|
SELECT COUNT("temp_c") FROM "technology_overview" WHERE "adhesive_type"='Acryl';
|
1-10262329-1
|
How many matches where played with Jim Pugh?
|
CREATE TABLE "mixed_doubles_6_3_titles_3_runner_ups" (
"outcome" text,
"year" real,
"championship" text,
"surface" text,
"partner" text,
"opponents" text,
"score" text
);
|
SELECT COUNT("opponents") FROM "mixed_doubles_6_3_titles_3_runner_ups" WHERE "partner"='Jim Pugh';
|
1-1028356-3
|
What is the score with partner Jim Pugh?
|
CREATE TABLE "mixed_doubles_6_3_titles_3_runner_ups" (
"outcome" text,
"year" real,
"championship" text,
"surface" text,
"partner" text,
"opponents" text,
"score" text
);
|
SELECT "score" FROM "mixed_doubles_6_3_titles_3_runner_ups" WHERE "partner"='Jim Pugh';
|
1-1028356-3
|
How many matched scored 3–6, 7–6(5), 6–3?
|
CREATE TABLE "mixed_doubles_6_3_titles_3_runner_ups" (
"outcome" text,
"year" real,
"championship" text,
"surface" text,
"partner" text,
"opponents" text,
"score" text
);
|
SELECT COUNT("surface") FROM "mixed_doubles_6_3_titles_3_runner_ups" WHERE "score"='3–6, 7–6(5), 6–3';
|
1-1028356-3
|
What is the score of the match with partner Jim Pugh?
|
CREATE TABLE "mixed_doubles_6_3_titles_3_runner_ups" (
"outcome" text,
"year" real,
"championship" text,
"surface" text,
"partner" text,
"opponents" text,
"score" text
);
|
SELECT "score" FROM "mixed_doubles_6_3_titles_3_runner_ups" WHERE "partner"='Jim Pugh';
|
1-1028356-3
|
What year was the championship in Wimbledon (2)?
|
CREATE TABLE "mixed_doubles_6_3_titles_3_runner_ups" (
"outcome" text,
"year" real,
"championship" text,
"surface" text,
"partner" text,
"opponents" text,
"score" text
);
|
SELECT "year" FROM "mixed_doubles_6_3_titles_3_runner_ups" WHERE "championship"='Wimbledon (2)';
|
1-1028356-3
|
What is the score of the match with opponents Gretchen Magers Kelly Jones?
|
CREATE TABLE "mixed_doubles_6_3_titles_3_runner_ups" (
"outcome" text,
"year" real,
"championship" text,
"surface" text,
"partner" text,
"opponents" text,
"score" text
);
|
SELECT "score" FROM "mixed_doubles_6_3_titles_3_runner_ups" WHERE "opponents"='Gretchen Magers Kelly Jones';
|
1-1028356-3
|
How many birthdays does Earl Hanley Beshlin have?
|
CREATE TABLE "historical" (
"begin_date" text,
"end_date" text,
"representative" text,
"date_of_birth" text,
"house_term" text,
"state_served" text,
"party" text,
"age_years_days" text
);
|
SELECT COUNT("date_of_birth") FROM "historical" WHERE "representative"='Earl Hanley Beshlin';
|
1-10284385-1
|
Which politican party has a birthday of November 10, 1880
|
CREATE TABLE "historical" (
"begin_date" text,
"end_date" text,
"representative" text,
"date_of_birth" text,
"house_term" text,
"state_served" text,
"party" text,
"age_years_days" text
);
|
SELECT "party" FROM "historical" WHERE "date_of_birth"='November 10, 1880';
|
1-10284385-1
|
Which representative has a birthday of January 31, 1866?
|
CREATE TABLE "historical" (
"begin_date" text,
"end_date" text,
"representative" text,
"date_of_birth" text,
"house_term" text,
"state_served" text,
"party" text,
"age_years_days" text
);
|
SELECT "representative" FROM "historical" WHERE "date_of_birth"='January 31, 1866';
|
1-10284385-1
|
What is the Singles W-L for the players named Laurynas Grigelis?
|
CREATE TABLE "current_team" (
"player" text,
"current_singles_ranking" text,
"current_doubles_ranking" text,
"first_year_played" real,
"ties_played" real,
"total_w_l" text,
"singles_w_l" text,
"doubles_w_l" text
);
|
SELECT "singles_w_l" FROM "current_team" WHERE "player"='Laurynas Grigelis';
|
1-10295819-1
|
What is the Current singles ranking for the player named Mantas Bugailiškis?
|
CREATE TABLE "current_team" (
"player" text,
"current_singles_ranking" text,
"current_doubles_ranking" text,
"first_year_played" real,
"ties_played" real,
"total_w_l" text,
"singles_w_l" text,
"doubles_w_l" text
);
|
SELECT "current_singles_ranking" FROM "current_team" WHERE "player"='Mantas Bugailiškis';
|
1-10295819-1
|
How many playerd Mrs. Darling in the 1999 Broadway?
|
CREATE TABLE "cast_of_major_productions_1954_1999" (
"character" text,
"1954_broadway" text,
"1955_broadcast" text,
"1960_broadcast" text,
"1979_broadway" text,
"1990_broadway" text,
"1991_broadway" text,
"1998_broadway" text,
"1999_broadway" text
);
|
SELECT COUNT("1999_broadway") FROM "cast_of_major_productions_1954_1999" WHERE "character"='Mrs. Darling';
|
1-10312547-1
|
Who played Peter Pan in the 1990 Broadway?
|
CREATE TABLE "cast_of_major_productions_1954_1999" (
"character" text,
"1954_broadway" text,
"1955_broadcast" text,
"1960_broadcast" text,
"1979_broadway" text,
"1990_broadway" text,
"1991_broadway" text,
"1998_broadway" text,
"1999_broadway" text
);
|
SELECT "1990_broadway" FROM "cast_of_major_productions_1954_1999" WHERE "character"='Peter Pan';
|
1-10312547-1
|
Who played in the 1991 Broadway before Barbara McCulloh played the part in the 1999 Broadway?
|
CREATE TABLE "cast_of_major_productions_1954_1999" (
"character" text,
"1954_broadway" text,
"1955_broadcast" text,
"1960_broadcast" text,
"1979_broadway" text,
"1990_broadway" text,
"1991_broadway" text,
"1998_broadway" text,
"1999_broadway" text
);
|
SELECT "1991_broadway" FROM "cast_of_major_productions_1954_1999" WHERE "1999_broadway"='Barbara McCulloh';
|
1-10312547-1
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.