question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
Name the record for black knights points 54
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT "record" FROM "schedule" WHERE "black_knights_points"=54;
1-21092444-1
Name the opponents stanford
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT "opponents" FROM "schedule" WHERE "opponent"='Stanford';
1-21092444-1
Name the result for ursinus college
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT "result" FROM "schedule" WHERE "opponent"='Ursinus College';
1-21094951-1
Name the black knights points for loss result
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT MAX("black_knights_points") FROM "schedule" WHERE "result"='Loss';
1-21094951-1
Name the date for 6-2 record
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT "date" FROM "schedule" WHERE "record"='6-2';
1-21094951-1
Name the opponents for record being 2-0
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "black_knights_points" real, "opponents" real, "record" text );
SELECT MAX("opponents") FROM "schedule" WHERE "record"='2-0';
1-21094951-1
How man innings were there during the period with a career average of 41.43?
CREATE TABLE "table1_21100348_10" ( "rank" real, "average" text, "player" text, "runs" real, "innings" real, "not_out" real, "period" text );
SELECT "innings" FROM "table1_21100348_10" WHERE "average"='41.43';
1-21100348-10
During what period did Ricky Ponting play?
CREATE TABLE "table1_21100348_10" ( "rank" real, "average" text, "player" text, "runs" real, "innings" real, "not_out" real, "period" text );
SELECT "period" FROM "table1_21100348_10" WHERE "player"='Ricky Ponting';
1-21100348-10
During what period was the career average 44.10?
CREATE TABLE "table1_21100348_10" ( "rank" real, "average" text, "player" text, "runs" real, "innings" real, "not_out" real, "period" text );
SELECT "period" FROM "table1_21100348_10" WHERE "average"='44.10';
1-21100348-10
What was the smallest numbered rank for Michael Bevan?
CREATE TABLE "table1_21100348_10" ( "rank" real, "average" text, "player" text, "runs" real, "innings" real, "not_out" real, "period" text );
SELECT MIN("rank") FROM "table1_21100348_10" WHERE "player"='Michael Bevan';
1-21100348-10
What period was there a career average of 48.15?
CREATE TABLE "table1_21100348_10" ( "rank" real, "average" text, "player" text, "runs" real, "innings" real, "not_out" real, "period" text );
SELECT "period" FROM "table1_21100348_10" WHERE "average"='48.15';
1-21100348-10
when the value (int $1000) is 409566, what is the commodity?
CREATE TABLE "table1_21109892_1" ( "rank" real, "commodity" text, "value_int_1000" real, "production_mt" real, "quantity_world_rank" text, "value_world_rank" text );
SELECT "commodity" FROM "table1_21109892_1" WHERE "value_int_1000"=409566;
1-21109892-1
When the value rank is 23, what is the value?
CREATE TABLE "table1_21109892_1" ( "rank" real, "commodity" text, "value_int_1000" real, "production_mt" real, "quantity_world_rank" text, "value_world_rank" text );
SELECT MIN("value_int_1000") FROM "table1_21109892_1" WHERE "value_world_rank"='23';
1-21109892-1
When the value world rank is 7, what is the rank?
CREATE TABLE "table1_21109892_1" ( "rank" real, "commodity" text, "value_int_1000" real, "production_mt" real, "quantity_world_rank" text, "value_world_rank" text );
SELECT "rank" FROM "table1_21109892_1" WHERE "value_world_rank"='7';
1-21109892-1
When the production (mt) is 650000, what is the total number of rank?
CREATE TABLE "table1_21109892_1" ( "rank" real, "commodity" text, "value_int_1000" real, "production_mt" real, "quantity_world_rank" text, "value_world_rank" text );
SELECT COUNT("rank") FROM "table1_21109892_1" WHERE "production_mt"=650000;
1-21109892-1
When the production (mt) is 446424, what is the value world rank ?
CREATE TABLE "table1_21109892_1" ( "rank" real, "commodity" text, "value_int_1000" real, "production_mt" real, "quantity_world_rank" text, "value_world_rank" text );
SELECT "value_world_rank" FROM "table1_21109892_1" WHERE "production_mt"=446424;
1-21109892-1
where value world rank is 12, what is the quantity world rank?
CREATE TABLE "table1_21109892_1" ( "rank" real, "commodity" text, "value_int_1000" real, "production_mt" real, "quantity_world_rank" text, "value_world_rank" text );
SELECT "quantity_world_rank" FROM "table1_21109892_1" WHERE "value_world_rank"='12';
1-21109892-1
What is the rank of Tim Paine?
CREATE TABLE "most_dismissals_catches_plus_stumpings_i" ( "rank" real, "dismissals" real, "player" text, "matches" real, "caught" real, "stumped" real );
SELECT "rank" FROM "most_dismissals_catches_plus_stumpings_i" WHERE "player"='Tim Paine';
1-21100348-15
What rank does Rodney Marsh have?
CREATE TABLE "most_dismissals_catches_plus_stumpings_i" ( "rank" real, "dismissals" real, "player" text, "matches" real, "caught" real, "stumped" real );
SELECT MAX("rank") FROM "most_dismissals_catches_plus_stumpings_i" WHERE "player"='Rodney Marsh';
1-21100348-15
Name the 1st place for limoges csp
CREATE TABLE "by_season" ( "season" text, "1st_place" text, "2nd_place" text, "3rd_place" text, "4th_place" text );
SELECT "1st_place" FROM "by_season" WHERE "3rd_place"='Limoges CSP';
1-21112627-1
What is the rank for a strike rate of 91.67?
CREATE TABLE "table1_21100348_11" ( "rank" real, "strike_rate" text, "player" text, "innings" real, "balls_faced" real, "runs" real, "period" text );
SELECT MAX("rank") FROM "table1_21100348_11" WHERE "strike_rate"='91.67';
1-21100348-11
What player has 477 runs?
CREATE TABLE "table1_21100348_11" ( "rank" real, "strike_rate" text, "player" text, "innings" real, "balls_faced" real, "runs" real, "period" text );
SELECT "player" FROM "table1_21100348_11" WHERE "runs"=477;
1-21100348-11
How many innings does rank 3 have?
CREATE TABLE "table1_21100348_11" ( "rank" real, "strike_rate" text, "player" text, "innings" real, "balls_faced" real, "runs" real, "period" text );
SELECT MAX("innings") FROM "table1_21100348_11" WHERE "rank"=3;
1-21100348-11
What was the goals for in the season that the pct % was 0.604?
CREATE TABLE "yearly_results" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "pct_pct" text, "goals_for" real, "goals_against" real, "standing" text );
SELECT MAX("goals_for") FROM "yearly_results" WHERE "pct_pct"='0.604';
1-2110959-1
In what season was the pct % 0.552?
CREATE TABLE "yearly_results" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "pct_pct" text, "goals_for" real, "goals_against" real, "standing" text );
SELECT "season" FROM "yearly_results" WHERE "pct_pct"='0.552';
1-2110959-1
What was the standing in the season that the pct% was 0.769?
CREATE TABLE "yearly_results" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "pct_pct" text, "goals_for" real, "goals_against" real, "standing" text );
SELECT "standing" FROM "yearly_results" WHERE "pct_pct"='0.769';
1-2110959-1
What were the points in the 1958-59 season?
CREATE TABLE "yearly_results" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "pct_pct" text, "goals_for" real, "goals_against" real, "standing" text );
SELECT "points" FROM "yearly_results" WHERE "season"='1958-59';
1-2110959-1
Who were Dürr's opponents in the final on year 1968?
CREATE TABLE "mixed_doubles_8_4_4" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score_in_the_final" text );
SELECT "opponents_in_the_final" FROM "mixed_doubles_8_4_4" WHERE "year"=1968;
1-2112025-3
What was the court surface on year 1971?
CREATE TABLE "mixed_doubles_8_4_4" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score_in_the_final" text );
SELECT "surface" FROM "mixed_doubles_8_4_4" WHERE "year"=1971;
1-2112025-3
Name the most top 10s for 2 best finish
CREATE TABLE "lpga_tour_career_summary" ( "year" real, "tournaments_played" real, "cuts_made" real, "wins" real, "2nd" real, "3rd" real, "top_10s" real, "best_finish" text, "earnings" real, "money_list_rank" real, "scoring_average" text, "scoring_rank" real );
SELECT MAX("top_10s") FROM "lpga_tour_career_summary" WHERE "best_finish"='2';
1-2112220-6
Name the tournaments played for 2004
CREATE TABLE "lpga_tour_career_summary" ( "year" real, "tournaments_played" real, "cuts_made" real, "wins" real, "2nd" real, "3rd" real, "top_10s" real, "best_finish" text, "earnings" real, "money_list_rank" real, "scoring_average" text, "scoring_rank" real );
SELECT MIN("tournaments_played") FROM "lpga_tour_career_summary" WHERE "year"=2004;
1-2112220-6
How many submission of the night occurred when the fighter was matt wiman?
CREATE TABLE "fighters_with_the_most_awards" ( "fighter" text, "fights_of_the_night" real, "knockouts_of_the_night" real, "submissions_of_the_night" real, "awards_total" real, "status" text );
SELECT MAX("submissions_of_the_night") FROM "fighters_with_the_most_awards" WHERE "fighter"='Matt Wiman';
1-21114902-1
How many knockout of the night occurred when joe lauzon fought.
CREATE TABLE "fighters_with_the_most_awards" ( "fighter" text, "fights_of_the_night" real, "knockouts_of_the_night" real, "submissions_of_the_night" real, "awards_total" real, "status" text );
SELECT "knockouts_of_the_night" FROM "fighters_with_the_most_awards" WHERE "fighter"='Joe Lauzon';
1-21114902-1
What is the smallest number of episodes in a season?
CREATE TABLE "table1_2113721_7" ( "dvd_name" text, "episodes" real, "region_1" text, "region_2" text, "region_4" text );
SELECT MIN("episodes") FROM "table1_2113721_7";
1-2113721-7
When was Season Three premiered in region 2?
CREATE TABLE "table1_2113721_7" ( "dvd_name" text, "episodes" real, "region_1" text, "region_2" text, "region_4" text );
SELECT "region_2" FROM "table1_2113721_7" WHERE "dvd_name"='Season Three';
1-2113721-7
Where is every location with specialization of textile engineering?
CREATE TABLE "public_universities" ( "university" text, "nick" text, "university_status" real, "founded" real, "location" text, "division" text, "specialization" text, "website" text );
SELECT "location" FROM "public_universities" WHERE "specialization"='Textile engineering';
1-2112260-1
What is every website with specialization of engineering and division of dhaka division?
CREATE TABLE "public_universities" ( "university" text, "nick" text, "university_status" real, "founded" real, "location" text, "division" text, "specialization" text, "website" text );
SELECT "website" FROM "public_universities" WHERE "specialization"='Engineering' AND "division"='Dhaka division';
1-2112260-1
Where is every location where Nick is Bru?
CREATE TABLE "public_universities" ( "university" text, "nick" text, "university_status" real, "founded" real, "location" text, "division" text, "specialization" text, "website" text );
SELECT "location" FROM "public_universities" WHERE "nick"='BRU';
1-2112260-1
What is every specialization with the website Jstu.edu.bd
CREATE TABLE "public_universities" ( "university" text, "nick" text, "university_status" real, "founded" real, "location" text, "division" text, "specialization" text, "website" text );
SELECT "specialization" FROM "public_universities" WHERE "website"='jstu.edu.bd';
1-2112260-1
Name the languages for cyprus
CREATE TABLE "impact" ( "member_countries" text, "population" real, "area_km" real, "gdp_billion_us" text, "gdp_per_capita_us" real, "languages" text );
SELECT "languages" FROM "impact" WHERE "member_countries"='Cyprus';
1-21133193-1
Name the languages for estonia
CREATE TABLE "impact" ( "member_countries" text, "population" real, "area_km" real, "gdp_billion_us" text, "gdp_per_capita_us" real, "languages" text );
SELECT "languages" FROM "impact" WHERE "member_countries"='Estonia';
1-21133193-1
Name the most gdp per capita latvian
CREATE TABLE "impact" ( "member_countries" text, "population" real, "area_km" real, "gdp_billion_us" text, "gdp_per_capita_us" real, "languages" text );
SELECT MAX("gdp_per_capita_us") FROM "impact" WHERE "languages"='Latvian';
1-21133193-1
how many archive were when run time is 24:34
CREATE TABLE "table1_2112766_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "archive" FROM "table1_2112766_1" WHERE "run_time"='24:34';
1-2112766-1
what is all the broadcast date when viewers were 8.4 millions
CREATE TABLE "table1_2112766_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT COUNT("broadcast_date") FROM "table1_2112766_1" WHERE "viewers_in_millions"='8.4';
1-2112766-1
how many episode have 8.4 millions viewer.
CREATE TABLE "table1_2112766_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT COUNT("episode") FROM "table1_2112766_1" WHERE "viewers_in_millions"='8.4';
1-2112766-1
What was the title in season #8?
CREATE TABLE "table1_21146729_6" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "original_airdate" text );
SELECT "title" FROM "table1_21146729_6" WHERE "season_num"=8;
1-21146729-6
Who was the director when the writer(s) was John W. Bloch?
CREATE TABLE "table1_21146729_6" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "original_airdate" text );
SELECT "director" FROM "table1_21146729_6" WHERE "writer_s"='John W. Bloch';
1-21146729-6
What was the series# with the original airdate of october 23, 1967?
CREATE TABLE "table1_21146729_6" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "original_airdate" text );
SELECT MAX("series_num") FROM "table1_21146729_6" WHERE "original_airdate"='October 23, 1967';
1-21146729-6
what is the title when the writer(s) is jack turley?
CREATE TABLE "table1_21146729_6" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "original_airdate" text );
SELECT "title" FROM "table1_21146729_6" WHERE "writer_s"='Jack Turley';
1-21146729-6
How many of the series # when the original airdate is september 25, 1967?
CREATE TABLE "table1_21146729_6" ( "series_num" real, "season_num" real, "title" text, "director" text, "writer_s" text, "original_airdate" text );
SELECT COUNT("series_num") FROM "table1_21146729_6" WHERE "original_airdate"='September 25, 1967';
1-21146729-6
Name the episode for run time of 22:50
CREATE TABLE "table1_2114308_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "episode" FROM "table1_2114308_1" WHERE "run_time"='22:50';
1-2114308-1
Name the broadcast date of 6.9 million viewers
CREATE TABLE "table1_2114308_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "broadcast_date" FROM "table1_2114308_1" WHERE "viewers_in_millions"='6.9';
1-2114308-1
Name the broadcast date of run time being 24:14
CREATE TABLE "table1_2114308_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "broadcast_date" FROM "table1_2114308_1" WHERE "run_time"='24:14';
1-2114308-1
Which archive has a run time of 23:48?
CREATE TABLE "table1_2114238_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "archive" FROM "table1_2114238_1" WHERE "run_time"='23:48';
1-2114238-1
Which broadcast date has 6.8 million viewers?
CREATE TABLE "table1_2114238_1" ( "episode" text, "broadcast_date" text, "run_time" text, "viewers_in_millions" text, "archive" text );
SELECT "broadcast_date" FROM "table1_2114238_1" WHERE "viewers_in_millions"='6.8';
1-2114238-1
What Petrol engine has total power of ps (kw; bhp)@5400-6500?
CREATE TABLE "petrol_engines" ( "model" text, "years" text, "type_code" text, "transmission" text, "max_power" text, "torque" text, "0_km_h_mph_sec" text, "top_speed" text );
SELECT "model" FROM "petrol_engines" WHERE "max_power"='PS (kW; bhp)@5400-6500';
1-21154679-1
What is top speed of a petrol engine at ps (kw; bhp)@5250-6250?
CREATE TABLE "petrol_engines" ( "model" text, "years" text, "type_code" text, "transmission" text, "max_power" text, "torque" text, "0_km_h_mph_sec" text, "top_speed" text );
SELECT "top_speed" FROM "petrol_engines" WHERE "max_power"='PS (kW; bhp)@5250-6250';
1-21154679-1
What is the maximum speed for total power of ps (kw; bhp)?
CREATE TABLE "petrol_engines" ( "model" text, "years" text, "type_code" text, "transmission" text, "max_power" text, "torque" text, "0_km_h_mph_sec" text, "top_speed" text );
SELECT "top_speed" FROM "petrol_engines" WHERE "max_power"='PS (kW; bhp)';
1-21154679-1
What is the s7 4.0 tfsi quattro engine torque?
CREATE TABLE "petrol_engines" ( "model" text, "years" text, "type_code" text, "transmission" text, "max_power" text, "torque" text, "0_km_h_mph_sec" text, "top_speed" text );
SELECT "torque" FROM "petrol_engines" WHERE "model"='S7 4.0 TFSI quattro';
1-21154679-1
Name the number in season for 4300062
CREATE TABLE "table1_21165255_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 MAX("no_in_season") FROM "table1_21165255_1" WHERE "production_code"=4300062;
1-21165255-1
Name the number of cancelled for turnham green
CREATE TABLE "table1_211615_2" ( "station" text, "line" text, "planned" real, "cancelled" real, "proposal" text, "details" text );
SELECT COUNT("cancelled") FROM "table1_211615_2" WHERE "station"='Turnham Green';
1-211615-2
Name the number of details for emlyn road
CREATE TABLE "table1_211615_2" ( "station" text, "line" text, "planned" real, "cancelled" real, "proposal" text, "details" text );
SELECT COUNT("details") FROM "table1_211615_2" WHERE "station"='Emlyn Road';
1-211615-2
What episode number in the series was directed by John Behring?
CREATE TABLE "table1_21164557_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_millions" text );
SELECT MAX("no_in_series") FROM "table1_21164557_1" WHERE "directed_by"='John Behring';
1-21164557-1
How many original air dates were there for episodes with a production code of 4398016?
CREATE TABLE "table1_21164557_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_millions" text );
SELECT COUNT("original_air_date") FROM "table1_21164557_1" WHERE "production_code"=4398016;
1-21164557-1
How many dates did the episode "out of sight" originally air on?
CREATE TABLE "table1_21164557_1" ( "no_in_series" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_millions" text );
SELECT COUNT("original_air_date") FROM "table1_21164557_1" WHERE "title"='\"Out of Sight\"';
1-21164557-1
Name the rank that premiered september 25, 2001
CREATE TABLE "nielsen_ratings" ( "season" real, "season_premiere" text, "season_finale" text, "tv_season" text, "rank" text, "viewers_in_millions" text );
SELECT "rank" FROM "nielsen_ratings" WHERE "season_premiere"='September 25, 2001';
1-211714-2
Name the rank for 14.80 viewers
CREATE TABLE "nielsen_ratings" ( "season" real, "season_premiere" text, "season_finale" text, "tv_season" text, "rank" text, "viewers_in_millions" text );
SELECT "rank" FROM "nielsen_ratings" WHERE "viewers_in_millions"='14.80';
1-211714-2
Name the number of rank for season 6
CREATE TABLE "nielsen_ratings" ( "season" real, "season_premiere" text, "season_finale" text, "tv_season" text, "rank" text, "viewers_in_millions" text );
SELECT COUNT("rank") FROM "nielsen_ratings" WHERE "season"=6;
1-211714-2
What date did the episode with a production code of 4301085 originally air?
CREATE TABLE "table1_21172539_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_21172539_1" WHERE "production_code"=4301085;
1-21172539-1
What date did episode 15 of the season originally air?
CREATE TABLE "table1_21172539_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_21172539_1" WHERE "no_in_season"=15;
1-21172539-1
How many items are listed under the column of U.S. viewers for episode "Bite Me"?
CREATE TABLE "table1_21172539_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 COUNT("u_s_viewers_millions") FROM "table1_21172539_1" WHERE "title"='\"Bite Me\"';
1-21172539-1
Name the remarks for sawhouse
CREATE TABLE "nomenclature" ( "chinese_industrial_designation" text, "export_type_designation" text, "nato_reporting_name" text, "nato_u_s_dod_code" text, "remarks" text );
SELECT "remarks" FROM "nomenclature" WHERE "nato_reporting_name"='SAWHOUSE';
1-211791-1
Name the nato/ us dod code for sabbot
CREATE TABLE "nomenclature" ( "chinese_industrial_designation" text, "export_type_designation" text, "nato_reporting_name" text, "nato_u_s_dod_code" text, "remarks" text );
SELECT "nato_u_s_dod_code" FROM "nomenclature" WHERE "nato_reporting_name"='SABBOT';
1-211791-1
When autodromo nazionale monza is the circuit what is the report?
CREATE TABLE "race_calendar_and_results" ( "round" real, "country" text, "circuit" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_rider" text, "winning_team" text, "report" text );
SELECT "report" FROM "race_calendar_and_results" WHERE "circuit"='Autodromo Nazionale Monza';
1-21191496-1
When michele pirro is the pole position what is the date?
CREATE TABLE "race_calendar_and_results" ( "round" real, "country" text, "circuit" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_rider" text, "winning_team" text, "report" text );
SELECT "date" FROM "race_calendar_and_results" WHERE "pole_position"='Michele Pirro';
1-21191496-1
When Netherlands is the country what is the report?
CREATE TABLE "race_calendar_and_results" ( "round" real, "country" text, "circuit" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_rider" text, "winning_team" text, "report" text );
SELECT "report" FROM "race_calendar_and_results" WHERE "country"='Netherlands';
1-21191496-1
When circuit ricardo tormo is the circuit who is the winning team?
CREATE TABLE "race_calendar_and_results" ( "round" real, "country" text, "circuit" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_rider" text, "winning_team" text, "report" text );
SELECT "winning_team" FROM "race_calendar_and_results" WHERE "circuit"='Circuit Ricardo Tormo';
1-21191496-1
When circuit ricardo tormo is the circuit what is the round?
CREATE TABLE "race_calendar_and_results" ( "round" real, "country" text, "circuit" text, "date" text, "pole_position" text, "fastest_lap" text, "winning_rider" text, "winning_team" text, "report" text );
SELECT COUNT("round") FROM "race_calendar_and_results" WHERE "circuit"='Circuit Ricardo Tormo';
1-21191496-1
How many opponents were there when the record was 6-0?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "cowboys_points" real, "opponents" real, "record" text );
SELECT COUNT("opponent") FROM "schedule" WHERE "record"='6-0';
1-21197135-1
How many opponents were there when the record was 6-0?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "cowboys_points" real, "opponents" real, "record" text );
SELECT "date" FROM "schedule" WHERE "record"='6-0';
1-21197135-1
What was the team record when the team played @ Utah?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "cowboys_points" real, "opponents" real, "record" text );
SELECT "record" FROM "schedule" WHERE "opponent"='@ Utah';
1-21197135-1
How many points did the Cowboys have when they had a 7-0 record?
CREATE TABLE "schedule" ( "game" real, "date" text, "opponent" text, "result" text, "cowboys_points" real, "opponents" real, "record" text );
SELECT "cowboys_points" FROM "schedule" WHERE "record"='7-0';
1-21197135-1
Name the scoreboard for total being 23.5
CREATE TABLE "table1_21234111_6" ( "order" real, "couple" text, "karen" text, "nicky" text, "jason" text, "ruthie" text, "robin" text, "total" text, "scoreboard" text, "song" text, "public_vote_pct" text, "result" text );
SELECT "scoreboard" FROM "table1_21234111_6" WHERE "total"='23.5';
1-21234111-6
Name the jason for public vote being 19.20%
CREATE TABLE "table1_21234111_6" ( "order" real, "couple" text, "karen" text, "nicky" text, "jason" text, "ruthie" text, "robin" text, "total" text, "scoreboard" text, "song" text, "public_vote_pct" text, "result" text );
SELECT "jason" FROM "table1_21234111_6" WHERE "public_vote_pct"='19.20%';
1-21234111-6
Name the nicky for " take a chance on me "– abba
CREATE TABLE "table1_21234111_6" ( "order" real, "couple" text, "karen" text, "nicky" text, "jason" text, "ruthie" text, "robin" text, "total" text, "scoreboard" text, "song" text, "public_vote_pct" text, "result" text );
SELECT "nicky" FROM "table1_21234111_6" WHERE "song"='\" Take a Chance on Me \"– ABBA';
1-21234111-6
Name the number of song for scoreboard being 3rd
CREATE TABLE "table1_21234111_6" ( "order" real, "couple" text, "karen" text, "nicky" text, "jason" text, "ruthie" text, "robin" text, "total" text, "scoreboard" text, "song" text, "public_vote_pct" text, "result" text );
SELECT COUNT("song") FROM "table1_21234111_6" WHERE "scoreboard"='3rd';
1-21234111-6
state the opponent on halliwell jones stadium in super league xiv
CREATE TABLE "fixtures_and_results" ( "competition" text, "round" text, "opponent" text, "result" text, "score" text, "home_away" text, "venue" text, "attendance" real, "date" text );
SELECT "opponent" FROM "fixtures_and_results" WHERE "venue"='Halliwell Jones Stadium' AND "competition"='Super League XIV';
1-21256068-3
how many venues were played on in round 1
CREATE TABLE "fixtures_and_results" ( "competition" text, "round" text, "opponent" text, "result" text, "score" text, "home_away" text, "venue" text, "attendance" real, "date" text );
SELECT COUNT("venue") FROM "fixtures_and_results" WHERE "round"='1';
1-21256068-3
state the round that had a game score 50-10
CREATE TABLE "fixtures_and_results" ( "competition" text, "round" text, "opponent" text, "result" text, "score" text, "home_away" text, "venue" text, "attendance" real, "date" text );
SELECT "round" FROM "fixtures_and_results" WHERE "score"='50-10';
1-21256068-3
state the round that had a game attended attended by 9359 people
CREATE TABLE "fixtures_and_results" ( "competition" text, "round" text, "opponent" text, "result" text, "score" text, "home_away" text, "venue" text, "attendance" real, "date" text );
SELECT "round" FROM "fixtures_and_results" WHERE "attendance"=9359;
1-21256068-3
how many rounds had the score 44-22
CREATE TABLE "fixtures_and_results" ( "competition" text, "round" text, "opponent" text, "result" text, "score" text, "home_away" text, "venue" text, "attendance" real, "date" text );
SELECT COUNT("round") FROM "fixtures_and_results" WHERE "score"='44-22';
1-21256068-3
what's the score against crusaders
CREATE TABLE "fixtures_and_results" ( "competition" text, "round" text, "opponent" text, "result" text, "score" text, "home_away" text, "venue" text, "attendance" real, "date" text );
SELECT "score" FROM "fixtures_and_results" WHERE "opponent"='Crusaders';
1-21256068-3
How many Small catagories are there for the department that has a medium of 17101?
CREATE TABLE "irrigation_infrastructure" ( "department" text, "micro_10ha" real, "small_100ha" real, "medium_500ha" real, "big_500ha" real, "total" real );
SELECT COUNT("small_100ha") FROM "irrigation_infrastructure" WHERE "medium_500ha"=17101;
1-21249915-1
What is the total for Chuquisaca?
CREATE TABLE "irrigation_infrastructure" ( "department" text, "micro_10ha" real, "small_100ha" real, "medium_500ha" real, "big_500ha" real, "total" real );
SELECT "total" FROM "irrigation_infrastructure" WHERE "department"='Chuquisaca';
1-21249915-1
Which department has a small of 11370?
CREATE TABLE "irrigation_infrastructure" ( "department" text, "micro_10ha" real, "small_100ha" real, "medium_500ha" real, "big_500ha" real, "total" real );
SELECT "department" FROM "irrigation_infrastructure" WHERE "small_100ha"=11370;
1-21249915-1
How many total catagories are there for La Paz?
CREATE TABLE "irrigation_infrastructure" ( "department" text, "micro_10ha" real, "small_100ha" real, "medium_500ha" real, "big_500ha" real, "total" real );
SELECT COUNT("total") FROM "irrigation_infrastructure" WHERE "department"='La Paz';
1-21249915-1
What is the largest micro when the big is 1080?
CREATE TABLE "irrigation_infrastructure" ( "department" text, "micro_10ha" real, "small_100ha" real, "medium_500ha" real, "big_500ha" real, "total" real );
SELECT MAX("micro_10ha") FROM "irrigation_infrastructure" WHERE "big_500ha"=1080;
1-21249915-1
How many points under par was the winner of the Miyagi TV Cup Dunlop Ladies Open?
CREATE TABLE "jlpga_tour_15" ( "no" real, "date" text, "tournament" text, "winning_score" text, "to_par" text, "margin_of_victory" text, "runner_s_up" text );
SELECT "to_par" FROM "jlpga_tour_15" WHERE "tournament"='Miyagi TV Cup Dunlop Ladies Open';
1-2126093-3
What was the winning score of the Vernal Ladies tournament?
CREATE TABLE "jlpga_tour_15" ( "no" real, "date" text, "tournament" text, "winning_score" text, "to_par" text, "margin_of_victory" text, "runner_s_up" text );
SELECT "winning_score" FROM "jlpga_tour_15" WHERE "tournament"='Vernal Ladies';
1-2126093-3
Name the athlete for 3
CREATE TABLE "final_standings" ( "place" real, "athlete" text, "long_jump" real, "javelin" real, "200_m" real, "discus" real, "1500_m" real, "total" real );
SELECT "athlete" FROM "final_standings" WHERE "place"=3;
1-21276428-21