question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What class is assigned to frequencies larger than 89.3 with an ERP W of 250?
CREATE TABLE "kansas" ( "call_sign" text, "frequency_m_hz" real, "city_of_license" text, "erp_w" real, "class" text, "fcc_info" text );
SELECT "class" FROM "kansas" WHERE "frequency_m_hz">89.3 AND "erp_w"=250;
2-14993391-1
What did st. louis score at home?
CREATE TABLE "march" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "score" FROM "march" WHERE "home"='st. louis';
2-14208941-7
What was the result of the game on week 1?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "result" FROM "schedule" WHERE "week"=1;
2-15123054-2
What is the result of the game on October 25, 1959 with more than 26,198 fans in attendance?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "result" FROM "schedule" WHERE "attendance">'26,198' AND "date"='october 25, 1959';
2-15123054-2
What is the record of the game on week 13?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "time_et" text, "game_site" text, "result" text, "record" text );
SELECT "record" FROM "schedule" WHERE "week"=13;
2-14942423-1
Texas Rate smaller than 32.9, and a U.S. Rate larger than 5.6 is what highest killeen rate?
CREATE TABLE "crime" ( "crime" text, "reported_offenses" real, "killeen_rate" real, "texas_rate" real, "u_s_rate" real );
SELECT MAX("killeen_rate") FROM "crime" WHERE "texas_rate"<32.9 AND "u_s_rate">5.6;
2-135478-4
Reported Offenses larger than 216, and a U.S. Rate smaller than 3274, and a Texas Rate smaller than 2688.9, and a Crime of violent crime has what killeen rate?
CREATE TABLE "crime" ( "crime" text, "reported_offenses" real, "killeen_rate" real, "texas_rate" real, "u_s_rate" real );
SELECT SUM("killeen_rate") FROM "crime" WHERE "reported_offenses">216 AND "u_s_rate"<3274 AND "texas_rate"<2688.9 AND "crime"='violent crime';
2-135478-4
Killeen Rate of 511.6, and a Texas Rate smaller than 314.4 is the lowest reported offenses?
CREATE TABLE "crime" ( "crime" text, "reported_offenses" real, "killeen_rate" real, "texas_rate" real, "u_s_rate" real );
SELECT MIN("reported_offenses") FROM "crime" WHERE "killeen_rate"=511.6 AND "texas_rate"<314.4;
2-135478-4
Tell me the type for category of mouse and attribute of ondblclick
CREATE TABLE "common_w3_c_events" ( "category" text, "type" text, "attribute" text, "bubbles" text, "cancelable" text );
SELECT "type" FROM "common_w3_c_events" WHERE "category"='mouse' AND "attribute"='ondblclick';
2-1507852-1
Name the type with cancelable of no and attribute of ondragend
CREATE TABLE "common_w3_c_events" ( "category" text, "type" text, "attribute" text, "bubbles" text, "cancelable" text );
SELECT "type" FROM "common_w3_c_events" WHERE "cancelable"='no' AND "attribute"='ondragend';
2-1507852-1
Name the cancelable for onmouseover
CREATE TABLE "common_w3_c_events" ( "category" text, "type" text, "attribute" text, "bubbles" text, "cancelable" text );
SELECT "cancelable" FROM "common_w3_c_events" WHERE "attribute"='onmouseover';
2-1507852-1
Name the bubbles for onscroll
CREATE TABLE "common_w3_c_events" ( "category" text, "type" text, "attribute" text, "bubbles" text, "cancelable" text );
SELECT "bubbles" FROM "common_w3_c_events" WHERE "attribute"='onscroll';
2-1507852-1
Name the attribute for mutation and domcharacterdatamodified
CREATE TABLE "common_w3_c_events" ( "category" text, "type" text, "attribute" text, "bubbles" text, "cancelable" text );
SELECT "attribute" FROM "common_w3_c_events" WHERE "category"='mutation' AND "type"='domcharacterdatamodified';
2-1507852-1
Who had high rebounds on May 1?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "series" text );
SELECT "high_rebounds" FROM "game_log" WHERE "date"='may 1';
2-13619240-4
What location attendance had a score of l 92–116?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "series" text );
SELECT "location_attendance" FROM "game_log" WHERE "score"='l 92–116';
2-13619240-4
Which name has a distance for 1st as 117.5?
CREATE TABLE "oslo" ( "rank" real, "name" text, "nationality" text, "1st_m" real, "2nd_m" real, "points" real, "overall_nt_points" text, "overall_wc_points_rank" text );
SELECT "name" FROM "oslo" WHERE "1st_m"=117.5;
2-14407512-25
What is the distance for Tom Hilde for 2nd when the 1st distance is more than 117.5?
CREATE TABLE "oslo" ( "rank" real, "name" text, "nationality" text, "1st_m" real, "2nd_m" real, "points" real, "overall_nt_points" text, "overall_wc_points_rank" text );
SELECT "2nd_m" FROM "oslo" WHERE "1st_m">117.5 AND "name"='tom hilde';
2-14407512-25
What are the most points for Thomas Morgenstern with a distance less than 123.5 in 2nd and rank over 4?
CREATE TABLE "oslo" ( "rank" real, "name" text, "nationality" text, "1st_m" real, "2nd_m" real, "points" real, "overall_nt_points" text, "overall_wc_points_rank" text );
SELECT MAX("points") FROM "oslo" WHERE "2nd_m"<123.5 AND "name"='thomas morgenstern' AND "rank">4;
2-14407512-25
What is the sum of the distances in 2nd for ranks higher than 4 and distance for 1st less than 111.5?
CREATE TABLE "oslo" ( "rank" real, "name" text, "nationality" text, "1st_m" real, "2nd_m" real, "points" real, "overall_nt_points" text, "overall_wc_points_rank" text );
SELECT SUM("2nd_m") FROM "oslo" WHERE "rank">4 AND "1st_m"<111.5;
2-14407512-25
Who had more than 247.1 points and less than 125 meter distance for 1st?
CREATE TABLE "oslo" ( "rank" real, "name" text, "nationality" text, "1st_m" real, "2nd_m" real, "points" real, "overall_nt_points" text, "overall_wc_points_rank" text );
SELECT "name" FROM "oslo" WHERE "points">247.1 AND "1st_m"<125;
2-14407512-25
What is the gold medal count that has a silver medal count less than 0?
CREATE TABLE "medals_table" ( "rank" text, "nation" text, "gold" real, "silver" real, "bronze" real, "total" real );
SELECT MAX("gold") FROM "medals_table" WHERE "silver"<0;
2-14288427-3
What is the average number of students for schools with a pupil to teacher ratio of 25.1?
CREATE TABLE "schools" ( "school_name" text, "city" text, "students" real, "fte_teachers" real, "pupil_teacher_ratio" real );
SELECT AVG("students") FROM "schools" WHERE "pupil_teacher_ratio"=25.1;
2-1405413-1
What is the lowest pupil to teacher ratio for Saratoga schools with smaller than 1213 students?
CREATE TABLE "schools" ( "school_name" text, "city" text, "students" real, "fte_teachers" real, "pupil_teacher_ratio" real );
SELECT MIN("pupil_teacher_ratio") FROM "schools" WHERE "city"='saratoga' AND "students"<1213;
2-1405413-1
What is the highest number of students for schools in Campbell with pupil to teacher ratios over 25?
CREATE TABLE "schools" ( "school_name" text, "city" text, "students" real, "fte_teachers" real, "pupil_teacher_ratio" real );
SELECT MAX("students") FROM "schools" WHERE "city"='campbell' AND "pupil_teacher_ratio">25;
2-1405413-1
Name the most rank for wins outdoor larger than 1 and wins indoor less than 0
CREATE TABLE "wins_per_country" ( "rank" real, "country" text, "wins_outdoor" real, "wins_indoor" real, "wins_total" real );
SELECT MAX("rank") FROM "wins_per_country" WHERE "wins_outdoor">1 AND "wins_indoor"<0;
2-15112086-4
Name the most rank for uk and wins more than 5
CREATE TABLE "wins_per_country" ( "rank" real, "country" text, "wins_outdoor" real, "wins_indoor" real, "wins_total" real );
SELECT MAX("rank") FROM "wins_per_country" WHERE "country"='uk' AND "wins_indoor">5;
2-15112086-4
Name the average wins outdoor with rank more than 4 and wins less than 3 with outdoor wins more than 0
CREATE TABLE "wins_per_country" ( "rank" real, "country" text, "wins_outdoor" real, "wins_indoor" real, "wins_total" real );
SELECT AVG("wins_outdoor") FROM "wins_per_country" WHERE "rank">4 AND "wins_total"<3 AND "wins_indoor">0;
2-15112086-4
Name the most wins total with wins indoor of 0 and wins outdoor of 1 with rank less than 7
CREATE TABLE "wins_per_country" ( "rank" real, "country" text, "wins_outdoor" real, "wins_indoor" real, "wins_total" real );
SELECT MAX("wins_total") FROM "wins_per_country" WHERE "wins_indoor"=0 AND "wins_outdoor"=1 AND "rank"<7;
2-15112086-4
What was the frame size in 08/87?
CREATE TABLE "portfolio" ( "print_name" text, "nickname" text, "number_of_colors" text, "framed_size" text, "date_completed" text );
SELECT "framed_size" FROM "portfolio" WHERE "date_completed"='08/87';
2-15070195-1
What was the print name in 07/87?
CREATE TABLE "portfolio" ( "print_name" text, "nickname" text, "number_of_colors" text, "framed_size" text, "date_completed" text );
SELECT "print_name" FROM "portfolio" WHERE "date_completed"='07/87';
2-15070195-1
What is the frame size that was nicknamed Grand Central?
CREATE TABLE "portfolio" ( "print_name" text, "nickname" text, "number_of_colors" text, "framed_size" text, "date_completed" text );
SELECT "framed_size" FROM "portfolio" WHERE "nickname"='grand central';
2-15070195-1
When was the Little Tavern completed?
CREATE TABLE "portfolio" ( "print_name" text, "nickname" text, "number_of_colors" text, "framed_size" text, "date_completed" text );
SELECT "date_completed" FROM "portfolio" WHERE "nickname"='little tavern';
2-15070195-1
How much Average has a Team of san lorenzo, and a 1990-1991 smaller than 45?
CREATE TABLE "relegation" ( "team" text, "average" real, "points" real, "played" real, "1988_89" text, "1989_90" text, "1990_1991" real );
SELECT COUNT("average") FROM "relegation" WHERE "team"='san lorenzo' AND "1990_1991"<45;
2-14450740-2
Which Played is the lowest one that has a 1989-90 of 39, and a Team of gimnasia de la plata, and Points larger than 108?
CREATE TABLE "relegation" ( "team" text, "average" real, "points" real, "played" real, "1988_89" text, "1989_90" text, "1990_1991" real );
SELECT MIN("played") FROM "relegation" WHERE "1989_90"='39' AND "team"='gimnasia de la plata' AND "points">108;
2-14450740-2
Which 1990-1991 is the average one that has Played of 38, and Points of 40?
CREATE TABLE "relegation" ( "team" text, "average" real, "points" real, "played" real, "1988_89" text, "1989_90" text, "1990_1991" real );
SELECT AVG("1990_1991") FROM "relegation" WHERE "played"=38 AND "points"=40;
2-14450740-2
Which College/Junior/Club Team has a Nationality of Canada and Jeff brown?
CREATE TABLE "draft_picks" ( "round" real, "player" text, "position" text, "nationality" text, "college_junior_club_team_league" text );
SELECT "college_junior_club_team_league" FROM "draft_picks" WHERE "nationality"='canada' AND "player"='jeff brown';
2-14034799-13
Which Player has a Hc Cska Moscow (Russia)?
CREATE TABLE "draft_picks" ( "round" real, "player" text, "position" text, "nationality" text, "college_junior_club_team_league" text );
SELECT "player" FROM "draft_picks" WHERE "college_junior_club_team_league"='hc cska moscow (russia)';
2-14034799-13
What is Nationality of daniel goneau?
CREATE TABLE "draft_picks" ( "round" real, "player" text, "position" text, "nationality" text, "college_junior_club_team_league" text );
SELECT "nationality" FROM "draft_picks" WHERE "player"='daniel goneau';
2-14034799-13
What points have 500cc as a class, and nsr500 as a machine?
CREATE TABLE "motorcycle_grand_prix_results" ( "year" real, "class" text, "team" text, "machine" text, "points" real, "rank" text, "wins" real );
SELECT "points" FROM "motorcycle_grand_prix_results" WHERE "class"='500cc' AND "machine"='nsr500';
2-14881553-3
How many years have 78 for points?
CREATE TABLE "motorcycle_grand_prix_results" ( "year" real, "class" text, "team" text, "machine" text, "points" real, "rank" text, "wins" real );
SELECT COUNT("year") FROM "motorcycle_grand_prix_results" WHERE "points"=78;
2-14881553-3
What class has nsr250 as the machine, with points greater than 97?
CREATE TABLE "motorcycle_grand_prix_results" ( "year" real, "class" text, "team" text, "machine" text, "points" real, "rank" text, "wins" real );
SELECT "class" FROM "motorcycle_grand_prix_results" WHERE "machine"='nsr250' AND "points">97;
2-14881553-3
What is the lowest year that have wins greater than 0?
CREATE TABLE "motorcycle_grand_prix_results" ( "year" real, "class" text, "team" text, "machine" text, "points" real, "rank" text, "wins" real );
SELECT MIN("year") FROM "motorcycle_grand_prix_results" WHERE "wins">0;
2-14881553-3
What are the highest points that have a year less than 1992, with wins less than 0?
CREATE TABLE "motorcycle_grand_prix_results" ( "year" real, "class" text, "team" text, "machine" text, "points" real, "rank" text, "wins" real );
SELECT MAX("points") FROM "motorcycle_grand_prix_results" WHERE "year"<1992 AND "wins"<0;
2-14881553-3
What was the lowest attendance at a game against the St. Louis Cardinals?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "record" text, "game_site" text, "attendance" real );
SELECT MIN("attendance") FROM "schedule" WHERE "opponent"='st. louis cardinals';
2-14959246-2
What district is the parish Milburn in?
CREATE TABLE "list_of_civil_parishes_and_unparished_ar" ( "name" text, "status" text, "population" real, "district" text, "former_local_authority" text );
SELECT "district" FROM "list_of_civil_parishes_and_unparished_ar" WHERE "name"='milburn';
2-1401800-1
What is the name of the parish that has a population larger than 2,156, a former local authority of Dalton in furness urban district, and a status of a civil parish?
CREATE TABLE "list_of_civil_parishes_and_unparished_ar" ( "name" text, "status" text, "population" real, "district" text, "former_local_authority" text );
SELECT "name" FROM "list_of_civil_parishes_and_unparished_ar" WHERE "status"='civil parish' AND "population">'2,156' AND "former_local_authority"='dalton in furness urban district';
2-1401800-1
What is the population of the Parish, Plumbland, that had a former local authority of Cockermouth Rural District?
CREATE TABLE "list_of_civil_parishes_and_unparished_ar" ( "name" text, "status" text, "population" real, "district" text, "former_local_authority" text );
SELECT COUNT("population") FROM "list_of_civil_parishes_and_unparished_ar" WHERE "former_local_authority"='cockermouth rural district' AND "name"='plumbland';
2-1401800-1
What is the district for the parish, Brough?
CREATE TABLE "list_of_civil_parishes_and_unparished_ar" ( "name" text, "status" text, "population" real, "district" text, "former_local_authority" text );
SELECT "district" FROM "list_of_civil_parishes_and_unparished_ar" WHERE "name"='brough';
2-1401800-1
Who were the former local authority for the civil parish, Ennerdale and Kinniside in the copeland district, with less than 1,280 in population?
CREATE TABLE "list_of_civil_parishes_and_unparished_ar" ( "name" text, "status" text, "population" real, "district" text, "former_local_authority" text );
SELECT "former_local_authority" FROM "list_of_civil_parishes_and_unparished_ar" WHERE "status"='civil parish' AND "district"='copeland' AND "population"<'1,280' AND "name"='ennerdale and kinniside';
2-1401800-1
What year featured lola motorsport as an entrant with over 0 points?
CREATE TABLE "complete_international_formula_3000_resu" ( "year" real, "entrant" text, "chassis" text, "engine" text, "points" real );
SELECT AVG("year") FROM "complete_international_formula_3000_resu" WHERE "entrant"='lola motorsport' AND "points">0;
2-1353867-2
When is the earliest year that there's a judd engine?
CREATE TABLE "complete_international_formula_3000_resu" ( "year" real, "entrant" text, "chassis" text, "engine" text, "points" real );
SELECT MIN("year") FROM "complete_international_formula_3000_resu" WHERE "engine"='judd';
2-1353867-2
What chassis is used in 1989 with a cosworth engine?
CREATE TABLE "complete_international_formula_3000_resu" ( "year" real, "entrant" text, "chassis" text, "engine" text, "points" real );
SELECT "chassis" FROM "complete_international_formula_3000_resu" WHERE "year"=1989 AND "engine"='cosworth';
2-1353867-2
Where was something built earlier than 1858?
CREATE TABLE "table_4_early_o_s_n_monopoly_boats" ( "name" text, "type" text, "year_built" real, "where_built" text, "initial_owners" text );
SELECT "where_built" FROM "table_4_early_o_s_n_monopoly_boats" WHERE "year_built"<1858;
2-14670843-4
What was built in 1857?
CREATE TABLE "table_4_early_o_s_n_monopoly_boats" ( "name" text, "type" text, "year_built" real, "where_built" text, "initial_owners" text );
SELECT "name" FROM "table_4_early_o_s_n_monopoly_boats" WHERE "year_built"=1857;
2-14670843-4
Who were the initial owners of Wasco in 1858?
CREATE TABLE "table_4_early_o_s_n_monopoly_boats" ( "name" text, "type" text, "year_built" real, "where_built" text, "initial_owners" text );
SELECT "initial_owners" FROM "table_4_early_o_s_n_monopoly_boats" WHERE "year_built"=1858 AND "name"='wasco';
2-14670843-4
What was the type of boat built in Port Blakeley
CREATE TABLE "table_4_early_o_s_n_monopoly_boats" ( "name" text, "type" text, "year_built" real, "where_built" text, "initial_owners" text );
SELECT "type" FROM "table_4_early_o_s_n_monopoly_boats" WHERE "where_built"='port blakeley';
2-14670843-4
What is the date of the game at Arrowhead Stadium?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "location" text, "time_et" text, "result" text, "record" text );
SELECT "date" FROM "schedule" WHERE "location"='arrowhead stadium';
2-14713409-1
Who is the opponent of the game after week 4 on Sun. Nov. 17?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "location" text, "time_et" text, "result" text, "record" text );
SELECT "opponent" FROM "schedule" WHERE "week">4 AND "date"='sun. nov. 17';
2-14713409-1
What's the median family income with a household income of $25,583?
CREATE TABLE "new_mexico_counties_ranked_by_per_capita" ( "county" text, "per_capita_income" text, "median_household_income" text, "median_family_income" text, "population" real, "number_of_households" real );
SELECT "median_family_income" FROM "new_mexico_counties_ranked_by_per_capita" WHERE "median_household_income"='$25,583';
2-1363705-1
What's the $51,914 median household income per capita?
CREATE TABLE "new_mexico_counties_ranked_by_per_capita" ( "county" text, "per_capita_income" text, "median_household_income" text, "median_family_income" text, "population" real, "number_of_households" real );
SELECT "per_capita_income" FROM "new_mexico_counties_ranked_by_per_capita" WHERE "median_household_income"='$51,914';
2-1363705-1
What was the winning score when Steve Stricker was runner-up?
CREATE TABLE "pga_tour_wins_5" ( "date" text, "tournament" text, "winning_score" text, "margin_of_victory" text, "runner_s_up" text );
SELECT "winning_score" FROM "pga_tour_wins_5" WHERE "runner_s_up"='steve stricker';
2-1516564-2
What was the margin of victory when the winning score was −14 (63-67-73-67=270)?
CREATE TABLE "pga_tour_wins_5" ( "date" text, "tournament" text, "winning_score" text, "margin_of_victory" text, "runner_s_up" text );
SELECT "margin_of_victory" FROM "pga_tour_wins_5" WHERE "winning_score"='−14 (63-67-73-67=270)';
2-1516564-2
Who was the runnerup when the margin of victory was 1 stroke on jan 30, 2000?
CREATE TABLE "pga_tour_wins_5" ( "date" text, "tournament" text, "winning_score" text, "margin_of_victory" text, "runner_s_up" text );
SELECT "runner_s_up" FROM "pga_tour_wins_5" WHERE "margin_of_victory"='1 stroke' AND "date"='jan 30, 2000';
2-1516564-2
What was the margin of victory when the winning score was −12 (66-67-64-71=268)?
CREATE TABLE "pga_tour_wins_5" ( "date" text, "tournament" text, "winning_score" text, "margin_of_victory" text, "runner_s_up" text );
SELECT "margin_of_victory" FROM "pga_tour_wins_5" WHERE "winning_score"='−12 (66-67-64-71=268)';
2-1516564-2
What day was the margin of victory 1 stroke when the tournament was colonial national invitation?
CREATE TABLE "pga_tour_wins_5" ( "date" text, "tournament" text, "winning_score" text, "margin_of_victory" text, "runner_s_up" text );
SELECT "date" FROM "pga_tour_wins_5" WHERE "margin_of_victory"='1 stroke' AND "tournament"='colonial national invitation';
2-1516564-2
What was the winning score for runnerup Greg Norman
CREATE TABLE "pga_tour_wins_5" ( "date" text, "tournament" text, "winning_score" text, "margin_of_victory" text, "runner_s_up" text );
SELECT "winning_score" FROM "pga_tour_wins_5" WHERE "runner_s_up"='greg norman';
2-1516564-2
Which Builder has a Pennant number of Q149?
CREATE TABLE "first_series" ( "name" text, "pennant_number" text, "ordered" real, "builder" text, "commissioned" text );
SELECT "builder" FROM "first_series" WHERE "pennant_number"='q149';
2-14050485-1
On what date was the ship with a Pennant number of Q144 commissioned?
CREATE TABLE "first_series" ( "name" text, "pennant_number" text, "ordered" real, "builder" text, "commissioned" text );
SELECT "commissioned" FROM "first_series" WHERE "pennant_number"='q144';
2-14050485-1
How many ships are named Monge?
CREATE TABLE "first_series" ( "name" text, "pennant_number" text, "ordered" real, "builder" text, "commissioned" text );
SELECT COUNT("ordered") FROM "first_series" WHERE "name"='monge';
2-14050485-1
What launched has mariner 4 as the spacecraft?
CREATE TABLE "1960s" ( "spacecraft" text, "destination" text, "launched" text, "closest_approach" text, "time_elapsed" text );
SELECT "launched" FROM "1960s" WHERE "spacecraft"='mariner 4';
2-13698001-7
What launched has 158 days (5 months, 8 days) as the time elapsed?
CREATE TABLE "1960s" ( "spacecraft" text, "destination" text, "launched" text, "closest_approach" text, "time_elapsed" text );
SELECT "launched" FROM "1960s" WHERE "time_elapsed"='158 days (5 months, 8 days)';
2-13698001-7
When was the song by Andy Gibb issued?
CREATE TABLE "see_also" ( "volume_issue" text, "issue_date_s" text, "weeks_on_top" real, "song" text, "artist" text );
SELECT "issue_date_s" FROM "see_also" WHERE "artist"='andy gibb';
2-14988057-1
Which Round has a College of stanford, and an Overall smaller than 8?
CREATE TABLE "atlanta_falcons_draft_history" ( "round" real, "pick_num" real, "overall" real, "name" text, "position" text, "college" text );
SELECT AVG("round") FROM "atlanta_falcons_draft_history" WHERE "college"='stanford' AND "overall"<8;
2-15198842-27
How many Picks have a College of tennessee, and an Overall smaller than 270?
CREATE TABLE "atlanta_falcons_draft_history" ( "round" real, "pick_num" real, "overall" real, "name" text, "position" text, "college" text );
SELECT SUM("pick_num") FROM "atlanta_falcons_draft_history" WHERE "college"='tennessee' AND "overall"<270;
2-15198842-27
Which Pick # is the lowest one that has a College of troy state, and a Name of reggie dwight, and an Overall smaller than 217?
CREATE TABLE "atlanta_falcons_draft_history" ( "round" real, "pick_num" real, "overall" real, "name" text, "position" text, "college" text );
SELECT MIN("pick_num") FROM "atlanta_falcons_draft_history" WHERE "college"='troy state' AND "name"='reggie dwight' AND "overall"<217;
2-15198842-27
What's the smallest amount of earnings when the wins are less than 72 and the rank is more than 3?
CREATE TABLE "leaders" ( "rank" real, "player" text, "country" text, "earnings" real, "wins" real );
SELECT MIN("earnings") FROM "leaders" WHERE "wins"<72 AND "rank">3;
2-14640450-4
What's the least amount of wins with earnings that are more than $2,556,043, and where Lee Trevino is a player?
CREATE TABLE "leaders" ( "rank" real, "player" text, "country" text, "earnings" real, "wins" real );
SELECT MIN("wins") FROM "leaders" WHERE "earnings">'2,556,043' AND "player"='lee trevino';
2-14640450-4
What's the smallest amount of earnings when there are more than 18 wins and the rank is 2?
CREATE TABLE "leaders" ( "rank" real, "player" text, "country" text, "earnings" real, "wins" real );
SELECT MIN("earnings") FROM "leaders" WHERE "wins">18 AND "rank"=2;
2-14640450-4
What is the lowest number of losses for a team with more than 0 wins?
CREATE TABLE "great_britain" ( "season" text, "team" text, "wins" real, "losses" real, "draws" real );
SELECT MIN("losses") FROM "great_britain" WHERE "wins">0;
2-14417906-8
What is the average number of losses for teams with fewer than 0 wins?
CREATE TABLE "great_britain" ( "season" text, "team" text, "wins" real, "losses" real, "draws" real );
SELECT AVG("losses") FROM "great_britain" WHERE "wins"<0;
2-14417906-8
What is the average number of wins for Runcorn Highfield with more than 0 draws?
CREATE TABLE "great_britain" ( "season" text, "team" text, "wins" real, "losses" real, "draws" real );
SELECT AVG("wins") FROM "great_britain" WHERE "team"='runcorn highfield' AND "draws">0;
2-14417906-8
What is the lowest number of losses for Nottingham City with fewer than 0 wins?
CREATE TABLE "great_britain" ( "season" text, "team" text, "wins" real, "losses" real, "draws" real );
SELECT MIN("losses") FROM "great_britain" WHERE "team"='nottingham city' AND "wins"<0;
2-14417906-8
What is the weight of the player from the Philadelphia 76ers?
CREATE TABLE "contestants" ( "pos" text, "player" text, "team" text, "height" text, "weight" real );
SELECT COUNT("weight") FROM "contestants" WHERE "team"='philadelphia 76ers';
2-14388065-5
What is the height of the player, Larry Hughes?
CREATE TABLE "contestants" ( "pos" text, "player" text, "team" text, "height" text, "weight" real );
SELECT "height" FROM "contestants" WHERE "player"='larry hughes';
2-14388065-5
What player was moved to Blackpool?
CREATE TABLE "first_team" ( "start_date" text, "end_date" text, "pos" text, "player" text, "to_club" text );
SELECT "player" FROM "first_team" WHERE "to_club"='blackpool';
2-14986996-20
A player was moved to celtic had an end of what date?
CREATE TABLE "first_team" ( "start_date" text, "end_date" text, "pos" text, "player" text, "to_club" text );
SELECT "end_date" FROM "first_team" WHERE "to_club"='celtic';
2-14986996-20
Which Game is the average one that has a February larger than 20, and a Record of 41–17–4, and Points smaller than 86?
CREATE TABLE "regular_season" ( "game" real, "february" real, "opponent" text, "score" text, "record" text, "points" real );
SELECT AVG("game") FROM "regular_season" WHERE "february">20 AND "record"='41–17–4' AND "points"<86;
2-14320222-6
what country hosted david toms
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "country" FROM "third_round" WHERE "player"='david toms';
2-14064009-5
What was the score for game 18?
CREATE TABLE "schedule_and_results" ( "game" real, "date" real, "opponent" text, "score" text, "location_attendance" text, "record" text );
SELECT "score" FROM "schedule_and_results" WHERE "game"=18;
2-13931429-3
What is the kickoff time for the game that was at Ralph Wilson Stadium?
CREATE TABLE "regular_season" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "kickoff_et" text, "nfl_recap" text, "record" text );
SELECT "kickoff_et" FROM "regular_season" WHERE "game_site"='ralph wilson stadium';
2-14990732-3
What is the record for the game against the New England Patriots with a recap?
CREATE TABLE "regular_season" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "kickoff_et" text, "nfl_recap" text, "record" text );
SELECT "record" FROM "regular_season" WHERE "nfl_recap"='recap' AND "opponent"='new england patriots';
2-14990732-3
What is the result of the game on week 11?
CREATE TABLE "regular_season" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "kickoff_et" text, "nfl_recap" text, "record" text );
SELECT "result" FROM "regular_season" WHERE "week"=11;
2-14990732-3
Who was the visitor that led to a 3-0-2 record?
CREATE TABLE "october" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "visitor" FROM "october" WHERE "record"='3-0-2';
2-14209289-2
What is the original title of the Gypsy Magic film title used in nomination?
CREATE TABLE "submissions" ( "year_ceremony" text, "film_title_used_in_nomination" text, "original_title" text, "language_s" text, "result" text );
SELECT "original_title" FROM "submissions" WHERE "film_title_used_in_nomination"='gypsy magic';
2-14928423-1
Name the builder for number 3
CREATE TABLE "locomotives" ( "number" real, "builder" text, "type" text, "date" text, "works_number" real );
SELECT "builder" FROM "locomotives" WHERE "number"=3;
2-14987147-1
Name the date with works number less than 1673 and number less than 3
CREATE TABLE "locomotives" ( "number" real, "builder" text, "type" text, "date" text, "works_number" real );
SELECT "date" FROM "locomotives" WHERE "works_number"<1673 AND "number"<3;
2-14987147-1
Name the builder for 4/1906 and works number more than 199
CREATE TABLE "locomotives" ( "number" real, "builder" text, "type" text, "date" text, "works_number" real );
SELECT "builder" FROM "locomotives" WHERE "works_number">199 AND "date"='4/1906';
2-14987147-1
What was the largest number of people in attendance of the game with a W 14-3 result after week 10?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT MAX("attendance") FROM "schedule" WHERE "result"='w 14-3' AND "week">10;
2-15123143-2
What is the percentage for Zares on May 21–22?
CREATE TABLE "opinion_polls" ( "source" text, "date" text, "de_sus" text, "zares" text, "nlpd" text );
SELECT "zares" FROM "opinion_polls" WHERE "date"='may 21–22';
2-15125225-2
What is the source for 7% DeSUS?
CREATE TABLE "opinion_polls" ( "source" text, "date" text, "de_sus" text, "zares" text, "nlpd" text );
SELECT "source" FROM "opinion_polls" WHERE "de_sus"='7%';
2-15125225-2