question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What date did "getting even" originally air?
CREATE TABLE "episodes" ( "episode_num" real, "series_num" real, "title" text, "director" text, "writer" text, "original_airdate" text, "viewers_in_millions" text );
SELECT "original_airdate" FROM "episodes" WHERE "title"='\"Getting Even\"';
1-26139405-1
Who wrote episode 26 in the series?
CREATE TABLE "episodes" ( "episode_num" real, "series_num" real, "title" text, "director" text, "writer" text, "original_airdate" text, "viewers_in_millions" text );
SELECT "writer" FROM "episodes" WHERE "episode_num"=26;
1-26139405-1
What is the g (μs/km)when the frequency (hz) is 100k?
CREATE TABLE "characteristics_of_telephone_cable_as_a_" ( "frequency_hz" text, "r_km" text, "l_m_h_km" text, "g_s_km" text, "c_n_f_km" text );
SELECT "g_s_km" FROM "characteristics_of_telephone_cable_as_a_" WHERE "frequency_hz"='100k';
1-261642-3
What is the r (ω/km) when the frequency is 10k?
CREATE TABLE "characteristics_of_telephone_cable_as_a_" ( "frequency_hz" text, "r_km" text, "l_m_h_km" text, "g_s_km" text, "c_n_f_km" text );
SELECT "r_km" FROM "characteristics_of_telephone_cable_as_a_" WHERE "frequency_hz"='10k';
1-261642-3
What is the c (nf/km) when the r (ω/km) is 463.59?
CREATE TABLE "characteristics_of_telephone_cable_as_a_" ( "frequency_hz" text, "r_km" text, "l_m_h_km" text, "g_s_km" text, "c_n_f_km" text );
SELECT "c_n_f_km" FROM "characteristics_of_telephone_cable_as_a_" WHERE "r_km"='463.59';
1-261642-3
what is the c (nf/km) when the l (mh/km) is 0.6099?
CREATE TABLE "characteristics_of_telephone_cable_as_a_" ( "frequency_hz" text, "r_km" text, "l_m_h_km" text, "g_s_km" text, "c_n_f_km" text );
SELECT "c_n_f_km" FROM "characteristics_of_telephone_cable_as_a_" WHERE "l_m_h_km"='0.6099';
1-261642-3
what is the frequency (hz) when the g (μs/km) is 53.205?
CREATE TABLE "characteristics_of_telephone_cable_as_a_" ( "frequency_hz" text, "r_km" text, "l_m_h_km" text, "g_s_km" text, "c_n_f_km" text );
SELECT "frequency_hz" FROM "characteristics_of_telephone_cable_as_a_" WHERE "g_s_km"='53.205';
1-261642-3
In the country United Arab Emirates, what is the number of imports?
CREATE TABLE "see_also" ( "country" text, "exports" text, "imports" text, "total_trade" text, "trade_balance" text );
SELECT "imports" FROM "see_also" WHERE "country"='United Arab Emirates';
1-26160007-1
Where the number of exports are 6,099.06, what is the total trade?
CREATE TABLE "see_also" ( "country" text, "exports" text, "imports" text, "total_trade" text, "trade_balance" text );
SELECT "total_trade" FROM "see_also" WHERE "exports"='6,099.06';
1-26160007-1
In which country are there 1,278.13 exports?
CREATE TABLE "see_also" ( "country" text, "exports" text, "imports" text, "total_trade" text, "trade_balance" text );
SELECT "country" FROM "see_also" WHERE "exports"='1,278.13';
1-26160007-1
Where the total trade is 14,954.86, what are the exports?
CREATE TABLE "see_also" ( "country" text, "exports" text, "imports" text, "total_trade" text, "trade_balance" text );
SELECT "exports" FROM "see_also" WHERE "total_trade"='14,954.86';
1-26160007-1
In the country Switzerland, what is the total trade?
CREATE TABLE "see_also" ( "country" text, "exports" text, "imports" text, "total_trade" text, "trade_balance" text );
SELECT "total_trade" FROM "see_also" WHERE "country"='Switzerland';
1-26160007-1
Where the exports is 13,608.65, what is the total trade?
CREATE TABLE "see_also" ( "country" text, "exports" text, "imports" text, "total_trade" text, "trade_balance" text );
SELECT "total_trade" FROM "see_also" WHERE "exports"='13,608.65';
1-26160007-1
What is the location for tournament on Jul 8-11?
CREATE TABLE "tournament_results" ( "dates" text, "tournament" text, "location" text, "prize_fund" real, "winner" text, "owgr_pts" real );
SELECT "location" FROM "tournament_results" WHERE "dates"='Jul 8-11';
1-26144632-1
What is the date of the tournament at Hokkaidō with prize of ¥150000000?
CREATE TABLE "tournament_results" ( "dates" text, "tournament" text, "location" text, "prize_fund" real, "winner" text, "owgr_pts" real );
SELECT "dates" FROM "tournament_results" WHERE "location"='Hokkaidō' AND "prize_fund"=150000000;
1-26144632-1
What is the prize for the tournament at Ibaraki?
CREATE TABLE "tournament_results" ( "dates" text, "tournament" text, "location" text, "prize_fund" real, "winner" text, "owgr_pts" real );
SELECT "prize_fund" FROM "tournament_results" WHERE "location"='Ibaraki';
1-26144632-1
How many titles are there for the original air date April 3, 2012?
CREATE TABLE "table1_26150013_1" ( "no_in_series" text, "no_in_season" text, "title" text, "animation_directors" text, "written_by" text, "original_air_date" text );
SELECT COUNT("title") FROM "table1_26150013_1" WHERE "original_air_date"='April 3, 2012';
1-26150013-1
What are all of the area where distance is marathon and month held is february
CREATE TABLE "silver_label" ( "road_race" text, "distance" text, "location" text, "country" text, "month_held" text );
SELECT "location" FROM "silver_label" WHERE "distance"='Marathon' AND "month_held"='February';
1-26166836-2
What's the whole range of united states where road race is ottawa marathon
CREATE TABLE "silver_label" ( "road_race" text, "distance" text, "location" text, "country" text, "month_held" text );
SELECT COUNT("country") FROM "silver_label" WHERE "road_race"='Ottawa Marathon';
1-26166836-2
What race is held in Germany in the month of May?
CREATE TABLE "bronze_label" ( "road_race" text, "distance" text, "location" text, "country" text, "month_held" text );
SELECT "road_race" FROM "bronze_label" WHERE "country"='Germany' AND "month_held"='May';
1-26166836-3
How many times a year is the Brighton Marathon held?
CREATE TABLE "bronze_label" ( "road_race" text, "distance" text, "location" text, "country" text, "month_held" text );
SELECT COUNT("month_held") FROM "bronze_label" WHERE "distance"='Marathon' AND "location"='Brighton';
1-26166836-3
What month is the Paris 20k Road Race held?
CREATE TABLE "bronze_label" ( "road_race" text, "distance" text, "location" text, "country" text, "month_held" text );
SELECT "month_held" FROM "bronze_label" WHERE "location"='Paris';
1-26166836-3
How many times a year is the Paris 20k road race held?
CREATE TABLE "bronze_label" ( "road_race" text, "distance" text, "location" text, "country" text, "month_held" text );
SELECT COUNT("month_held") FROM "bronze_label" WHERE "road_race"='Paris 20K';
1-26166836-3
What is the name of the road race held in Omsk, Russia?
CREATE TABLE "bronze_label" ( "road_race" text, "distance" text, "location" text, "country" text, "month_held" text );
SELECT "road_race" FROM "bronze_label" WHERE "location"='Omsk';
1-26166836-3
Where was the istanbul marathon?
CREATE TABLE "gold_label" ( "road_race" text, "distance" text, "location" text, "country" text, "month_held" text );
SELECT "location" FROM "gold_label" WHERE "road_race"='Istanbul Marathon';
1-26166836-1
How long was the great manchester run?
CREATE TABLE "gold_label" ( "road_race" text, "distance" text, "location" text, "country" text, "month_held" text );
SELECT "distance" FROM "gold_label" WHERE "road_race"='Great Manchester Run';
1-26166836-1
In which country was the xiamen international marathon?
CREATE TABLE "gold_label" ( "road_race" text, "distance" text, "location" text, "country" text, "month_held" text );
SELECT "country" FROM "gold_label" WHERE "road_race"='Xiamen International Marathon';
1-26166836-1
In which city was the berlin marathon?
CREATE TABLE "gold_label" ( "road_race" text, "distance" text, "location" text, "country" text, "month_held" text );
SELECT "location" FROM "gold_label" WHERE "road_race"='Berlin Marathon';
1-26166836-1
How many races were in fukuoka, japan?
CREATE TABLE "gold_label" ( "road_race" text, "distance" text, "location" text, "country" text, "month_held" text );
SELECT COUNT("road_race") FROM "gold_label" WHERE "country"='Japan' AND "location"='Fukuoka';
1-26166836-1
How many times is the vessel operator canadian coast guard?
CREATE TABLE "table1_26168687_3" ( "no_in_series" real, "no_in_season" real, "title" text, "vessel_type" text, "vessel_operator" text, "narrated_by" text, "original_air_date" real );
SELECT COUNT("no_in_series") FROM "table1_26168687_3" WHERE "vessel_operator"='Canadian Coast Guard';
1-26168687-3
What is the vessel type for vessel operator Jumbo shipping?
CREATE TABLE "table1_26168687_3" ( "no_in_series" real, "no_in_season" real, "title" text, "vessel_type" text, "vessel_operator" text, "narrated_by" text, "original_air_date" real );
SELECT "vessel_type" FROM "table1_26168687_3" WHERE "vessel_operator"='Jumbo Shipping';
1-26168687-3
Who narrated when the vessel operator is de beers?
CREATE TABLE "table1_26168687_3" ( "no_in_series" real, "no_in_season" real, "title" text, "vessel_type" text, "vessel_operator" text, "narrated_by" text, "original_air_date" real );
SELECT "narrated_by" FROM "table1_26168687_3" WHERE "vessel_operator"='De Beers';
1-26168687-3
How many episodes had the production code 66210?
CREATE TABLE "table1_2618061_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT COUNT("no_in_series") FROM "table1_2618061_1" WHERE "production_code"=66210;
1-2618061-1
What was the original air date of "kiss the girls and make them die"?
CREATE TABLE "table1_2618061_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "original_air_date" FROM "table1_2618061_1" WHERE "title"='\"Kiss the Girls and Make Them Die\"';
1-2618061-1
How many episodes were directed by james quinn?
CREATE TABLE "table1_2618061_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT COUNT("written_by") FROM "table1_2618061_1" WHERE "directed_by"='James Quinn';
1-2618061-1
What is the title of the episode written by daniel sackheim?
CREATE TABLE "table1_2618061_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "title" FROM "table1_2618061_1" WHERE "directed_by"='Daniel Sackheim';
1-2618061-1
What is the lowest brup when long is 94?
CREATE TABLE "table1_26176081_29" ( "name" text, "gp" real, "solo" real, "ast" real, "total" real, "tfl_yds" text, "no_yds" text, "br_up" real, "no_yds" text, "avg" text, "td" real, "long" real, "rcv_yds" text, "ff" real, "blkd_kick" real );
SELECT MIN("br_up") FROM "table1_26176081_29" WHERE "long"=94;
1-26176081-29
What is the lowest gp?
CREATE TABLE "table1_26176081_29" ( "name" text, "gp" real, "solo" real, "ast" real, "total" real, "tfl_yds" text, "no_yds" text, "br_up" real, "no_yds" text, "avg" text, "td" real, "long" real, "rcv_yds" text, "ff" real, "blkd_kick" real );
SELECT MIN("gp") FROM "table1_26176081_29";
1-26176081-29
What is the highest ff when solo is 56?
CREATE TABLE "table1_26176081_29" ( "name" text, "gp" real, "solo" real, "ast" real, "total" real, "tfl_yds" text, "no_yds" text, "br_up" real, "no_yds" text, "avg" text, "td" real, "long" real, "rcv_yds" text, "ff" real, "blkd_kick" real );
SELECT MAX("ff") FROM "table1_26176081_29" WHERE "solo"=56;
1-26176081-29
What is the name when tfl-yds is 2-2?
CREATE TABLE "table1_26176081_29" ( "name" text, "gp" real, "solo" real, "ast" real, "total" real, "tfl_yds" text, "no_yds" text, "br_up" real, "no_yds" text, "avg" text, "td" real, "long" real, "rcv_yds" text, "ff" real, "blkd_kick" real );
SELECT "name" FROM "table1_26176081_29" WHERE "tfl_yds"='2-2';
1-26176081-29
What is no-yds when no.-yds is 1-13?
CREATE TABLE "table1_26176081_29" ( "name" text, "gp" real, "solo" real, "ast" real, "total" real, "tfl_yds" text, "no_yds" text, "br_up" real, "no_yds" text, "avg" text, "td" real, "long" real, "rcv_yds" text, "ff" real, "blkd_kick" real );
SELECT "no_yds" FROM "table1_26176081_29" WHERE "no_yds"='1-13';
1-26176081-29
what are the maximum f/laps?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT MAX("f_laps") FROM "career_summary";
1-26178824-1
how many wins had series formula renault 2.0 nec and the position is 18th?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT "wins" FROM "career_summary" WHERE "series"='Formula Renault 2.0 NEC' AND "position"='18th';
1-26178824-1
what are the minimum poles?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT MIN("poles") FROM "career_summary";
1-26178824-1
When was the original air date written by michael s. chernuchin & joe morgenstern?
CREATE TABLE "table1_2618072_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "original_air_date" FROM "table1_2618072_1" WHERE "written_by"='Michael S. Chernuchin & Joe Morgenstern';
1-2618072-1
Who is the written by when the title is "his hour upon the stage"?
CREATE TABLE "table1_2618072_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "written_by" FROM "table1_2618072_1" WHERE "title"='\"His Hour Upon the Stage\"';
1-2618072-1
Who is the directed by when the production code is 67425?
CREATE TABLE "table1_2618072_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "directed_by" FROM "table1_2618072_1" WHERE "production_code"=67425;
1-2618072-1
Who are all writers with original air date of October 23, 1996?
CREATE TABLE "table1_2618119_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "written_by" FROM "table1_2618119_1" WHERE "original_air_date"='October 23, 1996';
1-2618119-1
How many titles have directors of matthew Penn and number in series of 143?
CREATE TABLE "table1_2618119_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT COUNT("title") FROM "table1_2618119_1" WHERE "directed_by"='Matthew Penn' AND "no_in_series"=143;
1-2618119-1
How many numbers in series were for the number in season of 8?
CREATE TABLE "table1_2618119_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT COUNT("no_in_series") FROM "table1_2618119_1" WHERE "no_in_season"=8;
1-2618119-1
Who directed k0122?
CREATE TABLE "table1_2618113_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT "directed_by" FROM "table1_2618113_1" WHERE "production_code"='K0122';
1-2618113-1
Which season had k0104?
CREATE TABLE "table1_2618113_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT MAX("no_in_season") FROM "table1_2618113_1" WHERE "production_code"='K0104';
1-2618113-1
Which season had "angel"?
CREATE TABLE "table1_2618113_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT "no_in_season" FROM "table1_2618113_1" WHERE "title"='\"Angel\"';
1-2618113-1
What was the airdate of k0120?
CREATE TABLE "table1_2618113_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT "original_air_date" FROM "table1_2618113_1" WHERE "production_code"='K0120';
1-2618113-1
What are the original air date(s) for "gunplay"?
CREATE TABLE "table1_2618251_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_millions" text );
SELECT "original_air_date" FROM "table1_2618251_1" WHERE "title"='\"Gunplay\"';
1-2618251-1
Who directed the episode "dining out"?
CREATE TABLE "table1_2618251_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_millions" text );
SELECT "directed_by" FROM "table1_2618251_1" WHERE "title"='\"Dining Out\"';
1-2618251-1
What is the institution with the nickname seahawks?
CREATE TABLE "current_members" ( "institution" text, "location" text, "founded" real, "type" text, "enrollment" real, "nickname" text, "joined" text, "primary_conference" text, "colors" text );
SELECT "institution" FROM "current_members" WHERE "nickname"='Seahawks';
1-261927-1
What is the colors for the nickname engineers?
CREATE TABLE "current_members" ( "institution" text, "location" text, "founded" real, "type" text, "enrollment" real, "nickname" text, "joined" text, "primary_conference" text, "colors" text );
SELECT "colors" FROM "current_members" WHERE "nickname"='Engineers';
1-261927-1
How many have the colors blue & gold?
CREATE TABLE "current_members" ( "institution" text, "location" text, "founded" real, "type" text, "enrollment" real, "nickname" text, "joined" text, "primary_conference" text, "colors" text );
SELECT COUNT("institution") FROM "current_members" WHERE "colors"='Blue & Gold';
1-261927-1
What is the institution with the nickname engineers?
CREATE TABLE "current_members" ( "institution" text, "location" text, "founded" real, "type" text, "enrollment" real, "nickname" text, "joined" text, "primary_conference" text, "colors" text );
SELECT "institution" FROM "current_members" WHERE "nickname"='Engineers';
1-261927-1
What is the enrollment for the colors green & black?
CREATE TABLE "current_members" ( "institution" text, "location" text, "founded" real, "type" text, "enrollment" real, "nickname" text, "joined" text, "primary_conference" text, "colors" text );
SELECT "enrollment" FROM "current_members" WHERE "colors"='Green & Black';
1-261927-1
What institution(s) are located in wilkes-barre, pennsylvania?
CREATE TABLE "freedom_conference" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined_mac" real );
SELECT "institution" FROM "freedom_conference" WHERE "location"='Wilkes-Barre, Pennsylvania';
1-261906-2
What is the highest enrollment schools that joined the mac in 1997?
CREATE TABLE "freedom_conference" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined_mac" real );
SELECT MAX("enrollment") FROM "freedom_conference" WHERE "joined_mac"=1997;
1-261906-2
What is the enrollment at delaware valley college?
CREATE TABLE "freedom_conference" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined_mac" real );
SELECT MAX("joined_mac") FROM "freedom_conference" WHERE "institution"='Delaware Valley College';
1-261906-2
What year did the the school with the nickname eagles join the mac?
CREATE TABLE "freedom_conference" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined_mac" real );
SELECT MIN("joined_mac") FROM "freedom_conference" WHERE "nickname"='Eagles';
1-261906-2
Which institution's nickname is the Bobcats?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "founding_religious_affiliation" text, "enrollment" real, "joined" real );
SELECT "institution" FROM "current_members" WHERE "nickname"='Bobcats';
1-261931-2
What is the enrollment at the institution in New London, Connecticut?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "founding_religious_affiliation" text, "enrollment" real, "joined" real );
SELECT "enrollment" FROM "current_members" WHERE "location"='New London, Connecticut';
1-261931-2
When did the institution located in Lewiston, Maine join the conference?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "founding_religious_affiliation" text, "enrollment" real, "joined" real );
SELECT "joined" FROM "current_members" WHERE "location"='Lewiston, Maine';
1-261931-2
Which institution's nickname is the Polar Bears?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "founding_religious_affiliation" text, "enrollment" real, "joined" real );
SELECT "institution" FROM "current_members" WHERE "nickname"='Polar Bears';
1-261931-2
What is the nickname of Linfield College?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined" text );
SELECT "nickname" FROM "current_members" WHERE "institution"='Linfield College';
1-261941-1
When was the private/baptist school founded?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined" text );
SELECT "founded" FROM "current_members" WHERE "type"='Private/Baptist';
1-261941-1
How many different items appear in the enrollment column that joined in 1931, 1949 1?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined" text );
SELECT COUNT("enrollment") FROM "current_members" WHERE "joined"='1931, 1949 1';
1-261941-1
What is the location of the University that joined in 1926, 1996 2?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined" text );
SELECT "location" FROM "current_members" WHERE "joined"='1926, 1996 2';
1-261941-1
When was the earliest founded university?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined" text );
SELECT MIN("founded") FROM "current_members";
1-261941-1
What was the team standing if the won 130 goals against another team?
CREATE TABLE "regular_season" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "goals_for" real, "goals_against" real, "standing" text );
SELECT "standing" FROM "regular_season" WHERE "goals_against"=130;
1-2619469-1
What is every type for the location of Roanoke, Virginia?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "football" text, "joined" real );
SELECT "type" FROM "current_members" WHERE "location"='Roanoke, Virginia';
1-261954-1
How many values for joined occur at Guilford College?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "football" text, "joined" real );
SELECT COUNT("joined") FROM "current_members" WHERE "institution"='Guilford College';
1-261954-1
What is every institution with the nickname of Quakers?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "football" text, "joined" real );
SELECT "institution" FROM "current_members" WHERE "nickname"='Quakers';
1-261954-1
What is every entry for football when enrollment is 998?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "football" text, "joined" real );
SELECT "football" FROM "current_members" WHERE "enrollment"=998;
1-261954-1
What is the least value of joined?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "football" text, "joined" real );
SELECT MIN("joined") FROM "current_members";
1-261954-1
What is every institution with the nickname of Wildcats?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "football" text, "joined" real );
SELECT "institution" FROM "current_members" WHERE "nickname"='WildCats';
1-261954-1
What is the title of the episode with production code 2alf03?
CREATE TABLE "table1_26199130_1" ( "no" real, "num" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_million" text, "rank_week" text, "original_air_date" text, "production_code" text );
SELECT "title" FROM "table1_26199130_1" WHERE "production_code"='2ALF03';
1-26199130-1
What was the rank (week) for episode number 34?
CREATE TABLE "table1_26199130_1" ( "no" real, "num" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_million" text, "rank_week" text, "original_air_date" text, "production_code" text );
SELECT "rank_week" FROM "table1_26199130_1" WHERE "no"=34;
1-26199130-1
What numbered episode had 11.96 million US viewers?
CREATE TABLE "table1_26199130_1" ( "no" real, "num" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_million" text, "rank_week" text, "original_air_date" text, "production_code" text );
SELECT MAX("no") FROM "table1_26199130_1" WHERE "u_s_viewers_million"='11.96';
1-26199130-1
How many episode numbers were directed by Steven DePaul and titled "Sudden Flight"?
CREATE TABLE "table1_26200084_1" ( "no" real, "num" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_million" text, "rank_week" text, "original_air_date" text, "production_code" text );
SELECT COUNT("num") FROM "table1_26200084_1" WHERE "directed_by"='Steven DePaul' AND "title"='\"Sudden Flight\"';
1-26200084-1
What was the ranking of episode #19?
CREATE TABLE "table1_26200084_1" ( "no" real, "num" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_million" text, "rank_week" text, "original_air_date" text, "production_code" text );
SELECT "rank_week" FROM "table1_26200084_1" WHERE "num"=19;
1-26200084-1
What was the production code of the episode ranked 28?
CREATE TABLE "table1_26200084_1" ( "no" real, "num" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_million" text, "rank_week" text, "original_air_date" text, "production_code" text );
SELECT "production_code" FROM "table1_26200084_1" WHERE "rank_week"='28';
1-26200084-1
What was the title of the episode directed by David Mamet?
CREATE TABLE "table1_26200084_1" ( "no" real, "num" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_million" text, "rank_week" text, "original_air_date" text, "production_code" text );
SELECT "title" FROM "table1_26200084_1" WHERE "directed_by"='David Mamet';
1-26200084-1
What is the production code for the episode that had 18.07 million viewers?
CREATE TABLE "table1_26198709_1" ( "no" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_million" text, "rank_week" real, "original_air_date" text, "production_code" text );
SELECT "production_code" FROM "table1_26198709_1" WHERE "u_s_viewers_million"='18.07';
1-26198709-1
What is the weeks rank for the episode with the production code 1alf05?
CREATE TABLE "table1_26198709_1" ( "no" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_million" text, "rank_week" real, "original_air_date" text, "production_code" text );
SELECT MAX("rank_week") FROM "table1_26198709_1" WHERE "production_code"='1ALF05';
1-26198709-1
How many air dates does the episode with 15.50 million viewers have?
CREATE TABLE "table1_26198709_1" ( "no" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_million" text, "rank_week" real, "original_air_date" text, "production_code" text );
SELECT COUNT("original_air_date") FROM "table1_26198709_1" WHERE "u_s_viewers_million"='15.50';
1-26198709-1
Who wrote the episode with 18.07 million viewers?
CREATE TABLE "table1_26198709_1" ( "no" real, "title" text, "directed_by" text, "written_by" text, "u_s_viewers_million" text, "rank_week" real, "original_air_date" text, "production_code" text );
SELECT "written_by" FROM "table1_26198709_1" WHERE "u_s_viewers_million"='18.07';
1-26198709-1
How many points were scored against the Toronto Rebels?
CREATE TABLE "standings" ( "club" text, "wins" real, "losses" real, "points_for" real, "points_against" real, "percentage" text, "points" real );
SELECT MAX("points_against") FROM "standings" WHERE "club"='Toronto Rebels';
1-26200568-16
How many points did the Toronto Downtown Dingos score?
CREATE TABLE "standings" ( "club" text, "wins" real, "losses" real, "points_for" real, "points_against" real, "percentage" text, "points" real );
SELECT MIN("points_for") FROM "standings" WHERE "club"='Toronto Downtown Dingos';
1-26200568-16
How many losses does Toronto Downtown Dingos have?
CREATE TABLE "standings" ( "club" text, "wins" real, "losses" real, "points_for" real, "points_against" real, "percentage" text, "points" real );
SELECT "losses" FROM "standings" WHERE "club"='Toronto Downtown Dingos';
1-26200568-16
What is the percentage listed for the team who scored 63 points?
CREATE TABLE "standings" ( "club" text, "wins" real, "losses" real, "points_for" real, "points_against" real, "percentage" text, "points" real );
SELECT "percentage" FROM "standings" WHERE "points_for"=63;
1-26200568-16
How many losses does Central Blues have?
CREATE TABLE "standings" ( "club" text, "wins" real, "losses" real, "points_for" real, "points_against" real, "percentage" text, "points" real );
SELECT MAX("losses") FROM "standings" WHERE "club"='Central Blues';
1-26200568-16
if the estimated exposure ( mrem )/hr* is 0.28, what is the specimen weight/size?
CREATE TABLE "notes" ( "specimen_weight_size" text, "calculated_activity_bq" real, "calculated_activity_ci" text, "estimated_activity_gr_api" text, "estimated_exposure_m_rem_hr" text );
SELECT COUNT("specimen_weight_size") FROM "notes" WHERE "estimated_exposure_m_rem_hr"='0.28';
1-26211058-1
If the specimen weight /size is 1000 g / 8.79 cm, what is the estimated exposure ( mrem )/hr*?
CREATE TABLE "notes" ( "specimen_weight_size" text, "calculated_activity_bq" real, "calculated_activity_ci" text, "estimated_activity_gr_api" text, "estimated_exposure_m_rem_hr" text );
SELECT "estimated_exposure_m_rem_hr" FROM "notes" WHERE "specimen_weight_size"='1000 g / 8.79 cm';
1-26211058-1
If the calculated activity (CI) is 4.96×10 −11, what is the specimen weight/size?
CREATE TABLE "notes" ( "specimen_weight_size" text, "calculated_activity_bq" real, "calculated_activity_ci" text, "estimated_activity_gr_api" text, "estimated_exposure_m_rem_hr" text );
SELECT "specimen_weight_size" FROM "notes" WHERE "calculated_activity_ci"='4.96×10 −11';
1-26211058-1