question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Which opponent has a record of 6-2?
CREATE TABLE table_21091127_1 (opponent VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_21091127_1 WHERE record = \"6-2\"" }
How many results have a game of 5?
CREATE TABLE table_21091127_1 (result VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT COUNT(result) FROM table_21091127_1 WHERE game = 5" }
What is the run time for the episode with 7.9 million viewers?
CREATE TABLE table_2108684_1 (run_time VARCHAR, viewers__in_millions_ VARCHAR)
{ "SQL_Query": "SELECT run_time FROM table_2108684_1 WHERE viewers__in_millions_ = \"7.9\"" }
What episode had a run time of 23:38?
CREATE TABLE table_2108684_1 (episode VARCHAR, run_time VARCHAR)
{ "SQL_Query": "SELECT episode FROM table_2108684_1 WHERE run_time = \"23:38\"" }
How many million viewers watched the episode with a run time of 25:22?
CREATE TABLE table_2108684_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)
{ "SQL_Query": "SELECT viewers__in_millions_ FROM table_2108684_1 WHERE run_time = \"25:22\"" }
Name the date for result loss for duke
CREATE TABLE table_21092444_1 (date VARCHAR, result VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT date FROM table_21092444_1 WHERE result = \"Loss\" AND opponent = \"Duke\"" }
Name the opponents for record of 2-1
CREATE TABLE table_21092444_1 (opponents VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT opponents FROM table_21092444_1 WHERE record = \"2-1\"" }
Name the record for black knights points 54
CREATE TABLE table_21092444_1 (record VARCHAR, black_knights_points VARCHAR)
{ "SQL_Query": "SELECT record FROM table_21092444_1 WHERE black_knights_points = 54" }
Name the opponents stanford
CREATE TABLE table_21092444_1 (opponents VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT opponents FROM table_21092444_1 WHERE opponent = \"Stanford\"" }
Name the result for ursinus college
CREATE TABLE table_21094951_1 (result VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT result FROM table_21094951_1 WHERE opponent = \"Ursinus College\"" }
Name the black knights points for loss result
CREATE TABLE table_21094951_1 (black_knights_points INTEGER, result VARCHAR)
{ "SQL_Query": "SELECT MAX(black_knights_points) FROM table_21094951_1 WHERE result = \"Loss\"" }
Name the date for 6-2 record
CREATE TABLE table_21094951_1 (date VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT date FROM table_21094951_1 WHERE record = \"6-2\"" }
Name the opponents for record being 2-0
CREATE TABLE table_21094951_1 (opponents INTEGER, record VARCHAR)
{ "SQL_Query": "SELECT MAX(opponents) FROM table_21094951_1 WHERE record = \"2-0\"" }
How man innings were there during the period with a career average of 41.43?
CREATE TABLE table_21100348_10 (innings VARCHAR, average VARCHAR)
{ "SQL_Query": "SELECT innings FROM table_21100348_10 WHERE average = \"41.43\"" }
During what period did Ricky Ponting play?
CREATE TABLE table_21100348_10 (period VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT period FROM table_21100348_10 WHERE player = \"Ricky Ponting\"" }
During what period was the career average 44.10?
CREATE TABLE table_21100348_10 (period VARCHAR, average VARCHAR)
{ "SQL_Query": "SELECT period FROM table_21100348_10 WHERE average = \"44.10\"" }
What was the smallest numbered rank for Michael Bevan?
CREATE TABLE table_21100348_10 (rank INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT MIN(rank) FROM table_21100348_10 WHERE player = \"Michael Bevan\"" }
What period was there a career average of 48.15?
CREATE TABLE table_21100348_10 (period VARCHAR, average VARCHAR)
{ "SQL_Query": "SELECT period FROM table_21100348_10 WHERE average = \"48.15\"" }
when the value (int $1000) is 409566, what is the commodity?
CREATE TABLE table_21109892_1 (commodity VARCHAR, value__int_$1000_ VARCHAR)
{ "SQL_Query": "SELECT commodity FROM table_21109892_1 WHERE value__int_$1000_ = 409566" }
When the value rank is 23, what is the value?
CREATE TABLE table_21109892_1 (value__int_ INTEGER, value_world_rank VARCHAR)
{ "SQL_Query": "SELECT MIN(value__int_) AS $1000_ FROM table_21109892_1 WHERE value_world_rank = \"23\"" }
When the value world rank is 7, what is the rank?
CREATE TABLE table_21109892_1 (rank VARCHAR, value_world_rank VARCHAR)
{ "SQL_Query": "SELECT rank FROM table_21109892_1 WHERE value_world_rank = \"7\"" }
When the production (mt) is 650000, what is the total number of rank?
CREATE TABLE table_21109892_1 (rank VARCHAR, production__mt_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(rank) FROM table_21109892_1 WHERE production__mt_ = 650000" }
When the production (mt) is 446424, what is the value world rank ?
CREATE TABLE table_21109892_1 (value_world_rank VARCHAR, production__mt_ VARCHAR)
{ "SQL_Query": "SELECT value_world_rank FROM table_21109892_1 WHERE production__mt_ = 446424" }
where value world rank is 12, what is the quantity world rank?
CREATE TABLE table_21109892_1 (quantity_world_rank VARCHAR, value_world_rank VARCHAR)
{ "SQL_Query": "SELECT quantity_world_rank FROM table_21109892_1 WHERE value_world_rank = \"12\"" }
What is the rank of Tim Paine?
CREATE TABLE table_21100348_15 (rank VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT rank FROM table_21100348_15 WHERE player = \"Tim Paine\"" }
What rank does Rodney Marsh have?
CREATE TABLE table_21100348_15 (rank INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT MAX(rank) FROM table_21100348_15 WHERE player = \"Rodney Marsh\"" }
What is the rank for a strike rate of 91.67?
CREATE TABLE table_21100348_11 (rank INTEGER, strike_rate VARCHAR)
{ "SQL_Query": "SELECT MAX(rank) FROM table_21100348_11 WHERE strike_rate = \"91.67\"" }
What player has 477 runs?
CREATE TABLE table_21100348_11 (player VARCHAR, runs VARCHAR)
{ "SQL_Query": "SELECT player FROM table_21100348_11 WHERE runs = 477" }
How many innings does rank 3 have?
CREATE TABLE table_21100348_11 (innings INTEGER, rank VARCHAR)
{ "SQL_Query": "SELECT MAX(innings) FROM table_21100348_11 WHERE rank = 3" }
What was the goals for in the season that the pct % was 0.604?
CREATE TABLE table_2110959_1 (goals_for INTEGER, pct__percentage VARCHAR)
{ "SQL_Query": "SELECT MAX(goals_for) FROM table_2110959_1 WHERE pct__percentage = \"0.604\"" }
In what season was the pct % 0.552?
CREATE TABLE table_2110959_1 (season VARCHAR, pct__percentage VARCHAR)
{ "SQL_Query": "SELECT season FROM table_2110959_1 WHERE pct__percentage = \"0.552\"" }
What was the standing in the season that the pct% was 0.769?
CREATE TABLE table_2110959_1 (standing VARCHAR, pct__percentage VARCHAR)
{ "SQL_Query": "SELECT standing FROM table_2110959_1 WHERE pct__percentage = \"0.769\"" }
What were the points in the 1958-59 season?
CREATE TABLE table_2110959_1 (points VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT points FROM table_2110959_1 WHERE season = \"1958-59\"" }
Who were Dürr's opponents in the final on year 1968?
CREATE TABLE table_2112025_3 (opponents_in_the_final VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT opponents_in_the_final FROM table_2112025_3 WHERE year = 1968" }
What was the court surface on year 1971?
CREATE TABLE table_2112025_3 (surface VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_2112025_3 WHERE year = 1971" }
Name the most top 10s for 2 best finish
CREATE TABLE table_2112220_6 (top_10s INTEGER, best_finish VARCHAR)
{ "SQL_Query": "SELECT MAX(top_10s) FROM table_2112220_6 WHERE best_finish = \"2\"" }
Name the tournaments played for 2004
CREATE TABLE table_2112220_6 (tournaments_played INTEGER, year VARCHAR)
{ "SQL_Query": "SELECT MIN(tournaments_played) FROM table_2112220_6 WHERE year = 2004" }
How many submission of the night occurred when the fighter was matt wiman?
CREATE TABLE table_21114902_1 (submissions_of_the_night INTEGER, fighter VARCHAR)
{ "SQL_Query": "SELECT MAX(submissions_of_the_night) FROM table_21114902_1 WHERE fighter = \"Matt Wiman\"" }
How many knockout of the night occurred when joe lauzon fought.
CREATE TABLE table_21114902_1 (knockouts_of_the_night VARCHAR, fighter VARCHAR)
{ "SQL_Query": "SELECT knockouts_of_the_night FROM table_21114902_1 WHERE fighter = \"Joe Lauzon\"" }
What is the smallest number of episodes in a season?
CREATE TABLE table_2113721_7 (episodes INTEGER)
{ "SQL_Query": "SELECT MIN(episodes) FROM table_2113721_7" }
When was Season Three premiered in region 2?
CREATE TABLE table_2113721_7 (region_2 VARCHAR, dvd_name VARCHAR)
{ "SQL_Query": "SELECT region_2 FROM table_2113721_7 WHERE dvd_name = \"Season Three\"" }
Where is every location with specialization of textile engineering?
CREATE TABLE table_2112260_1 (location VARCHAR, specialization VARCHAR)
{ "SQL_Query": "SELECT location FROM table_2112260_1 WHERE specialization = \"Textile engineering\"" }
What is every website with specialization of engineering and division of dhaka division?
CREATE TABLE table_2112260_1 (website VARCHAR, specialization VARCHAR, division VARCHAR)
{ "SQL_Query": "SELECT website FROM table_2112260_1 WHERE specialization = \"Engineering\" AND division = \"Dhaka division\"" }
Where is every location where Nick is Bru?
CREATE TABLE table_2112260_1 (location VARCHAR, nick VARCHAR)
{ "SQL_Query": "SELECT location FROM table_2112260_1 WHERE nick = \"BRU\"" }
What is every specialization with the website Jstu.edu.bd
CREATE TABLE table_2112260_1 (specialization VARCHAR, website VARCHAR)
{ "SQL_Query": "SELECT specialization FROM table_2112260_1 WHERE website = \"jstu.edu.bd\"" }
Name the languages for cyprus
CREATE TABLE table_21133193_1 (languages VARCHAR, member_countries VARCHAR)
{ "SQL_Query": "SELECT languages FROM table_21133193_1 WHERE member_countries = \"Cyprus\"" }
Name the languages for estonia
CREATE TABLE table_21133193_1 (languages VARCHAR, member_countries VARCHAR)
{ "SQL_Query": "SELECT languages FROM table_21133193_1 WHERE member_countries = \"Estonia\"" }
Name the most gdp per capita latvian
CREATE TABLE table_21133193_1 (gdp_per_capita__us INTEGER, languages VARCHAR)
{ "SQL_Query": "SELECT MAX(gdp_per_capita__us) AS $_ FROM table_21133193_1 WHERE languages = \"Latvian\"" }
how many archive were when run time is 24:34
CREATE TABLE table_2112766_1 (archive VARCHAR, run_time VARCHAR)
{ "SQL_Query": "SELECT archive FROM table_2112766_1 WHERE run_time = \"24:34\"" }
what is all the broadcast date when viewers were 8.4 millions
CREATE TABLE table_2112766_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(broadcast_date) FROM table_2112766_1 WHERE viewers__in_millions_ = \"8.4\"" }
how many episode have 8.4 millions viewer.
CREATE TABLE table_2112766_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(episode) FROM table_2112766_1 WHERE viewers__in_millions_ = \"8.4\"" }
What was the title in season #8?
CREATE TABLE table_21146729_6 (title VARCHAR, season__number VARCHAR)
{ "SQL_Query": "SELECT title FROM table_21146729_6 WHERE season__number = 8" }
Who was the director when the writer(s) was John W. Bloch?
CREATE TABLE table_21146729_6 (director VARCHAR, writer_s_ VARCHAR)
{ "SQL_Query": "SELECT director FROM table_21146729_6 WHERE writer_s_ = \"John W. Bloch\"" }
What was the series# with the original airdate of october 23, 1967?
CREATE TABLE table_21146729_6 (series__number INTEGER, original_airdate VARCHAR)
{ "SQL_Query": "SELECT MAX(series__number) FROM table_21146729_6 WHERE original_airdate = \"October 23, 1967\"" }
what is the title when the writer(s) is jack turley?
CREATE TABLE table_21146729_6 (title VARCHAR, writer_s_ VARCHAR)
{ "SQL_Query": "SELECT title FROM table_21146729_6 WHERE writer_s_ = \"Jack Turley\"" }
How many of the series # when the original airdate is september 25, 1967?
CREATE TABLE table_21146729_6 (series__number VARCHAR, original_airdate VARCHAR)
{ "SQL_Query": "SELECT COUNT(series__number) FROM table_21146729_6 WHERE original_airdate = \"September 25, 1967\"" }
Name the episode for run time of 22:50
CREATE TABLE table_2114308_1 (episode VARCHAR, run_time VARCHAR)
{ "SQL_Query": "SELECT episode FROM table_2114308_1 WHERE run_time = \"22:50\"" }
Name the broadcast date of 6.9 million viewers
CREATE TABLE table_2114308_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
{ "SQL_Query": "SELECT broadcast_date FROM table_2114308_1 WHERE viewers__in_millions_ = \"6.9\"" }
Name the broadcast date of run time being 24:14
CREATE TABLE table_2114308_1 (broadcast_date VARCHAR, run_time VARCHAR)
{ "SQL_Query": "SELECT broadcast_date FROM table_2114308_1 WHERE run_time = \"24:14\"" }
Which archive has a run time of 23:48?
CREATE TABLE table_2114238_1 (archive VARCHAR, run_time VARCHAR)
{ "SQL_Query": "SELECT archive FROM table_2114238_1 WHERE run_time = \"23:48\"" }
Which broadcast date has 6.8 million viewers?
CREATE TABLE table_2114238_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
{ "SQL_Query": "SELECT broadcast_date FROM table_2114238_1 WHERE viewers__in_millions_ = \"6.8\"" }
What Petrol engine has total power of ps (kw; bhp)@5400-6500?
CREATE TABLE table_21154679_1 (model VARCHAR, max_power VARCHAR)
{ "SQL_Query": "SELECT model FROM table_21154679_1 WHERE max_power = \"PS (kW; bhp)@5400-6500\"" }
What is top speed of a petrol engine at ps (kw; bhp)@5250-6250?
CREATE TABLE table_21154679_1 (top_speed VARCHAR, max_power VARCHAR)
{ "SQL_Query": "SELECT top_speed FROM table_21154679_1 WHERE max_power = \"PS (kW; bhp)@5250-6250\"" }
What is the maximum speed for total power of ps (kw; bhp)?
CREATE TABLE table_21154679_1 (top_speed VARCHAR, max_power VARCHAR)
{ "SQL_Query": "SELECT top_speed FROM table_21154679_1 WHERE max_power = \"PS (kW; bhp)\"" }
What is the s7 4.0 tfsi quattro engine torque?
CREATE TABLE table_21154679_1 (torque VARCHAR, model VARCHAR)
{ "SQL_Query": "SELECT torque FROM table_21154679_1 WHERE model = \"S7 4.0 TFSI quattro\"" }
Name the number in season for 4300062
CREATE TABLE table_21165255_1 (no_in_season INTEGER, production_code VARCHAR)
{ "SQL_Query": "SELECT MAX(no_in_season) FROM table_21165255_1 WHERE production_code = 4300062" }
Name the number of cancelled for turnham green
CREATE TABLE table_211615_2 (cancelled VARCHAR, station VARCHAR)
{ "SQL_Query": "SELECT COUNT(cancelled) FROM table_211615_2 WHERE station = \"Turnham Green\"" }
Name the number of details for emlyn road
CREATE TABLE table_211615_2 (details VARCHAR, station VARCHAR)
{ "SQL_Query": "SELECT COUNT(details) FROM table_211615_2 WHERE station = \"Emlyn Road\"" }
What episode number in the series was directed by John Behring?
CREATE TABLE table_21164557_1 (no_in_series INTEGER, directed_by VARCHAR)
{ "SQL_Query": "SELECT MAX(no_in_series) FROM table_21164557_1 WHERE directed_by = \"John Behring\"" }
How many original air dates were there for episodes with a production code of 4398016?
CREATE TABLE table_21164557_1 (original_air_date VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT COUNT(original_air_date) FROM table_21164557_1 WHERE production_code = 4398016" }
Name the rank for 14.80 viewers
CREATE TABLE table_211714_2 (rank VARCHAR, viewers__in_millions_ VARCHAR)
{ "SQL_Query": "SELECT rank FROM table_211714_2 WHERE viewers__in_millions_ = \"14.80\"" }
Name the number of rank for season 6
CREATE TABLE table_211714_2 (rank VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT COUNT(rank) FROM table_211714_2 WHERE season = 6" }
What date did the episode with a production code of 4301085 originally air?
CREATE TABLE table_21172539_1 (original_air_date VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_21172539_1 WHERE production_code = 4301085" }
What date did episode 15 of the season originally air?
CREATE TABLE table_21172539_1 (original_air_date VARCHAR, no_in_season VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_21172539_1 WHERE no_in_season = 15" }
Name the remarks for sawhouse
CREATE TABLE table_211791_1 (remarks VARCHAR, nato_reporting_name VARCHAR)
{ "SQL_Query": "SELECT remarks FROM table_211791_1 WHERE nato_reporting_name = \"SAWHOUSE\"" }
Name the nato/ us dod code for sabbot
CREATE TABLE table_211791_1 (nato_us_dod_code VARCHAR, nato_reporting_name VARCHAR)
{ "SQL_Query": "SELECT nato_us_dod_code FROM table_211791_1 WHERE nato_reporting_name = \"SABBOT\"" }
When autodromo nazionale monza is the circuit what is the report?
CREATE TABLE table_21191496_1 (report VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT report FROM table_21191496_1 WHERE circuit = \"Autodromo Nazionale Monza\"" }
When michele pirro is the pole position what is the date?
CREATE TABLE table_21191496_1 (date VARCHAR, pole_position VARCHAR)
{ "SQL_Query": "SELECT date FROM table_21191496_1 WHERE pole_position = \"Michele Pirro\"" }
When Netherlands is the country what is the report?
CREATE TABLE table_21191496_1 (report VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT report FROM table_21191496_1 WHERE country = \"Netherlands\"" }
When circuit ricardo tormo is the circuit who is the winning team?
CREATE TABLE table_21191496_1 (winning_team VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT winning_team FROM table_21191496_1 WHERE circuit = \"circuit Ricardo Tormo\"" }
When circuit ricardo tormo is the circuit what is the round?
CREATE TABLE table_21191496_1 (round VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT COUNT(round) FROM table_21191496_1 WHERE circuit = \"circuit Ricardo Tormo\"" }
How many opponents were there when the record was 6-0?
CREATE TABLE table_21197135_1 (opponent VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT COUNT(opponent) FROM table_21197135_1 WHERE record = \"6-0\"" }
How many opponents were there when the record was 6-0?
CREATE TABLE table_21197135_1 (date VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT date FROM table_21197135_1 WHERE record = \"6-0\"" }
What was the team record when the team played @ Utah?
CREATE TABLE table_21197135_1 (record VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT record FROM table_21197135_1 WHERE opponent = \"@ Utah\"" }
How many points did the Cowboys have when they had a 7-0 record?
CREATE TABLE table_21197135_1 (cowboys_points VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT cowboys_points FROM table_21197135_1 WHERE record = \"7-0\"" }
Name the scoreboard for total being 23.5
CREATE TABLE table_21234111_6 (scoreboard VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT scoreboard FROM table_21234111_6 WHERE total = \"23.5\"" }
Name the jason for public vote being 19.20%
CREATE TABLE table_21234111_6 (jason VARCHAR, public_vote__percentage VARCHAR)
{ "SQL_Query": "SELECT jason FROM table_21234111_6 WHERE public_vote__percentage = \"19.20%\"" }
Name the number of song for scoreboard being 3rd
CREATE TABLE table_21234111_6 (song VARCHAR, scoreboard VARCHAR)
{ "SQL_Query": "SELECT COUNT(song) FROM table_21234111_6 WHERE scoreboard = \"3rd\"" }
state the opponent on halliwell jones stadium in super league xiv
CREATE TABLE table_21256068_3 (opponent VARCHAR, venue VARCHAR, competition VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_21256068_3 WHERE venue = \"Halliwell Jones Stadium\" AND competition = \"Super League XIV\"" }
how many venues were played on in round 1
CREATE TABLE table_21256068_3 (venue VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT COUNT(venue) FROM table_21256068_3 WHERE round = \"1\"" }
state the round that had a game score 50-10
CREATE TABLE table_21256068_3 (round VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT round FROM table_21256068_3 WHERE score = \"50-10\"" }
state the round that had a game attended attended by 9359 people
CREATE TABLE table_21256068_3 (round VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT round FROM table_21256068_3 WHERE attendance = 9359" }
how many rounds had the score 44-22
CREATE TABLE table_21256068_3 (round VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT COUNT(round) FROM table_21256068_3 WHERE score = \"44-22\"" }
what's the score against crusaders
CREATE TABLE table_21256068_3 (score VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT score FROM table_21256068_3 WHERE opponent = \"Crusaders\"" }
How many Small catagories are there for the department that has a medium of 17101?
CREATE TABLE table_21249915_1 (small__100ha_ VARCHAR, medium__500ha_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(small__100ha_) FROM table_21249915_1 WHERE medium__500ha_ = 17101" }
What is the total for Chuquisaca?
CREATE TABLE table_21249915_1 (total VARCHAR, department VARCHAR)
{ "SQL_Query": "SELECT total FROM table_21249915_1 WHERE department = \"Chuquisaca\"" }
Which department has a small of 11370?
CREATE TABLE table_21249915_1 (department VARCHAR, small__100ha_ VARCHAR)
{ "SQL_Query": "SELECT department FROM table_21249915_1 WHERE small__100ha_ = 11370" }
How many total catagories are there for La Paz?
CREATE TABLE table_21249915_1 (total VARCHAR, department VARCHAR)
{ "SQL_Query": "SELECT COUNT(total) FROM table_21249915_1 WHERE department = \"La Paz\"" }
How many points under par was the winner of the Miyagi TV Cup Dunlop Ladies Open?
CREATE TABLE table_2126093_3 (to_par VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_2126093_3 WHERE tournament = \"Miyagi TV Cup Dunlop Ladies Open\"" }
What was the winning score of the Vernal Ladies tournament?
CREATE TABLE table_2126093_3 (winning_score VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT winning_score FROM table_2126093_3 WHERE tournament = \"Vernal Ladies\"" }