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