question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What is the number for years 1985-88
CREATE TABLE "s" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT MIN("no") FROM "s" WHERE "years_for_jazz"='1985-88';
1-11545282-18
Which position does John Starks play?
CREATE TABLE "s" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "position" FROM "s" WHERE "player"='John Starks';
1-11545282-18
Which position does Deshawn Stevenson play?
CREATE TABLE "s" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "position" FROM "s" WHERE "player"='DeShawn Stevenson';
1-11545282-18
Which player played 2004-05
CREATE TABLE "s" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "player" FROM "s" WHERE "years_for_jazz"='2004-05';
1-11545282-18
Name the nationality who played for 1987-89?
CREATE TABLE "r" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "nationality" FROM "r" WHERE "years_for_jazz"='1987-89';
1-11545282-17
Wht years did truck robinson play?
CREATE TABLE "r" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "years_for_jazz" FROM "r" WHERE "player"='Truck Robinson';
1-11545282-17
What is the player that played 2004-05?
CREATE TABLE "r" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "player" FROM "r" WHERE "years_for_jazz"='2004-05';
1-11545282-17
What is the number of players that played 1987-89?
CREATE TABLE "r" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "no" FROM "r" WHERE "years_for_jazz"='1987-89';
1-11545282-17
What is the nationality of bill robinzine?
CREATE TABLE "r" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "nationality" FROM "r" WHERE "player"='Bill Robinzine';
1-11545282-17
What is the player that played in 2004-05?
CREATE TABLE "r" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "player" FROM "r" WHERE "years_for_jazz"='2004-05';
1-11545282-17
What is the nationality of the player named Kelly Tripucka?
CREATE TABLE "t" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "nationality" FROM "t" WHERE "player"='Kelly Tripucka';
1-11545282-19
What years were the Iowa State school/club team have a jazz club?
CREATE TABLE "t" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "years_for_jazz" FROM "t" WHERE "school_club_team"='Iowa State';
1-11545282-19
Which player wears the number 6?
CREATE TABLE "t" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "player" FROM "t" WHERE "no"=6;
1-11545282-19
Which player's position is the shooting guard?
CREATE TABLE "t" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "player" FROM "t" WHERE "position"='Shooting guard';
1-11545282-19
What is the number of school/club teams held by BYU?
CREATE TABLE "t" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT MIN("no") FROM "t" WHERE "school_club_team"='BYU';
1-11545282-19
What position did the player from maynard evans hs play
CREATE TABLE "d" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "position" FROM "d" WHERE "school_club_team"='Maynard Evans HS';
1-11545282-4
What is the largest jersey number for the player from maryland
CREATE TABLE "d" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT MAX("no") FROM "d" WHERE "school_club_team"='Maryland';
1-11545282-4
Who are the players that played for the jazz from 1979-86
CREATE TABLE "d" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "player" FROM "d" WHERE "years_for_jazz"='1979-86';
1-11545282-4
What years did number 54 play for the jazz
CREATE TABLE "d" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "years_for_jazz" FROM "d" WHERE "no"=54;
1-11545282-4
How many schools did darryl dawkins play for
CREATE TABLE "d" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT COUNT("school_club_team") FROM "d" WHERE "player"='Darryl Dawkins';
1-11545282-4
What is the nationality of the player who played during the years 1989-92; 1994-95?
CREATE TABLE "e" ( "player" text, "no" text, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "nationality" FROM "e" WHERE "years_for_jazz"='1989-92; 1994-95';
1-11545282-5
How many schools are listed for the player who played the years for Jazz in 2010-11?
CREATE TABLE "e" ( "player" text, "no" text, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT COUNT("school_club_team") FROM "e" WHERE "years_for_jazz"='2010-11';
1-11545282-5
How many players were names Howard Eisley?
CREATE TABLE "e" ( "player" text, "no" text, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT COUNT("no") FROM "e" WHERE "player"='Howard Eisley';
1-11545282-5
What is the position for player Blue Edwards?
CREATE TABLE "e" ( "player" text, "no" text, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "position" FROM "e" WHERE "player"='Blue Edwards';
1-11545282-5
Which player played the years for Jazz in 1995-2000, 2004-05
CREATE TABLE "e" ( "player" text, "no" text, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "player" FROM "e" WHERE "years_for_jazz"='1995-2000, 2004-05';
1-11545282-5
Which player is no. 53?
CREATE TABLE "e" ( "player" text, "no" text, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "player" FROM "e" WHERE "no"='53';
1-11545282-5
During which years did Jim Farmer play for Jazz?
CREATE TABLE "f" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "years_for_jazz" FROM "f" WHERE "player"='Jim Farmer';
1-11545282-6
How many players have played for Jazz during 2006-2007?
CREATE TABLE "f" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT COUNT("player") FROM "f" WHERE "years_for_jazz"='2006-2007';
1-11545282-6
What's Jim Farmer's nationality?
CREATE TABLE "f" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "nationality" FROM "f" WHERE "player"='Jim Farmer';
1-11545282-6
For how many players from UTEP can one calculate how many years they've played for Jazz?
CREATE TABLE "f" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT COUNT("years_for_jazz") FROM "f" WHERE "school_club_team"='UTEP';
1-11545282-6
How many position does Jim Farmer play in?
CREATE TABLE "f" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT COUNT("position") FROM "f" WHERE "player"='Jim Farmer';
1-11545282-6
What school or club did number 35 play for?
CREATE TABLE "g" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "school_club_team" FROM "g" WHERE "no"=35;
1-11545282-7
How many years did number 25 play for the Jazz?
CREATE TABLE "g" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "years_for_jazz" FROM "g" WHERE "no"=25;
1-11545282-7
How many years did Paul Griffin play for the Jazz?
CREATE TABLE "g" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT COUNT("years_for_jazz") FROM "g" WHERE "player"='Paul Griffin';
1-11545282-7
What position did Lamar Green play?
CREATE TABLE "g" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "position" FROM "g" WHERE "player"='Lamar Green';
1-11545282-7
How many players only played for the Jazz in only 2010?
CREATE TABLE "g" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT COUNT("no") FROM "g" WHERE "years_for_jazz"='2010';
1-11545282-7
What was the delivery date when s2 (lst) type, s2 (frigate) type, c1-m type was delivered?
CREATE TABLE "yards_on_the_west_coast" ( "yard_name" text, "location_city_state" text, "1st_ship_delivery_date" text, "ship_types_delivered" text, "total_number_of_ways" text, "total_vessels_built" text );
SELECT "1st_ship_delivery_date" FROM "yards_on_the_west_coast" WHERE "ship_types_delivered"='S2 (LST) type, S2 (frigate) type, C1-M type';
1-11552751-2
What type of ships were delivered on October 1942?
CREATE TABLE "yards_on_the_west_coast" ( "yard_name" text, "location_city_state" text, "1st_ship_delivery_date" text, "ship_types_delivered" text, "total_number_of_ways" text, "total_vessels_built" text );
SELECT "ship_types_delivered" FROM "yards_on_the_west_coast" WHERE "1st_ship_delivery_date"='October 1942';
1-11552751-2
When was the delevery date when there were 12 ways of delivery?
CREATE TABLE "yards_on_the_west_coast" ( "yard_name" text, "location_city_state" text, "1st_ship_delivery_date" text, "ship_types_delivered" text, "total_number_of_ways" text, "total_vessels_built" text );
SELECT "1st_ship_delivery_date" FROM "yards_on_the_west_coast" WHERE "total_number_of_ways"='12 ways';
1-11552751-2
What are the episode numbers where the episode features Jack & Locke?
CREATE TABLE "table1_11562149_1" ( "no_in_series" text, "no_in_season" text, "title" text, "directed_by" text, "written_by" text, "featured_character_s" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT "no_in_series" FROM "table1_11562149_1" WHERE "featured_character_s"='Jack & Locke';
1-11562149-1
What are the episode numbers of episodes featuring Hurley?
CREATE TABLE "table1_11562149_1" ( "no_in_series" text, "no_in_season" text, "title" text, "directed_by" text, "written_by" text, "featured_character_s" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT "no_in_series" FROM "table1_11562149_1" WHERE "featured_character_s"='Hurley';
1-11562149-1
List the episode whose number in the series is 111.
CREATE TABLE "table1_11562149_1" ( "no_in_series" text, "no_in_season" text, "title" text, "directed_by" text, "written_by" text, "featured_character_s" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT "no_in_season" FROM "table1_11562149_1" WHERE "no_in_series"='111';
1-11562149-1
What date got 9.82 million viewers?
CREATE TABLE "table1_11562143_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "featured_character_s" text, "original_air_date" text, "u_s_viewers_million" text );
SELECT "original_air_date" FROM "table1_11562143_1" WHERE "u_s_viewers_million"='9.82';
1-11562143-1
What school placed 4th when Oklahoma State University (black) took 3rd place?
CREATE TABLE "table1_11577996_1" ( "year" real, "location" text, "1st_place" text, "2nd_place" text, "3rd_place" text, "4th_place" text, "5th_place" text );
SELECT "4th_place" FROM "table1_11577996_1" WHERE "3rd_place"='Oklahoma State University (Black)';
1-11577996-1
What school took 3rd place in 2007?
CREATE TABLE "table1_11577996_1" ( "year" real, "location" text, "1st_place" text, "2nd_place" text, "3rd_place" text, "4th_place" text, "5th_place" text );
SELECT "3rd_place" FROM "table1_11577996_1" WHERE "year"=2007;
1-11577996-1
What year did the University of California, San Diego take 1st place?
CREATE TABLE "table1_11577996_1" ( "year" real, "location" text, "1st_place" text, "2nd_place" text, "3rd_place" text, "4th_place" text, "5th_place" text );
SELECT MAX("year") FROM "table1_11577996_1" WHERE "1st_place"='University of California, San Diego';
1-11577996-1
What school took 4th place in 2002?
CREATE TABLE "table1_11577996_1" ( "year" real, "location" text, "1st_place" text, "2nd_place" text, "3rd_place" text, "4th_place" text, "5th_place" text );
SELECT "4th_place" FROM "table1_11577996_1" WHERE "year"=2002;
1-11577996-1
What school took 4th place in 2001?
CREATE TABLE "table1_11577996_1" ( "year" real, "location" text, "1st_place" text, "2nd_place" text, "3rd_place" text, "4th_place" text, "5th_place" text );
SELECT "4th_place" FROM "table1_11577996_1" WHERE "year"=2001;
1-11577996-1
Who were the runner(s)-up when Tiger won by 11 strokes?
CREATE TABLE "wins_18" ( "year" real, "championship" text, "54_holes" text, "winning_score" text, "margin_of_victory" text, "runner_s_up" text );
SELECT "runner_s_up" FROM "wins_18" WHERE "margin_of_victory"='11 strokes';
1-11570261-2
What tournament did Tiger hold a 2 shot lead after 54 holes?
CREATE TABLE "wins_18" ( "year" real, "championship" text, "54_holes" text, "winning_score" text, "margin_of_victory" text, "runner_s_up" text );
SELECT "championship" FROM "wins_18" WHERE "54_holes"='2 shot lead';
1-11570261-2
What was the margin of victory over Justin Leonard, phillip price?
CREATE TABLE "wins_18" ( "year" real, "championship" text, "54_holes" text, "winning_score" text, "margin_of_victory" text, "runner_s_up" text );
SELECT COUNT("margin_of_victory") FROM "wins_18" WHERE "runner_s_up"='Justin Leonard, Phillip Price';
1-11570261-2
There were 68 worcs f-c matches played on Chester Road North Ground.
CREATE TABLE "grounds" ( "name_of_ground" text, "location" text, "first_class_span" text, "worcs_f_c_matches" real, "list_a_span" text, "worcs_la_matches" real );
SELECT "worcs_f_c_matches" FROM "grounds" WHERE "name_of_ground"='Chester Road North Ground';
1-1156428-2
How many times did Tiger get second in the year where there were 11 cuts?
CREATE TABLE "pga_tour_professional_career_summary" ( "year" real, "starts" real, "cuts_made" text, "wins_majors" text, "2nd" real, "3rd" real, "top_10" real, "top_25" real, "earnings" real, "money_list_rank" real, "adjusted_scoring_average_rank" text );
SELECT MAX("2nd") FROM "pga_tour_professional_career_summary" WHERE "cuts_made"='11';
1-11570261-6
What's written in the notes for the locomotives with cylinder size of 12" x 17"?
CREATE TABLE "steam_locomotives" ( "name" text, "number" text, "builder" text, "date_built" text, "wheel_arrangement" text, "driving_wheels" text, "cylinders" text, "boiler_pressure" text, "notes" text );
SELECT "notes" FROM "steam_locomotives" WHERE "cylinders"='12\" x 17\"';
1-1157867-2
Which locomotives 12" x 17" are both ex-industrial and built by Manning Wardle?
CREATE TABLE "steam_locomotives" ( "name" text, "number" text, "builder" text, "date_built" text, "wheel_arrangement" text, "driving_wheels" text, "cylinders" text, "boiler_pressure" text, "notes" text );
SELECT "name" FROM "steam_locomotives" WHERE "notes"='Ex-industrial' AND "builder"='Manning Wardle';
1-1157867-2
What's the size of the cylinders built by Longbottom, Barnsley?
CREATE TABLE "steam_locomotives" ( "name" text, "number" text, "builder" text, "date_built" text, "wheel_arrangement" text, "driving_wheels" text, "cylinders" text, "boiler_pressure" text, "notes" text );
SELECT "cylinders" FROM "steam_locomotives" WHERE "builder"='Longbottom, Barnsley';
1-1157867-2
Who is the builder of the locomotives with wheel arrangement of 2-4-2 T?
CREATE TABLE "steam_locomotives" ( "name" text, "number" text, "builder" text, "date_built" text, "wheel_arrangement" text, "driving_wheels" text, "cylinders" text, "boiler_pressure" text, "notes" text );
SELECT "builder" FROM "steam_locomotives" WHERE "wheel_arrangement"='2-4-2 T';
1-1157867-2
On what date did Hudswell Clarke build the locomotive with 0-6-0 ST wheel arrangements?
CREATE TABLE "steam_locomotives" ( "name" text, "number" text, "builder" text, "date_built" text, "wheel_arrangement" text, "driving_wheels" text, "cylinders" text, "boiler_pressure" text, "notes" text );
SELECT "date_built" FROM "steam_locomotives" WHERE "wheel_arrangement"='0-6-0 ST' AND "builder"='Hudswell Clarke';
1-1157867-2
What amount of times is the name, Bok De Korver listed?
CREATE TABLE "1905_1909" ( "number" real, "date_of_debut" text, "name" text, "date_of_birth" text, "number_of_caps" real, "number_of_goals" real, "date_of_death" text );
SELECT MAX("number") FROM "1905_1909" WHERE "name"='Bok de Korver';
1-11585313-1
What is the total number of goals on the debut date of 14-04-1907?
CREATE TABLE "1905_1909" ( "number" real, "date_of_debut" text, "name" text, "date_of_birth" text, "number_of_caps" real, "number_of_goals" real, "date_of_death" text );
SELECT COUNT("number_of_goals") FROM "1905_1909" WHERE "date_of_debut"='14-04-1907';
1-11585313-1
What is the date of debut that has a date of birth listed at 24-10-1887?
CREATE TABLE "1905_1909" ( "number" real, "date_of_debut" text, "name" text, "date_of_birth" text, "number_of_caps" real, "number_of_goals" real, "date_of_death" text );
SELECT "date_of_debut" FROM "1905_1909" WHERE "date_of_birth"='24-10-1887';
1-11585313-1
What is the name of person that scored 10 goals?
CREATE TABLE "1905_1909" ( "number" real, "date_of_debut" text, "name" text, "date_of_birth" text, "number_of_caps" real, "number_of_goals" real, "date_of_death" text );
SELECT "name" FROM "1905_1909" WHERE "number_of_goals"=10;
1-11585313-1
What is the name of the person whose date of death is 01-04-1954?
CREATE TABLE "1905_1909" ( "number" real, "date_of_debut" text, "name" text, "date_of_birth" text, "number_of_caps" real, "number_of_goals" real, "date_of_death" text );
SELECT "name" FROM "1905_1909" WHERE "date_of_death"='01-04-1954';
1-11585313-1
What is the toatl number of caps where the name is Hans Blume?
CREATE TABLE "1905_1909" ( "number" real, "date_of_debut" text, "name" text, "date_of_birth" text, "number_of_caps" real, "number_of_goals" real, "date_of_death" text );
SELECT COUNT("number_of_caps") FROM "1905_1909" WHERE "name"='Hans Blume';
1-11585313-1
What was the date of Henk Hordijk's death?
CREATE TABLE "1910_1919" ( "number" real, "date_of_debut" text, "name" text, "date_of_birth" text, "number_of_caps" real, "number_of_goals" real, "date_of_death" text );
SELECT "date_of_death" FROM "1910_1919" WHERE "name"='Henk Hordijk';
1-11585313-2
What frequency is the pentium dual-core t3200?
CREATE TABLE "65_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "l2_cache" text, "fsb" text, "mult" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "frequency" FROM "65_nm" WHERE "model_number"='Pentium Dual-Core T3200';
1-11602313-4
What is the frequency of the model with part number lf80537gf0411m?
CREATE TABLE "65_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "l2_cache" text, "fsb" text, "mult" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "frequency" FROM "65_nm" WHERE "part_number_s"='LF80537GF0411M';
1-11602313-4
What is the FSB of the model with part number lf80537gf0411m?
CREATE TABLE "65_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "l2_cache" text, "fsb" text, "mult" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "fsb" FROM "65_nm" WHERE "part_number_s"='LF80537GF0411M';
1-11602313-4
What is the FSB of the model with part number lf80537ge0251mn?
CREATE TABLE "65_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "l2_cache" text, "fsb" text, "mult" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "fsb" FROM "65_nm" WHERE "part_number_s"='LF80537GE0251MN';
1-11602313-4
What is the socket for the pentium dual-core t2410?
CREATE TABLE "65_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "l2_cache" text, "fsb" text, "mult" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "socket" FROM "65_nm" WHERE "model_number"='Pentium Dual-Core T2410';
1-11602313-4
What is the release date for the model with sspec number sla4h(m0)?
CREATE TABLE "65_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "l2_cache" text, "fsb" text, "mult" text, "voltage" text, "tdp" text, "socket" text, "release_date" text, "part_number_s" text, "release_price_usd" text );
SELECT "release_date" FROM "65_nm" WHERE "s_spec_number"='SLA4H(M0)';
1-11602313-4
How many different scores are there for the Verizon Classic?
CREATE TABLE "tournament_results" ( "date" text, "tournament" text, "location" text, "purse" real, "winner" text, "score" text, "1st_prize" real );
SELECT COUNT("score") FROM "tournament_results" WHERE "tournament"='Verizon Classic';
1-11603006-1
What was the score for the tournament in Michigan where the purse was smaller than 1813335.221493934?
CREATE TABLE "tournament_results" ( "date" text, "tournament" text, "location" text, "purse" real, "winner" text, "score" text, "1st_prize" real );
SELECT "score" FROM "tournament_results" WHERE "location"='Michigan' AND "purse"<1813335.221493934;
1-11603006-1
How many tournaments were held in Maryland?
CREATE TABLE "tournament_results" ( "date" text, "tournament" text, "location" text, "purse" real, "winner" text, "score" text, "1st_prize" real );
SELECT COUNT("tournament") FROM "tournament_results" WHERE "location"='Maryland';
1-11603006-1
How many different locations have the score 207 (-10)?
CREATE TABLE "tournament_results" ( "date" text, "tournament" text, "location" text, "purse" real, "winner" text, "score" text, "1st_prize" real );
SELECT COUNT("location") FROM "tournament_results" WHERE "score"='207 (-10)';
1-11603006-1
What is the founding of parsu cimmarons?
CREATE TABLE "table1_11604804_5" ( "institution" text, "nickname" text, "status" text, "founded" real, "color" text, "location" text );
SELECT MIN("founded") FROM "table1_11604804_5" WHERE "nickname"='ParSU Cimmarons';
1-11604804-5
What was the founding of navy blue?
CREATE TABLE "table1_11604804_5" ( "institution" text, "nickname" text, "status" text, "founded" real, "color" text, "location" text );
SELECT "founded" FROM "table1_11604804_5" WHERE "color"='Navy Blue';
1-11604804-5
What was the number of nickname founded 1918?
CREATE TABLE "table1_11604804_5" ( "institution" text, "nickname" text, "status" text, "founded" real, "color" text, "location" text );
SELECT COUNT("nickname") FROM "table1_11604804_5" WHERE "founded"=1918;
1-11604804-5
What was the number of location of nickname cbsua formerly known cssac?
CREATE TABLE "table1_11604804_5" ( "institution" text, "nickname" text, "status" text, "founded" real, "color" text, "location" text );
SELECT COUNT("location") FROM "table1_11604804_5" WHERE "nickname"='CBSUA formerly known CSSAC';
1-11604804-5
Name the tournament for arizona
CREATE TABLE "table1_11603267_1" ( "date" text, "tournament" text, "location" text, "purse" real, "winner" text, "score" text, "1st_prize" real );
SELECT "tournament" FROM "table1_11603267_1" WHERE "location"='Arizona';
1-11603267-1
Name the state and federal when property taxes is 17,199,210
CREATE TABLE "district_122_gross_revenue_by_sources" ( "year" real, "property_taxes" text, "investment_earnings" text, "other_local_sources" text, "state_federal" text, "total_revenue" text );
SELECT "state_federal" FROM "district_122_gross_revenue_by_sources" WHERE "property_taxes"='17,199,210';
1-11608735-3
What is the local sources for property taxes of 11,631,227?
CREATE TABLE "district_122_gross_revenue_by_sources" ( "year" real, "property_taxes" text, "investment_earnings" text, "other_local_sources" text, "state_federal" text, "total_revenue" text );
SELECT "other_local_sources" FROM "district_122_gross_revenue_by_sources" WHERE "property_taxes"='11,631,227';
1-11608735-3
What is the number of local sources for state and federal 12,929,489
CREATE TABLE "district_122_gross_revenue_by_sources" ( "year" real, "property_taxes" text, "investment_earnings" text, "other_local_sources" text, "state_federal" text, "total_revenue" text );
SELECT "other_local_sources" FROM "district_122_gross_revenue_by_sources" WHERE "state_federal"='12,929,489';
1-11608735-3
What seat does плоцкая губерния hold?
CREATE TABLE "1893" ( "governorate" text, "name_in_russian" text, "name_in_polish" text, "seat" text, "area_in_thousands_of_km_2" real, "population_in_thousands_1905" real );
SELECT "seat" FROM "1893" WHERE "name_in_russian"='Плоцкая губерния';
1-11614581-3
Whose name in Polish holds the Lublin seat?
CREATE TABLE "1893" ( "governorate" text, "name_in_russian" text, "name_in_polish" text, "seat" text, "area_in_thousands_of_km_2" real, "population_in_thousands_1905" real );
SELECT "name_in_polish" FROM "1893" WHERE "seat"='Lublin';
1-11614581-3
Who, in Polish, governs a location with a population of 1640 (in thousands)?
CREATE TABLE "1893" ( "governorate" text, "name_in_russian" text, "name_in_polish" text, "seat" text, "area_in_thousands_of_km_2" real, "population_in_thousands_1905" real );
SELECT "name_in_polish" FROM "1893" WHERE "population_in_thousands_1905"=1640;
1-11614581-3
What seat does Gubernia Warszawska hold?
CREATE TABLE "1893" ( "governorate" text, "name_in_russian" text, "name_in_polish" text, "seat" text, "area_in_thousands_of_km_2" real, "population_in_thousands_1905" real );
SELECT "seat" FROM "1893" WHERE "name_in_polish"='Gubernia warszawska';
1-11614581-3
What population (in thousands) is Lublin's seat?
CREATE TABLE "1893" ( "governorate" text, "name_in_russian" text, "name_in_polish" text, "seat" text, "area_in_thousands_of_km_2" real, "population_in_thousands_1905" real );
SELECT "population_in_thousands_1905" FROM "1893" WHERE "seat"='Lublin';
1-11614581-3
плоцкая губерния governs an area with what area (in thousand km 2)?
CREATE TABLE "1893" ( "governorate" text, "name_in_russian" text, "name_in_polish" text, "seat" text, "area_in_thousands_of_km_2" real, "population_in_thousands_1905" real );
SELECT "area_in_thousands_of_km_2" FROM "1893" WHERE "name_in_russian"='Плоцкая губерния';
1-11614581-3
What is the up/down at the venue that hosted 7 games?
CREATE TABLE "match_attendance" ( "venue" text, "hosted" real, "average" real, "highest" real, "lowest" real, "total" real, "last_year" text, "up_down" text );
SELECT "up_down" FROM "match_attendance" WHERE "hosted"=7;
1-1161065-28
What was the attendance last year at Manuka Oval?
CREATE TABLE "match_attendance" ( "venue" text, "hosted" real, "average" real, "highest" real, "lowest" real, "total" real, "last_year" text, "up_down" text );
SELECT "last_year" FROM "match_attendance" WHERE "venue"='Manuka Oval';
1-1161065-28
What was the lowest attendance figure at Football Park?
CREATE TABLE "match_attendance" ( "venue" text, "hosted" real, "average" real, "highest" real, "lowest" real, "total" real, "last_year" text, "up_down" text );
SELECT "lowest" FROM "match_attendance" WHERE "venue"='Football Park';
1-1161065-28
What is the total of port adelaide
CREATE TABLE "match_attendance" ( "team" text, "hosted" real, "average" real, "highest" real, "lowest" real, "total" real, "last_year" real, "up_down" text );
SELECT MAX("total") FROM "match_attendance" WHERE "team"='Port Adelaide';
1-1161065-27
what's the maximum purse( $ ) with score value of 204 (-9)
CREATE TABLE "tournament_results" ( "date" text, "tournament" text, "location" text, "purse" real, "winner" text, "score" text, "1st_prize" real );
SELECT MAX("purse") FROM "tournament_results" WHERE "score"='204 (-9)';
1-11621915-1
what's the winner with purse( $ ) value of bigger than 964017.2297960471 and date value of may 28
CREATE TABLE "tournament_results" ( "date" text, "tournament" text, "location" text, "purse" real, "winner" text, "score" text, "1st_prize" real );
SELECT "winner" FROM "tournament_results" WHERE "purse">964017.2297960471 AND "date"='May 28';
1-11621915-1
what's the winner with tournament value of kroger senior classic
CREATE TABLE "tournament_results" ( "date" text, "tournament" text, "location" text, "purse" real, "winner" text, "score" text, "1st_prize" real );
SELECT "winner" FROM "tournament_results" WHERE "tournament"='Kroger Senior Classic';
1-11621915-1
what's the date with tournament value of ford senior players championship
CREATE TABLE "tournament_results" ( "date" text, "tournament" text, "location" text, "purse" real, "winner" text, "score" text, "1st_prize" real );
SELECT "date" FROM "tournament_results" WHERE "tournament"='Ford Senior Players Championship';
1-11621915-1
what's the location with tournament value of quicksilver classic
CREATE TABLE "tournament_results" ( "date" text, "tournament" text, "location" text, "purse" real, "winner" text, "score" text, "1st_prize" real );
SELECT "location" FROM "tournament_results" WHERE "tournament"='Quicksilver Classic';
1-11621915-1
what's the score with date  oct 1
CREATE TABLE "tournament_results" ( "date" text, "tournament" text, "location" text, "purse" real, "winner" text, "score" text, "1st_prize" real );
SELECT "score" FROM "tournament_results" WHERE "date"='Oct 1';
1-11621915-1
What was the score for the Toshiba Senior Classic?
CREATE TABLE "tournament_results" ( "date" text, "tournament" text, "location" text, "purse" real, "winner" text, "score" text, "1st_prize" real );
SELECT "score" FROM "tournament_results" WHERE "tournament"='Toshiba Senior Classic';
1-11621799-1