question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
If the vehicle category is multi-axle vehicle, what is the till aligarh?
CREATE TABLE "toll_rates" ( "vehicle_category" text, "till_aligarh" real, "till_mathura" real, "till_agra" real, "for_round_trip" real );
SELECT MIN("till_aligarh") FROM "toll_rates" WHERE "vehicle_category"='Multi-axle Vehicle';
1-19787093-1
What's the lowest number of a game where S. Johnson (3) did the most high assists?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT MIN("game") FROM "regular_season" WHERE "high_assists"='S. Johnson (3)';
1-19789597-6
Who was the game on July 12 played against?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT "opponent" FROM "regular_season" WHERE "date"='July 12';
1-19789597-6
What was the record in the game where McWilliams (8) did the most high rebounds?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT "record" FROM "regular_season" WHERE "high_rebounds"='McWilliams (8)';
1-19789597-6
Who was the game on July 7 played against?
CREATE TABLE "regular_season" ( "game" real, "date" text, "opponent" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location" text, "record" text );
SELECT "opponent" FROM "regular_season" WHERE "date"='July 7';
1-19789597-6
what is the owner of the callsign wliw
CREATE TABLE "table1_1979203_1" ( "virtual" text, "callsign" text, "affiliation" text, "branding" text, "channel" text, "programming" text, "owner" text );
SELECT "owner" FROM "table1_1979203_1" WHERE "callsign"='WLIW';
1-1979203-1
how many callsigns are for the branding telemundo 47
CREATE TABLE "table1_1979203_1" ( "virtual" text, "callsign" text, "affiliation" text, "branding" text, "channel" text, "programming" text, "owner" text );
SELECT COUNT("callsign") FROM "table1_1979203_1" WHERE "branding"='Telemundo 47';
1-1979203-1
what is the virtual callsign if is wnet
CREATE TABLE "table1_1979203_1" ( "virtual" text, "callsign" text, "affiliation" text, "branding" text, "channel" text, "programming" text, "owner" text );
SELECT "virtual" FROM "table1_1979203_1" WHERE "callsign"='WNET';
1-1979203-1
what is the name of the branding where the virtual is 13.1
CREATE TABLE "table1_1979203_1" ( "virtual" text, "callsign" text, "affiliation" text, "branding" text, "channel" text, "programming" text, "owner" text );
SELECT "branding" FROM "table1_1979203_1" WHERE "virtual"='13.1';
1-1979203-1
Name the district for newtown square
CREATE TABLE "list" ( "district" real, "representative" text, "party" text, "residence" text, "counties_represented" text, "term_ends" real, "first_elected" real );
SELECT MIN("district") FROM "list" WHERE "residence"='Newtown Square';
1-1979619-3
Name the party for bensalem
CREATE TABLE "list" ( "district" real, "representative" text, "party" text, "residence" text, "counties_represented" text, "term_ends" real, "first_elected" real );
SELECT "party" FROM "list" WHERE "residence"='Bensalem';
1-1979619-3
Name the term ends for bethlehem
CREATE TABLE "list" ( "district" real, "representative" text, "party" text, "residence" text, "counties_represented" text, "term_ends" real, "first_elected" real );
SELECT COUNT("term_ends") FROM "list" WHERE "residence"='Bethlehem';
1-1979619-3
Name the total number of districts for rob teplitz
CREATE TABLE "list" ( "district" real, "representative" text, "party" text, "residence" text, "counties_represented" text, "term_ends" real, "first_elected" real );
SELECT COUNT("district") FROM "list" WHERE "representative"='Rob Teplitz';
1-1979619-3
What was the result for the contestant whose background was as a business major?
CREATE TABLE "contestants" ( "contestant" text, "background" text, "original_team" text, "age" real, "hometown" text, "result" text );
SELECT "result" FROM "contestants" WHERE "background"='Business major';
1-19810459-1
What was the background of the contestant whose result was 11th place?
CREATE TABLE "contestants" ( "contestant" text, "background" text, "original_team" text, "age" real, "hometown" text, "result" text );
SELECT "background" FROM "contestants" WHERE "result"='11th place';
1-19810459-1
For how many contestants was the background internet dreamer?
CREATE TABLE "contestants" ( "contestant" text, "background" text, "original_team" text, "age" real, "hometown" text, "result" text );
SELECT COUNT("contestant") FROM "contestants" WHERE "background"='Internet dreamer';
1-19810459-1
What was the result for the contestant who was a small business owner?
CREATE TABLE "contestants" ( "contestant" text, "background" text, "original_team" text, "age" real, "hometown" text, "result" text );
SELECT "result" FROM "contestants" WHERE "background"='Small business owner';
1-19810459-1
What team was the contestant who finished in 10th place originally on?
CREATE TABLE "contestants" ( "contestant" text, "background" text, "original_team" text, "age" real, "hometown" text, "result" text );
SELECT "original_team" FROM "contestants" WHERE "result"='10th place';
1-19810459-1
What is the hometown of the contestant whose background is as a financial consultant?
CREATE TABLE "contestants" ( "contestant" text, "background" text, "original_team" text, "age" real, "hometown" text, "result" text );
SELECT "hometown" FROM "contestants" WHERE "background"='Financial consultant';
1-19810459-1
If the rating/share is 3.8/10, what is the total number of rating?
CREATE TABLE "season_1" ( "num" real, "episode" text, "rating" text, "share" real, "rating_share_18_49" text, "viewers_millions" text, "rank_night" text );
SELECT COUNT("rating") FROM "season_1" WHERE "rating_share_18_49"='3.8/10';
1-19805130-3
If the night rank is 9, what is the total share number?
CREATE TABLE "season_1" ( "num" real, "episode" text, "rating" text, "share" real, "rating_share_18_49" text, "viewers_millions" text, "rank_night" text );
SELECT COUNT("share") FROM "season_1" WHERE "rank_night"='9';
1-19805130-3
What is the name of the episode with a night rank of 9?
CREATE TABLE "season_1" ( "num" real, "episode" text, "rating" text, "share" real, "rating_share_18_49" text, "viewers_millions" text, "rank_night" text );
SELECT "episode" FROM "season_1" WHERE "rank_night"='9';
1-19805130-3
If the amount of viewers is 5.14 million and the rating/share is 2.0/6, what is the ranking?
CREATE TABLE "season_1" ( "num" real, "episode" text, "rating" text, "share" real, "rating_share_18_49" text, "viewers_millions" text, "rank_night" text );
SELECT "rating" FROM "season_1" WHERE "rating_share_18_49"='2.0/6' AND "viewers_millions"='5.14';
1-19805130-3
For cities with a census of 74000 in 1920, what was their census in 1890?
CREATE TABLE "urban_population_in_overseas_territories" ( "rank" real, "city" text, "1890_census" text, "1910_census" real, "1920_census" real, "1930_census" real, "1940_census" real );
SELECT "1890_census" FROM "urban_population_in_overseas_territories" WHERE "1920_census"=74000;
1-1980653-5
For cities with a census of 296000 in 1940, what was their census in 1920?
CREATE TABLE "urban_population_in_overseas_territories" ( "rank" real, "city" text, "1890_census" text, "1910_census" real, "1920_census" real, "1930_census" real, "1940_census" real );
SELECT "1920_census" FROM "urban_population_in_overseas_territories" WHERE "1940_census"=296000;
1-1980653-5
How many cities had a census of 400000 in 1940?
CREATE TABLE "urban_population_in_overseas_territories" ( "rank" real, "city" text, "1890_census" text, "1910_census" real, "1920_census" real, "1930_census" real, "1940_census" real );
SELECT COUNT("rank") FROM "urban_population_in_overseas_territories" WHERE "1940_census"=400000;
1-1980653-5
Name the season number for "the night of the feathered fury"
CREATE TABLE "table1_19852975_3" ( "series_num" real, "season_num" real, "title" text, "director_s" text, "writer_s" text, "airdate" text, "production_code" real, "arties_disguises" text );
SELECT COUNT("season_num") FROM "table1_19852975_3" WHERE "title"='\"The Night of the Feathered Fury\"';
1-19852975-3
Name the writers for swedish sailor
CREATE TABLE "table1_19852975_3" ( "series_num" real, "season_num" real, "title" text, "director_s" text, "writer_s" text, "airdate" text, "production_code" real, "arties_disguises" text );
SELECT "writer_s" FROM "table1_19852975_3" WHERE "arties_disguises"='Swedish sailor';
1-19852975-3
Name the series number for "the night of the flying pie plate"
CREATE TABLE "table1_19852975_3" ( "series_num" real, "season_num" real, "title" text, "director_s" text, "writer_s" text, "airdate" text, "production_code" real, "arties_disguises" text );
SELECT MAX("series_num") FROM "table1_19852975_3" WHERE "title"='\"The Night of the Flying Pie Plate\"';
1-19852975-3
Name the season number for herr ostropolyer, pastry chef
CREATE TABLE "table1_19852975_3" ( "series_num" real, "season_num" real, "title" text, "director_s" text, "writer_s" text, "airdate" text, "production_code" real, "arties_disguises" text );
SELECT MIN("season_num") FROM "table1_19852975_3" WHERE "arties_disguises"='Herr Ostropolyer, pastry chef';
1-19852975-3
Name the principal of Northfield Junior-Senior High School.
CREATE TABLE "list_of_high_schools_in_indiana" ( "school" text, "city_town" text, "website" text, "size" real, "principal" text, "grades" text, "idoe_profile" text );
SELECT "principal" FROM "list_of_high_schools_in_indiana" WHERE "school"='Northfield Junior-Senior High School';
1-1984697-85
What is the name of the school/s in North Manchester?
CREATE TABLE "list_of_high_schools_in_indiana" ( "school" text, "city_town" text, "website" text, "size" real, "principal" text, "grades" text, "idoe_profile" text );
SELECT "school" FROM "list_of_high_schools_in_indiana" WHERE "city_town"='North Manchester';
1-1984697-85
Name the school/s with is size of 604.
CREATE TABLE "list_of_high_schools_in_indiana" ( "school" text, "city_town" text, "website" text, "size" real, "principal" text, "grades" text, "idoe_profile" text );
SELECT "school" FROM "list_of_high_schools_in_indiana" WHERE "size"=604;
1-1984697-85
What is the IDOE Profile in North Manchester?
CREATE TABLE "list_of_high_schools_in_indiana" ( "school" text, "city_town" text, "website" text, "size" real, "principal" text, "grades" text, "idoe_profile" text );
SELECT "idoe_profile" FROM "list_of_high_schools_in_indiana" WHERE "city_town"='North Manchester';
1-1984697-85
What are the grades served at Manchester Junior-Senior High School?
CREATE TABLE "list_of_high_schools_in_indiana" ( "school" text, "city_town" text, "website" text, "size" real, "principal" text, "grades" text, "idoe_profile" text );
SELECT "grades" FROM "list_of_high_schools_in_indiana" WHERE "school"='Manchester Junior-Senior High School';
1-1984697-85
Writer Max Ehrlich, what is the minimum series number?
CREATE TABLE "table1_19852975_4" ( "series_num" real, "season_num" real, "title" text, "director_s" text, "writer_s" text, "airdate" text, "production_code" real, "arties_disguises" text );
SELECT MIN("series_num") FROM "table1_19852975_4" WHERE "writer_s"='Max Ehrlich';
1-19852975-4
From writer Denne Bart Petitclerc, what is the maximum season number?
CREATE TABLE "table1_19852975_4" ( "series_num" real, "season_num" real, "title" text, "director_s" text, "writer_s" text, "airdate" text, "production_code" real, "arties_disguises" text );
SELECT MAX("season_num") FROM "table1_19852975_4" WHERE "writer_s"='Denne Bart Petitclerc';
1-19852975-4
From writer Max Ehrlich, what is the total amount of series numbers?
CREATE TABLE "table1_19852975_4" ( "series_num" real, "season_num" real, "title" text, "director_s" text, "writer_s" text, "airdate" text, "production_code" real, "arties_disguises" text );
SELECT COUNT("series_num") FROM "table1_19852975_4" WHERE "writer_s"='Max Ehrlich';
1-19852975-4
Who is the winning driver when rd. is 3?
CREATE TABLE "race_results" ( "rd" text, "race" text, "pole_position" text, "fastest_lap" text, "most_laps_led" text, "winning_driver" text, "winning_team" text, "report" text );
SELECT "winning_driver" FROM "race_results" WHERE "rd"='3';
1-19850806-3
How many winning drivers are there when the winning team is Bryan herta autosport?
CREATE TABLE "race_results" ( "rd" text, "race" text, "pole_position" text, "fastest_lap" text, "most_laps_led" text, "winning_driver" text, "winning_team" text, "report" text );
SELECT COUNT("winning_driver") FROM "race_results" WHERE "winning_team"='Bryan Herta Autosport';
1-19850806-3
Which report is where rd. is 9?
CREATE TABLE "race_results" ( "rd" text, "race" text, "pole_position" text, "fastest_lap" text, "most_laps_led" text, "winning_driver" text, "winning_team" text, "report" text );
SELECT "report" FROM "race_results" WHERE "rd"='9';
1-19850806-3
Who held the fastest lap in the race in texas and dario franchitti is the winning driver?
CREATE TABLE "race_results" ( "rd" text, "race" text, "pole_position" text, "fastest_lap" text, "most_laps_led" text, "winning_driver" text, "winning_team" text, "report" text );
SELECT "fastest_lap" FROM "race_results" WHERE "race"='Texas' AND "winning_driver"='Dario Franchitti';
1-19850806-3
What is top ep number for "missile bound cat"?
CREATE TABLE "season_3_1960" ( "n" real, "ep" real, "huckleberry_hound" text, "pixie_and_dixie" text, "hokey_wolf" text, "air_date" text, "credited_animators" text );
SELECT MAX("ep") FROM "season_3_1960" WHERE "pixie_and_dixie"='\"Missile Bound Cat\"';
1-19860361-4
How many Huckleberry Hound episodes were aired on 1960.09.18?
CREATE TABLE "season_3_1960" ( "n" real, "ep" real, "huckleberry_hound" text, "pixie_and_dixie" text, "hokey_wolf" text, "air_date" text, "credited_animators" text );
SELECT COUNT("huckleberry_hound") FROM "season_3_1960" WHERE "air_date"='1960.09.18';
1-19860361-4
Who animated "Science Friction"
CREATE TABLE "season_3_1960" ( "n" real, "ep" real, "huckleberry_hound" text, "pixie_and_dixie" text, "hokey_wolf" text, "air_date" text, "credited_animators" text );
SELECT "credited_animators" FROM "season_3_1960" WHERE "huckleberry_hound"='\"Science Friction\"';
1-19860361-4
What is the air date of "Rah Rah Bear"?
CREATE TABLE "season_2_1959_60" ( "n" real, "ep" real, "huckleberry_hound" text, "pixie_and_dixie" text, "yogi_bear" text, "air_date" text, "credited_animators" text );
SELECT "air_date" FROM "season_2_1959_60" WHERE "yogi_bear"='\"Rah Rah Bear\"';
1-19860361-3
What episode includes "Cop and Saucer"?
CREATE TABLE "season_2_1959_60" ( "n" real, "ep" real, "huckleberry_hound" text, "pixie_and_dixie" text, "yogi_bear" text, "air_date" text, "credited_animators" text );
SELECT MIN("ep") FROM "season_2_1959_60" WHERE "huckleberry_hound"='\"Cop and Saucer\"';
1-19860361-3
What is the Pixie and Dixie skit in episode 7?
CREATE TABLE "season_2_1959_60" ( "n" real, "ep" real, "huckleberry_hound" text, "pixie_and_dixie" text, "yogi_bear" text, "air_date" text, "credited_animators" text );
SELECT "pixie_and_dixie" FROM "season_2_1959_60" WHERE "ep"=7;
1-19860361-3
What is the Yogi Bear that aired on 1959.12.21?
CREATE TABLE "season_2_1959_60" ( "n" real, "ep" real, "huckleberry_hound" text, "pixie_and_dixie" text, "yogi_bear" text, "air_date" text, "credited_animators" text );
SELECT "yogi_bear" FROM "season_2_1959_60" WHERE "air_date"='1959.12.21';
1-19860361-3
From brand Yes! FM 101.1, what was the frequency?
CREATE TABLE "yes_fm_stations" ( "branding" text, "callsign" text, "frequency" text, "power_k_w" text, "location" text );
SELECT "frequency" FROM "yes_fm_stations" WHERE "branding"='YES! FM 101.1';
1-19874169-3
If the branding is Yes! FM 91.1 Boracay, what is the power?
CREATE TABLE "yes_fm_stations" ( "branding" text, "callsign" text, "frequency" text, "power_k_w" text, "location" text );
SELECT "power_k_w" FROM "yes_fm_stations" WHERE "branding"='YES! FM 91.1 Boracay';
1-19874169-3
If the call sign is DXYR, what is the branding?
CREATE TABLE "yes_fm_stations" ( "branding" text, "callsign" text, "frequency" text, "power_k_w" text, "location" text );
SELECT "branding" FROM "yes_fm_stations" WHERE "callsign"='DXYR';
1-19874169-3
When divisional semifinals are the playoffs what is the year?
CREATE TABLE "year_by_year" ( "year" text, "division" text, "league" text, "regular_season" text, "playoffs" text, "open_cup" text );
SELECT "year" FROM "year_by_year" WHERE "playoffs"='Divisional Semifinals';
1-1986692-1
When divisional finals are the playoffs what is the regular season?
CREATE TABLE "year_by_year" ( "year" text, "division" text, "league" text, "regular_season" text, "playoffs" text, "open_cup" text );
SELECT "regular_season" FROM "year_by_year" WHERE "playoffs"='Divisional Finals';
1-1986692-1
When 1992 is the year how many divisions are there?
CREATE TABLE "year_by_year" ( "year" text, "division" text, "league" text, "regular_season" text, "playoffs" text, "open_cup" text );
SELECT COUNT("division") FROM "year_by_year" WHERE "year"='1992';
1-1986692-1
When final is the open cup what is the league?
CREATE TABLE "year_by_year" ( "year" text, "division" text, "league" text, "regular_season" text, "playoffs" text, "open_cup" text );
SELECT "league" FROM "year_by_year" WHERE "open_cup"='Final';
1-1986692-1
When 1995 is the year what is the open cup?
CREATE TABLE "year_by_year" ( "year" text, "division" text, "league" text, "regular_season" text, "playoffs" text, "open_cup" text );
SELECT "open_cup" FROM "year_by_year" WHERE "year"='1995';
1-1986692-1
When 2008 is the year how many divisions are there?
CREATE TABLE "year_by_year" ( "year" text, "division" text, "league" text, "regular_season" text, "playoffs" text, "open_cup" text );
SELECT COUNT("division") FROM "year_by_year" WHERE "year"='2008';
1-1986692-1
what is the least number of stumps in a game with 13 dismissals
CREATE TABLE "most_dismissals_in_test_career_wicketkee" ( "rank" real, "dismissals" real, "player" text, "caught" real, "stumped" real, "matches" real, "innings" real );
SELECT MIN("stumped") FROM "most_dismissals_in_test_career_wicketkee" WHERE "dismissals"=13;
1-19870086-24
what is the highest number of dismissals in a match with 8 innings
CREATE TABLE "most_dismissals_in_test_career_wicketkee" ( "rank" real, "dismissals" real, "player" text, "caught" real, "stumped" real, "matches" real, "innings" real );
SELECT COUNT("dismissals") FROM "most_dismissals_in_test_career_wicketkee" WHERE "innings"=8;
1-19870086-24
what is the rank of adam gilchrist
CREATE TABLE "most_dismissals_in_test_career_wicketkee" ( "rank" real, "dismissals" real, "player" text, "caught" real, "stumped" real, "matches" real, "innings" real );
SELECT COUNT("rank") FROM "most_dismissals_in_test_career_wicketkee" WHERE "player"='Adam Gilchrist';
1-19870086-24
Where is the ballpark of the Twins?
CREATE TABLE "table1_1987995_5" ( "ballpark" text, "location" text, "team" text, "opened" real, "closed" real, "demod" real, "current_status" text );
SELECT "location" FROM "table1_1987995_5" WHERE "team"='Twins';
1-1987995-5
How many locations have been used for ballparks named Memorial Stadium?
CREATE TABLE "table1_1987995_5" ( "ballpark" text, "location" text, "team" text, "opened" real, "closed" real, "demod" real, "current_status" text );
SELECT COUNT("location") FROM "table1_1987995_5" WHERE "ballpark"='Memorial Stadium';
1-1987995-5
When was the park demolished in 1994 closed?
CREATE TABLE "table1_1987995_5" ( "ballpark" text, "location" text, "team" text, "opened" real, "closed" real, "demod" real, "current_status" text );
SELECT MIN("closed") FROM "table1_1987995_5" WHERE "demod"=1994;
1-1987995-5
Which flag was on the Green Marine's boat?
CREATE TABLE "participants" ( "team_boat_name" text, "sail_no" text, "flag" text, "design_firm" text, "builder" text, "skipper" text );
SELECT "flag" FROM "participants" WHERE "builder"='Green Marine';
1-19872699-1
Who build the boat where Ken Read was the skipper?
CREATE TABLE "participants" ( "team_boat_name" text, "sail_no" text, "flag" text, "design_firm" text, "builder" text, "skipper" text );
SELECT "builder" FROM "participants" WHERE "skipper"='Ken Read';
1-19872699-1
Farr Yacht Design designed boats for how many country/flags?
CREATE TABLE "participants" ( "team_boat_name" text, "sail_no" text, "flag" text, "design_firm" text, "builder" text, "skipper" text );
SELECT COUNT("flag") FROM "participants" WHERE "design_firm"='Farr Yacht Design';
1-19872699-1
Who were the builders of the boat designed by Botin Carkeek?
CREATE TABLE "participants" ( "team_boat_name" text, "sail_no" text, "flag" text, "design_firm" text, "builder" text, "skipper" text );
SELECT "builder" FROM "participants" WHERE "design_firm"='Botin Carkeek';
1-19872699-1
In how many locations was the episode with the Bailey family filmed?
CREATE TABLE "table1_19897294_10" ( "no_in_series" text, "no_in_season" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT COUNT("location_s") FROM "table1_19897294_10" WHERE "family_families"='The Bailey Family';
1-19897294-10
How many episodes with different season numbers had the Jeans family in them?
CREATE TABLE "table1_19897294_10" ( "no_in_series" text, "no_in_season" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT COUNT("no_in_season") FROM "table1_19897294_10" WHERE "family_families"='The Jeans Family';
1-19897294-10
When did the episode with the Ririe family air for the first time?
CREATE TABLE "table1_19897294_10" ( "no_in_series" text, "no_in_season" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT "original_air_date" FROM "table1_19897294_10" WHERE "family_families"='The Ririe Family';
1-19897294-10
Where was the episode with series number US9 filmed?
CREATE TABLE "table1_19897294_10" ( "no_in_series" text, "no_in_season" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT "location_s" FROM "table1_19897294_10" WHERE "no_in_series"='US9';
1-19897294-10
What's the season number of the episode with series number US6?
CREATE TABLE "table1_19897294_10" ( "no_in_series" text, "no_in_season" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT MIN("no_in_season") FROM "table1_19897294_10" WHERE "no_in_series"='US6';
1-19897294-10
What family was featured in episode us14 of the series?
CREATE TABLE "table1_19897294_11" ( "no_in_series" text, "no_in_season" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT "family_families" FROM "table1_19897294_11" WHERE "no_in_series"='US14';
1-19897294-11
How many locations featured the Webb Family?
CREATE TABLE "table1_19897294_11" ( "no_in_series" text, "no_in_season" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT COUNT("location_s") FROM "table1_19897294_11" WHERE "family_families"='The Webb Family';
1-19897294-11
What episode in the season was episode us17 in the series?
CREATE TABLE "table1_19897294_11" ( "no_in_series" text, "no_in_season" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT COUNT("no_in_season") FROM "table1_19897294_11" WHERE "no_in_series"='US17';
1-19897294-11
What episode in the season was episode us18 in the series?
CREATE TABLE "table1_19897294_11" ( "no_in_series" text, "no_in_season" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT COUNT("no_in_season") FROM "table1_19897294_11" WHERE "no_in_series"='US18';
1-19897294-11
What episode in the series was the Amaral family featured?
CREATE TABLE "table1_19897294_11" ( "no_in_series" text, "no_in_season" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT "no_in_series" FROM "table1_19897294_11" WHERE "family_families"='The Amaral Family';
1-19897294-11
Who is the round winner when entrant is craven mild racing?
CREATE TABLE "calendar" ( "rd" real, "circuit" text, "city_state" text, "date" text, "format" text, "round_winner" text, "car" text, "entrant" text );
SELECT "round_winner" FROM "calendar" WHERE "entrant"='Craven Mild Racing';
1-19886463-1
Who is the round winner of the wanneroo park circuit?
CREATE TABLE "calendar" ( "rd" real, "circuit" text, "city_state" text, "date" text, "format" text, "round_winner" text, "car" text, "entrant" text );
SELECT "round_winner" FROM "calendar" WHERE "circuit"='Wanneroo Park';
1-19886463-1
Which circuit has two heats as the format?
CREATE TABLE "calendar" ( "rd" real, "circuit" text, "city_state" text, "date" text, "format" text, "round_winner" text, "car" text, "entrant" text );
SELECT "circuit" FROM "calendar" WHERE "format"='Two heats';
1-19886463-1
Name the original air date for the potter family
CREATE TABLE "table1_19897294_16" ( "no_in_series" text, "no_in_season" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT "original_air_date" FROM "table1_19897294_16" WHERE "family_families"='The Potter Family';
1-19897294-16
how many original air date where family/families is the ryder family and the schwartz family
CREATE TABLE "table1_19897294_9" ( "no_overall" text, "no_in_series" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT COUNT("original_air_date") FROM "table1_19897294_9" WHERE "family_families"='The Ryder Family and The Schwartz Family';
1-19897294-9
where was the abbas family and the pickering family located
CREATE TABLE "table1_19897294_9" ( "no_overall" text, "no_in_series" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT "location_s" FROM "table1_19897294_9" WHERE "family_families"='The Abbas Family and The Pickering Family';
1-19897294-9
in which class is the position forward
CREATE TABLE "state_farm_junior_college_player_of_the_" ( "season" text, "player" text, "junior_college" text, "state" text, "position" text, "class" text, "university" text );
SELECT "class" FROM "state_farm_junior_college_player_of_the_" WHERE "position"='Forward';
1-19897896-7
in which season the position was center
CREATE TABLE "state_farm_junior_college_player_of_the_" ( "season" text, "player" text, "junior_college" text, "state" text, "position" text, "class" text, "university" text );
SELECT "season" FROM "state_farm_junior_college_player_of_the_" WHERE "position"='Center';
1-19897896-7
in which class was the ohio state university
CREATE TABLE "state_farm_junior_college_player_of_the_" ( "season" text, "player" text, "junior_college" text, "state" text, "position" text, "class" text, "university" text );
SELECT "class" FROM "state_farm_junior_college_player_of_the_" WHERE "university"='Ohio State';
1-19897896-7
Name the number of families for uk30
CREATE TABLE "table1_19897294_8" ( "no_overall" text, "no_in_series" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT COUNT("family_families") FROM "table1_19897294_8" WHERE "no_overall"='UK30';
1-19897294-8
Name the number in series for in the ward family and the wren family
CREATE TABLE "table1_19897294_8" ( "no_overall" text, "no_in_series" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT MAX("no_in_series") FROM "table1_19897294_8" WHERE "family_families"='The Ward Family and The Wren Family';
1-19897294-8
Name the family for uk31
CREATE TABLE "table1_19897294_8" ( "no_overall" text, "no_in_series" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT "family_families" FROM "table1_19897294_8" WHERE "no_overall"='UK31';
1-19897294-8
Name the least number in series
CREATE TABLE "table1_19897294_8" ( "no_overall" text, "no_in_series" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT MIN("no_in_series") FROM "table1_19897294_8";
1-19897294-8
Name the number of locations for uk32
CREATE TABLE "table1_19897294_8" ( "no_overall" text, "no_in_series" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT COUNT("location_s") FROM "table1_19897294_8" WHERE "no_overall"='UK32';
1-19897294-8
Name the air date for uk17
CREATE TABLE "table1_19897294_5" ( "no_overall" text, "no_in_series" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT "original_air_date" FROM "table1_19897294_5" WHERE "no_overall"='UK17';
1-19897294-5
Name the family/families uk17
CREATE TABLE "table1_19897294_5" ( "no_overall" text, "no_in_series" real, "family_families" text, "location_s" text, "original_air_date" text );
SELECT "family_families" FROM "table1_19897294_5" WHERE "no_overall"='UK17';
1-19897294-5
What is the number of the truck that has the crew chief Billy Wilburn?
CREATE TABLE "drivers_teams" ( "team" text, "truck_s" text, "num" real, "driver_s" text, "primary_sponsor_s" text, "listed_owner_s" text, "crew_chief" text );
SELECT MAX("num") FROM "drivers_teams" WHERE "crew_chief"='Billy Wilburn';
1-19908313-2
What number truck is owned by Stephen Germain?
CREATE TABLE "drivers_teams" ( "team" text, "truck_s" text, "num" real, "driver_s" text, "primary_sponsor_s" text, "listed_owner_s" text, "crew_chief" text );
SELECT "num" FROM "drivers_teams" WHERE "listed_owner_s"='Stephen Germain';
1-19908313-2
What team is sponsored by d3 Outdoors?
CREATE TABLE "drivers_teams" ( "team" text, "truck_s" text, "num" real, "driver_s" text, "primary_sponsor_s" text, "listed_owner_s" text, "crew_chief" text );
SELECT "team" FROM "drivers_teams" WHERE "primary_sponsor_s"='D3 Outdoors';
1-19908313-2
How many teams does Jeff Wyler own?
CREATE TABLE "drivers_teams" ( "team" text, "truck_s" text, "num" real, "driver_s" text, "primary_sponsor_s" text, "listed_owner_s" text, "crew_chief" text );
SELECT COUNT("team") FROM "drivers_teams" WHERE "listed_owner_s"='Jeff Wyler';
1-19908313-2
Who is the primary sponsor for crew cheif Rick Ren's team?
CREATE TABLE "drivers_teams" ( "team" text, "truck_s" text, "num" real, "driver_s" text, "primary_sponsor_s" text, "listed_owner_s" text, "crew_chief" text );
SELECT "primary_sponsor_s" FROM "drivers_teams" WHERE "crew_chief"='Rick Ren';
1-19908313-2
Who sponsors owner Bobby Dotter's team?
CREATE TABLE "drivers_teams" ( "team" text, "truck_s" text, "num" real, "driver_s" text, "primary_sponsor_s" text, "listed_owner_s" text, "crew_chief" text );
SELECT "primary_sponsor_s" FROM "drivers_teams" WHERE "listed_owner_s"='Bobby Dotter';
1-19908313-2