question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
How many were written by Peter Winther?
CREATE TABLE "table1_20704243_3" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_in_millions" text );
SELECT COUNT("written_by") FROM "table1_20704243_3" WHERE "directed_by"='Peter Winther';
1-20704243-3
How many directors were in Season 2?
CREATE TABLE "table1_20704243_3" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_in_millions" text );
SELECT COUNT("directed_by") FROM "table1_20704243_3" WHERE "season_num"=2;
1-20704243-3
Who is the director of the episode titled "The Reunion Job"?
CREATE TABLE "table1_20704243_4" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_in_millions" text );
SELECT "directed_by" FROM "table1_20704243_4" WHERE "title"='\"The Reunion Job\"';
1-20704243-4
When was the episode written by Albert Kim aired for the first time?
CREATE TABLE "table1_20704243_4" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_in_millions" text );
SELECT "original_air_date" FROM "table1_20704243_4" WHERE "written_by"='Albert Kim';
1-20704243-4
When was the episode titled "The Boost Job" originally aired?
CREATE TABLE "table1_20704243_4" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_in_millions" text );
SELECT "original_air_date" FROM "table1_20704243_4" WHERE "title"='\"The Boost Job\"';
1-20704243-4
How many millions of people in the US saw the episode titled "The Reunion Job"?
CREATE TABLE "table1_20704243_4" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_in_millions" text );
SELECT "u_s_viewers_in_millions" FROM "table1_20704243_4" WHERE "title"='\"The Reunion Job\"';
1-20704243-4
Who wrote the episode titled "The Morning After Job"?
CREATE TABLE "table1_20704243_4" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_in_millions" text );
SELECT "written_by" FROM "table1_20704243_4" WHERE "title"='\"The Morning After Job\"';
1-20704243-4
Name the series number for m. scott veach & rebecca kirsch
CREATE TABLE "table1_20704243_5" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_in_millions" text );
SELECT "series_num" FROM "table1_20704243_5" WHERE "written_by"='M. Scott Veach & Rebecca Kirsch';
1-20704243-5
Name the number of viewers for series number 50
CREATE TABLE "table1_20704243_5" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_in_millions" text );
SELECT "u_s_viewers_in_millions" FROM "table1_20704243_5" WHERE "series_num"=50;
1-20704243-5
Name who directed season 1
CREATE TABLE "table1_20704243_5" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_in_millions" text );
SELECT "directed_by" FROM "table1_20704243_5" WHERE "season_num"=1;
1-20704243-5
What is the moment of intertia in torsion (j) Cm4) for the beam height (mm) 120??=
CREATE TABLE "indian_standard_beams_ismb" ( "type" text, "beam_height_mm" real, "flange_width_mm" real, "web_thickness_mm" text, "flange_thickness_mm" text, "weight_kg_m" text, "cross_section_area_cm_2" text, "moment_of_inertia_in_torsion_j_cm_4" text );
SELECT COUNT("moment_of_inertia_in_torsion_j_cm_4") FROM "indian_standard_beams_ismb" WHERE "beam_height_mm"=120;
1-2071644-1
What is the cross section area (cm 2) for the moment of intertia in torsion (j) (cm 4) 2.54?
CREATE TABLE "indian_standard_beams_ismb" ( "type" text, "beam_height_mm" real, "flange_width_mm" real, "web_thickness_mm" text, "flange_thickness_mm" text, "weight_kg_m" text, "cross_section_area_cm_2" text, "moment_of_inertia_in_torsion_j_cm_4" text );
SELECT "cross_section_area_cm_2" FROM "indian_standard_beams_ismb" WHERE "moment_of_inertia_in_torsion_j_cm_4"='2.54';
1-2071644-1
What is the flange thickness (mm) for the weight (kg/m) 6.0?Wg
CREATE TABLE "indian_standard_beams_ismb" ( "type" text, "beam_height_mm" real, "flange_width_mm" real, "web_thickness_mm" text, "flange_thickness_mm" text, "weight_kg_m" text, "cross_section_area_cm_2" text, "moment_of_inertia_in_torsion_j_cm_4" text );
SELECT "flange_thickness_mm" FROM "indian_standard_beams_ismb" WHERE "weight_kg_m"='6.0';
1-2071644-1
What is the number for the moment of intertia in torsion (j) (cm 4) for the 4.7 web thickness (mm)?
CREATE TABLE "indian_standard_beams_ismb" ( "type" text, "beam_height_mm" real, "flange_width_mm" real, "web_thickness_mm" text, "flange_thickness_mm" text, "weight_kg_m" text, "cross_section_area_cm_2" text, "moment_of_inertia_in_torsion_j_cm_4" text );
SELECT COUNT("moment_of_inertia_in_torsion_j_cm_4") FROM "indian_standard_beams_ismb" WHERE "web_thickness_mm"='4.7';
1-2071644-1
What is the flange thickness (mm) for the weight (kg/m) 10.4?
CREATE TABLE "indian_standard_beams_ismb" ( "type" text, "beam_height_mm" real, "flange_width_mm" real, "web_thickness_mm" text, "flange_thickness_mm" text, "weight_kg_m" text, "cross_section_area_cm_2" text, "moment_of_inertia_in_torsion_j_cm_4" text );
SELECT "flange_thickness_mm" FROM "indian_standard_beams_ismb" WHERE "weight_kg_m"='10.4';
1-2071644-1
What is the flange width (mm) for cross section area (cm 2) 16.4?
CREATE TABLE "indian_standard_beams_ismb" ( "type" text, "beam_height_mm" real, "flange_width_mm" real, "web_thickness_mm" text, "flange_thickness_mm" text, "weight_kg_m" text, "cross_section_area_cm_2" text, "moment_of_inertia_in_torsion_j_cm_4" text );
SELECT COUNT("flange_width_mm") FROM "indian_standard_beams_ismb" WHERE "cross_section_area_cm_2"='16.4';
1-2071644-1
In what round was lyon (32) a 5 seed?
CREATE TABLE "players" ( "seed" real, "player" text, "marseille_32_draw" text, "metz_32" text, "lyon_32" text, "paris_48_byes" text );
SELECT "lyon_32" FROM "players" WHERE "seed"=5;
1-20711545-1
How many items were recorded marseille (32 draw) was a 2 seed?
CREATE TABLE "players" ( "seed" real, "player" text, "marseille_32_draw" text, "metz_32" text, "lyon_32" text, "paris_48_byes" text );
SELECT COUNT("marseille_32_draw") FROM "players" WHERE "seed"=2;
1-20711545-1
What is the seed for lyon (32) was DNQ?
CREATE TABLE "players" ( "seed" real, "player" text, "marseille_32_draw" text, "metz_32" text, "lyon_32" text, "paris_48_byes" text );
SELECT MAX("seed") FROM "players" WHERE "lyon_32"='DNQ';
1-20711545-1
What was the result for Paris(48-byes) for 3 seed?
CREATE TABLE "players" ( "seed" real, "player" text, "marseille_32_draw" text, "metz_32" text, "lyon_32" text, "paris_48_byes" text );
SELECT "paris_48_byes" FROM "players" WHERE "seed"=3;
1-20711545-1
What was McCain's percentage when Obama had 64.39% of the vote?
CREATE TABLE "by" ( "parish" text, "obamapct" text, "obamanum" real, "mc_cainpct" text, "mc_cainnum" real );
SELECT "mc_cainpct" FROM "by" WHERE "obamapct"='64.39%';
1-20722805-1
What was McCain's vote when Obama had 48.35%
CREATE TABLE "by" ( "parish" text, "obamapct" text, "obamanum" real, "mc_cainpct" text, "mc_cainnum" real );
SELECT MIN("mc_cainnum") FROM "by" WHERE "obamapct"='48.35%';
1-20722805-1
How many votes did Obama have at 32.12%
CREATE TABLE "by" ( "parish" text, "obamapct" text, "obamanum" real, "mc_cainpct" text, "mc_cainnum" real );
SELECT MIN("obamanum") FROM "by" WHERE "obamapct"='32.12%';
1-20722805-1
What parish did McCain have 45.37% of the votes?
CREATE TABLE "by" ( "parish" text, "obamapct" text, "obamanum" real, "mc_cainpct" text, "mc_cainnum" real );
SELECT "parish" FROM "by" WHERE "mc_cainpct"='45.37%';
1-20722805-1
What is the total number of votes McCain had in Webster?
CREATE TABLE "by" ( "parish" text, "obamapct" text, "obamanum" real, "mc_cainpct" text, "mc_cainnum" real );
SELECT MAX("mc_cainnum") FROM "by" WHERE "parish"='Webster';
1-20722805-1
What was the original air date for the episode with production code 1wab06?
CREATE TABLE "table1_20726262_2" ( "no_in_series" real, "title" text, "directedby" text, "writtenby" text, "originalairdate" text, "production_code" text );
SELECT "originalairdate" FROM "table1_20726262_2" WHERE "production_code"='1WAB06';
1-20726262-2
What title episode did Paris Barclay direct?
CREATE TABLE "table1_20726262_2" ( "no_in_series" real, "title" text, "directedby" text, "writtenby" text, "originalairdate" text, "production_code" text );
SELECT "title" FROM "table1_20726262_2" WHERE "directedby"='Paris Barclay';
1-20726262-2
What was the production code for episode #1?
CREATE TABLE "table1_20726262_2" ( "no_in_series" real, "title" text, "directedby" text, "writtenby" text, "originalairdate" text, "production_code" text );
SELECT "production_code" FROM "table1_20726262_2" WHERE "no_in_series"=1;
1-20726262-2
What number episode was written by kurt sutter & jack logiudice?
CREATE TABLE "table1_20726262_2" ( "no_in_series" real, "title" text, "directedby" text, "writtenby" text, "originalairdate" text, "production_code" text );
SELECT MAX("no_in_series") FROM "table1_20726262_2" WHERE "writtenby"='Kurt Sutter & Jack LoGiudice';
1-20726262-2
What was the production code for the episode with 3.38 million viewers?
CREATE TABLE "table1_20726262_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directedby" text, "writtenby" text, "originalairdate" text, "production_code" text, "u_s_viewers_million" text );
SELECT "production_code" FROM "table1_20726262_3" WHERE "u_s_viewers_million"='3.38';
1-20726262-3
Who were the writers for "Balm"?
CREATE TABLE "table1_20726262_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directedby" text, "writtenby" text, "originalairdate" text, "production_code" text, "u_s_viewers_million" text );
SELECT "writtenby" FROM "table1_20726262_3" WHERE "title"='\"Balm\"';
1-20726262-3
What season number did production code 2wab12?
CREATE TABLE "table1_20726262_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directedby" text, "writtenby" text, "originalairdate" text, "production_code" text, "u_s_viewers_million" text );
SELECT "no_in_season" FROM "table1_20726262_3" WHERE "production_code"='2WAB12';
1-20726262-3
How many numbers in the season were written by Brett Conrad & Liz Sagal?
CREATE TABLE "table1_20726262_3" ( "no_in_series" real, "no_in_season" real, "title" text, "directedby" text, "writtenby" text, "originalairdate" text, "production_code" text, "u_s_viewers_million" text );
SELECT COUNT("no_in_season") FROM "table1_20726262_3" WHERE "writtenby"='Brett Conrad & Liz Sagal';
1-20726262-3
what i the maximum number in the series where the production code is 3wab07?
CREATE TABLE "table1_20726262_4" ( "no_in_series" real, "no_in_season" real, "title" text, "directedby" text, "writtenby" text, "originalairdate" text, "production_code" text, "u_s_viewers_million" text );
SELECT MAX("no_in_series") FROM "table1_20726262_4" WHERE "production_code"='3WAB07';
1-20726262-4
what is the maximum number in the season wher the us viewers is 2.59?
CREATE TABLE "table1_20726262_4" ( "no_in_series" real, "no_in_season" real, "title" text, "directedby" text, "writtenby" text, "originalairdate" text, "production_code" text, "u_s_viewers_million" text );
SELECT MAX("no_in_season") FROM "table1_20726262_4" WHERE "u_s_viewers_million"='2.59';
1-20726262-4
what is the written by and production code is 3wab03?
CREATE TABLE "table1_20726262_4" ( "no_in_series" real, "no_in_season" real, "title" text, "directedby" text, "writtenby" text, "originalairdate" text, "production_code" text, "u_s_viewers_million" text );
SELECT "writtenby" FROM "table1_20726262_4" WHERE "production_code"='3WAB03';
1-20726262-4
How many seats were won, when the seats contested was 48?
CREATE TABLE "table1_20728138_1" ( "party" text, "seats_contested" real, "seats_won" real, "no_of_votes" real, "pct_of_votes" text, "pct_in_seats_contested" text, "seats_forfeited" real, "2003_seats" real );
SELECT "seats_won" FROM "table1_20728138_1" WHERE "seats_contested"=48;
1-20728138-1
How many seats are contested for independents?
CREATE TABLE "table1_20728138_1" ( "party" text, "seats_contested" real, "seats_won" real, "no_of_votes" real, "pct_of_votes" text, "pct_in_seats_contested" text, "seats_forfeited" real, "2003_seats" real );
SELECT "seats_contested" FROM "table1_20728138_1" WHERE "party"='Independents';
1-20728138-1
What is the percentage seats contested for the revolutionary socialist party?
CREATE TABLE "table1_20728138_1" ( "party" text, "seats_contested" real, "seats_won" real, "no_of_votes" real, "pct_of_votes" text, "pct_in_seats_contested" text, "seats_forfeited" real, "2003_seats" real );
SELECT "pct_in_seats_contested" FROM "table1_20728138_1" WHERE "party"='Revolutionary Socialist Party';
1-20728138-1
What is the 2003 seat number, when seats contested was at 38.23%
CREATE TABLE "table1_20728138_1" ( "party" text, "seats_contested" real, "seats_won" real, "no_of_votes" real, "pct_of_votes" text, "pct_in_seats_contested" text, "seats_forfeited" real, "2003_seats" real );
SELECT MIN("2003_seats") FROM "table1_20728138_1" WHERE "pct_in_seats_contested"='38.23%';
1-20728138-1
How many seats were forfeited in the revolutionary socialist party?
CREATE TABLE "table1_20728138_1" ( "party" text, "seats_contested" real, "seats_won" real, "no_of_votes" real, "pct_of_votes" text, "pct_in_seats_contested" text, "seats_forfeited" real, "2003_seats" real );
SELECT COUNT("seats_forfeited") FROM "table1_20728138_1" WHERE "party"='Revolutionary Socialist Party';
1-20728138-1
Who was the opponent when the attendance was exactly 16642?
CREATE TABLE "game_log" ( "num" real, "date" text, "at_vs" text, "opponent" text, "score" text, "attendance" real, "record" text );
SELECT "opponent" FROM "game_log" WHERE "attendance"=16642;
1-20745685-1
What is the score for game #7?
CREATE TABLE "game_log" ( "num" real, "date" text, "at_vs" text, "opponent" text, "score" text, "attendance" real, "record" text );
SELECT "score" FROM "game_log" WHERE "num"=7;
1-20745685-1
Who was the opponent on February 28, 1991
CREATE TABLE "game_log" ( "num" real, "date" text, "at_vs" text, "opponent" text, "score" text, "attendance" real, "record" text );
SELECT "opponent" FROM "game_log" WHERE "date"='February 28, 1991';
1-20745685-1
What was the date when the record was 1-0?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "tar_heels_points" real, "opponents" real, "record" text );
SELECT "date" FROM "schedule" WHERE "record"='1-0';
1-20745444-1
How many results finished in a loss?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "tar_heels_points" real, "opponents" real, "record" text );
SELECT COUNT("tar_heels_points") FROM "schedule" WHERE "result"='Loss';
1-20745444-1
How many games were against Furman?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "tar_heels_points" real, "opponents" real, "record" text );
SELECT MAX("game") FROM "schedule" WHERE "opponent"='Furman';
1-20745444-1
How many times were Duke the opponents?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "tar_heels_points" real, "opponents" real, "record" text );
SELECT COUNT("opponents") FROM "schedule" WHERE "opponent"='Duke';
1-20745444-1
How many losses were there when the record was 4-0?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "tar_heels_points" real, "opponents" real, "record" text );
SELECT MAX("opponents") FROM "schedule" WHERE "record"='4-0';
1-20745444-1
What was the game #7, at or versus (home or at)?
CREATE TABLE "game_log" ( "num" text, "date" text, "at_vs" text, "opponent" text, "score" text, "attendance" real, "record" text );
SELECT "at_vs" FROM "game_log" WHERE "num"='7';
1-20745754-1
Who did they play against in game 7?
CREATE TABLE "game_log" ( "num" text, "date" text, "at_vs" text, "opponent" text, "score" text, "attendance" real, "record" text );
SELECT "opponent" FROM "game_log" WHERE "num"='7';
1-20745754-1
What game number had an attendance of 2813?
CREATE TABLE "game_log" ( "num" text, "date" text, "at_vs" text, "opponent" text, "score" text, "attendance" real, "record" text );
SELECT "num" FROM "game_log" WHERE "attendance"=2813;
1-20745754-1
What day did the play game number 9?
CREATE TABLE "table1_20746062_1" ( "game" real, "date" text, "opponent" text, "result" text, "thundering_herd_points" real, "opponents" real, "record" text );
SELECT "date" FROM "table1_20746062_1" WHERE "game"=9;
1-20746062-1
What was the result of the game when they were 2-1?
CREATE TABLE "table1_20746062_1" ( "game" real, "date" text, "opponent" text, "result" text, "thundering_herd_points" real, "opponents" real, "record" text );
SELECT "result" FROM "table1_20746062_1" WHERE "record"='2-1';
1-20746062-1
What was the record when the Bruins had 41 points?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "bruins_points" real, "opponents" real, "record" text );
SELECT "record" FROM "schedule" WHERE "bruins_points"=41;
1-20760407-1
What was the date for game 9?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "bruins_points" real, "opponents" real, "record" text );
SELECT "date" FROM "schedule" WHERE "game"=9;
1-20760407-1
What game did the Bruins have 56 points?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "bruins_points" real, "opponents" real, "record" text );
SELECT MAX("game") FROM "schedule" WHERE "bruins_points"=56;
1-20760407-1
What is the total of played where lost equals 4 and drawn equals 1?
CREATE TABLE "table1_20760802_1" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "points_difference" text, "bonus_points" text, "points" text );
SELECT "played" FROM "table1_20760802_1" WHERE "lost"='4' AND "drawn"='1';
1-20760802-1
How many drawn are there where the Club is new ross?
CREATE TABLE "table1_20760802_1" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "points_difference" text, "bonus_points" text, "points" text );
SELECT "drawn" FROM "table1_20760802_1" WHERE "club"='New Ross';
1-20760802-1
How may drawn equal points against at 129?
CREATE TABLE "table1_20760802_1" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "points_difference" text, "bonus_points" text, "points" text );
SELECT "drawn" FROM "table1_20760802_1" WHERE "points_against"='129';
1-20760802-1
How many points differ from 134?
CREATE TABLE "table1_20760802_1" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "points_difference" text, "bonus_points" text, "points" text );
SELECT "points_difference" FROM "table1_20760802_1" WHERE "points_for"='134';
1-20760802-1
How many of the points difference lost equal 10?
CREATE TABLE "table1_20760802_1" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "points_difference" text, "bonus_points" text, "points" text );
SELECT "points_difference" FROM "table1_20760802_1" WHERE "lost"='10';
1-20760802-1
How many teams that played won 0 games?
CREATE TABLE "table1_20760802_1" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "points_difference" text, "bonus_points" text, "points" text );
SELECT "played" FROM "table1_20760802_1" WHERE "won"='0';
1-20760802-1
What are the public schools with a master's university?
CREATE TABLE "institutions" ( "school" text, "location_s" text, "control" text, "type" text, "enrollment_2009" real, "founded" real );
SELECT "location_s" FROM "institutions" WHERE "control"='Public' AND "type"='Master''s university';
1-2076595-1
What is the minimum enrollment for Plainfield?
CREATE TABLE "institutions" ( "school" text, "location_s" text, "control" text, "type" text, "enrollment_2009" real, "founded" real );
SELECT MIN("enrollment_2009") FROM "institutions" WHERE "location_s"='Plainfield';
1-2076595-1
What type of school had an enrollment in 2009 of 224?
CREATE TABLE "institutions" ( "school" text, "location_s" text, "control" text, "type" text, "enrollment_2009" real, "founded" real );
SELECT "type" FROM "institutions" WHERE "enrollment_2009"=224;
1-2076595-1
When was Southern Vermont College founded?
CREATE TABLE "institutions" ( "school" text, "location_s" text, "control" text, "type" text, "enrollment_2009" real, "founded" real );
SELECT MAX("founded") FROM "institutions" WHERE "school"='Southern Vermont College';
1-2076595-1
Is art school public or private?
CREATE TABLE "institutions" ( "school" text, "location_s" text, "control" text, "type" text, "enrollment_2009" real, "founded" real );
SELECT "control" FROM "institutions" WHERE "type"='Art school';
1-2076595-1
What school was founded in 1791?
CREATE TABLE "institutions" ( "school" text, "location_s" text, "control" text, "type" text, "enrollment_2009" real, "founded" real );
SELECT "school" FROM "institutions" WHERE "founded"=1791;
1-2076595-1
Name the number of spring enrollment for sioux falls seminary
CREATE TABLE "active_institutions" ( "school" text, "location_s" text, "control" text, "type" text, "enrollment_spring_2012" real, "founded" real, "accreditation" text );
SELECT COUNT("enrollment_spring_2012") FROM "active_institutions" WHERE "school"='Sioux Falls Seminary';
1-2076557-2
Name the accrediatation for southeast technical institute
CREATE TABLE "active_institutions" ( "school" text, "location_s" text, "control" text, "type" text, "enrollment_spring_2012" real, "founded" real, "accreditation" text );
SELECT "accreditation" FROM "active_institutions" WHERE "school"='Southeast Technical Institute';
1-2076557-2
Name the total number of founded for yankton
CREATE TABLE "active_institutions" ( "school" text, "location_s" text, "control" text, "type" text, "enrollment_spring_2012" real, "founded" real, "accreditation" text );
SELECT COUNT("founded") FROM "active_institutions" WHERE "location_s"='Yankton';
1-2076557-2
What is the Italian word for the English word "otter"?
CREATE TABLE "central_and_southern_calabrian" ( "central_southern_calabrian" text, "phonetic_greek" text, "italian" text, "french" text, "english" text );
SELECT "italian" FROM "central_and_southern_calabrian" WHERE "english"='otter';
1-2077192-2
How many French words does zinnapòtamu in Central-Southern Calabrian translate to?
CREATE TABLE "central_and_southern_calabrian" ( "central_southern_calabrian" text, "phonetic_greek" text, "italian" text, "french" text, "english" text );
SELECT COUNT("french") FROM "central_and_southern_calabrian" WHERE "central_southern_calabrian"='zinnapòtamu';
1-2077192-2
What is the French translation for the English word "orange"?
CREATE TABLE "central_and_southern_calabrian" ( "central_southern_calabrian" text, "phonetic_greek" text, "italian" text, "french" text, "english" text );
SELECT "french" FROM "central_and_southern_calabrian" WHERE "english"='orange';
1-2077192-2
What is the Italian word for "orange" in English?
CREATE TABLE "central_and_southern_calabrian" ( "central_southern_calabrian" text, "phonetic_greek" text, "italian" text, "french" text, "english" text );
SELECT "italian" FROM "central_and_southern_calabrian" WHERE "english"='orange';
1-2077192-2
How many Phonetic Greek words translate to grenouille in French?
CREATE TABLE "central_and_southern_calabrian" ( "central_southern_calabrian" text, "phonetic_greek" text, "italian" text, "french" text, "english" text );
SELECT COUNT("phonetic_greek") FROM "central_and_southern_calabrian" WHERE "french"='grenouille';
1-2077192-2
What does the word "frog"in English translate to in Italian?
CREATE TABLE "central_and_southern_calabrian" ( "central_southern_calabrian" text, "phonetic_greek" text, "italian" text, "french" text, "english" text );
SELECT "italian" FROM "central_and_southern_calabrian" WHERE "english"='frog';
1-2077192-2
Where are the Alexandria enrollment locations?
CREATE TABLE "primarily_religious_institutions" ( "school" text, "location_s" text, "control" text, "type" text, "accreditation" text, "founded" text, "enrollment" text );
SELECT "enrollment" FROM "primarily_religious_institutions" WHERE "location_s"='Alexandria';
1-2076608-3
What is the control type which was founded in 1991?
CREATE TABLE "primarily_religious_institutions" ( "school" text, "location_s" text, "control" text, "type" text, "accreditation" text, "founded" text, "enrollment" text );
SELECT "control" FROM "primarily_religious_institutions" WHERE "founded"='1991';
1-2076608-3
What is the control type which was founded in 1818?
CREATE TABLE "primarily_religious_institutions" ( "school" text, "location_s" text, "control" text, "type" text, "accreditation" text, "founded" text, "enrollment" text );
SELECT "control" FROM "primarily_religious_institutions" WHERE "founded"='1818';
1-2076608-3
What year was Hartland College founded?
CREATE TABLE "primarily_religious_institutions" ( "school" text, "location_s" text, "control" text, "type" text, "accreditation" text, "founded" text, "enrollment" text );
SELECT "founded" FROM "primarily_religious_institutions" WHERE "school"='Hartland College';
1-2076608-3
What type of school is Cordoba University?
CREATE TABLE "primarily_religious_institutions" ( "school" text, "location_s" text, "control" text, "type" text, "accreditation" text, "founded" text, "enrollment" text );
SELECT "type" FROM "primarily_religious_institutions" WHERE "school"='Cordoba University';
1-2076608-3
What school is in Richmond?
CREATE TABLE "primarily_religious_institutions" ( "school" text, "location_s" text, "control" text, "type" text, "accreditation" text, "founded" text, "enrollment" text );
SELECT "school" FROM "primarily_religious_institutions" WHERE "location_s"='Richmond';
1-2076608-3
What accreditation does Hollins University have?
CREATE TABLE "public_and_established_private_instituti" ( "school" text, "location_s" text, "control" text, "type" text, "accreditation" text, "founded" real, "enrollment" text );
SELECT "accreditation" FROM "public_and_established_private_instituti" WHERE "school"='Hollins University';
1-2076608-1
What was the largest founded year for schools having enrollment of exactly 696?
CREATE TABLE "public_and_established_private_instituti" ( "school" text, "location_s" text, "control" text, "type" text, "accreditation" text, "founded" real, "enrollment" text );
SELECT MAX("founded") FROM "public_and_established_private_instituti" WHERE "enrollment"='696';
1-2076608-1
What is the control for Christopher Newport University?
CREATE TABLE "public_and_established_private_instituti" ( "school" text, "location_s" text, "control" text, "type" text, "accreditation" text, "founded" real, "enrollment" text );
SELECT "control" FROM "public_and_established_private_instituti" WHERE "school"='Christopher Newport University';
1-2076608-1
What is the total number of schools founded that have an enrollment of 5634?
CREATE TABLE "public_and_established_private_instituti" ( "school" text, "location_s" text, "control" text, "type" text, "accreditation" text, "founded" real, "enrollment" text );
SELECT COUNT("founded") FROM "public_and_established_private_instituti" WHERE "enrollment"='5634';
1-2076608-1
What type of school is Stratford University?
CREATE TABLE "public_and_established_private_instituti" ( "school" text, "location_s" text, "control" text, "type" text, "accreditation" text, "founded" real, "enrollment" text );
SELECT "type" FROM "public_and_established_private_instituti" WHERE "school"='Stratford University';
1-2076608-1
What type of school is Jefferson College of Health Sciences?
CREATE TABLE "public_and_established_private_instituti" ( "school" text, "location_s" text, "control" text, "type" text, "accreditation" text, "founded" real, "enrollment" text );
SELECT "type" FROM "public_and_established_private_instituti" WHERE "school"='Jefferson College of Health Sciences';
1-2076608-1
Name the nec record for 11th standing
CREATE TABLE "st_francis_college_lady_terriers_northea" ( "year" text, "head_coach" text, "regular_season_record_w_l" text, "nec_record" text, "standing" text, "nec_tournament_record" text );
SELECT "nec_record" FROM "st_francis_college_lady_terriers_northea" WHERE "standing"='11th';
1-20774360-2
Name the year for standing 9th
CREATE TABLE "st_francis_college_lady_terriers_northea" ( "year" text, "head_coach" text, "regular_season_record_w_l" text, "nec_record" text, "standing" text, "nec_tournament_record" text );
SELECT "year" FROM "st_francis_college_lady_terriers_northea" WHERE "standing"='9th';
1-20774360-2
Name the year for t-10th
CREATE TABLE "st_francis_college_lady_terriers_northea" ( "year" text, "head_coach" text, "regular_season_record_w_l" text, "nec_record" text, "standing" text, "nec_tournament_record" text );
SELECT "year" FROM "st_francis_college_lady_terriers_northea" WHERE "standing"='T-10th';
1-20774360-2
Name the regular season record for standing 11th
CREATE TABLE "st_francis_college_lady_terriers_northea" ( "year" text, "head_coach" text, "regular_season_record_w_l" text, "nec_record" text, "standing" text, "nec_tournament_record" text );
SELECT "regular_season_record_w_l" FROM "st_francis_college_lady_terriers_northea" WHERE "standing"='11th';
1-20774360-2
Name the most previous br number
CREATE TABLE "departmental_service" ( "number" text, "previous_br_no" real, "taken_into_deptal_stock" real, "withdrawn" real, "disposal" text );
SELECT MAX("previous_br_no") FROM "departmental_service";
1-2079664-3
Name the total number of previous br number for number 21
CREATE TABLE "departmental_service" ( "number" text, "previous_br_no" real, "taken_into_deptal_stock" real, "withdrawn" real, "disposal" text );
SELECT COUNT("previous_br_no") FROM "departmental_service" WHERE "number"='21';
1-2079664-3
What country uses the title Marele Câștigător The Big Winner?
CREATE TABLE "table1_20780285_1" ( "country_region" text, "title" text, "television_network" text, "winners" text, "presenters" text, "trainers" text );
SELECT "country_region" FROM "table1_20780285_1" WHERE "title"='Marele câștigător The Big Winner';
1-20780285-1
Silvio Santos is the presenter in what country?
CREATE TABLE "table1_20780285_1" ( "country_region" text, "title" text, "television_network" text, "winners" text, "presenters" text, "trainers" text );
SELECT "country_region" FROM "table1_20780285_1" WHERE "presenters"='Silvio Santos';
1-20780285-1
What is the home town of David Noel?
CREATE TABLE "roster" ( "name" text, "num" real, "height" text, "weight" real, "position" text, "year" text, "home_town" text, "high_school" text );
SELECT "home_town" FROM "roster" WHERE "name"='David Noel';
1-20785990-2
What is the high school for the player who's hometown is Blue Island, Il?
CREATE TABLE "roster" ( "name" text, "num" real, "height" text, "weight" real, "position" text, "year" text, "home_town" text, "high_school" text );
SELECT "high_school" FROM "roster" WHERE "home_town"='Blue Island, IL';
1-20785990-2