Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
34,500
<question>: Which opponent has a record of 6-2? <context>: CREATE TABLE table_21091127_1 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_21091127_1 WHERE record = "6-2"
34,501
<question>: How many results have a game of 5? <context>: CREATE TABLE table_21091127_1 (result VARCHAR, game VARCHAR)
SELECT COUNT(result) FROM table_21091127_1 WHERE game = 5
34,502
<question>: What is the run time for the episode with 7.9 million viewers? <context>: CREATE TABLE table_2108684_1 (run_time VARCHAR, viewers__in_millions_ VARCHAR)
SELECT run_time FROM table_2108684_1 WHERE viewers__in_millions_ = "7.9"
34,503
<question>: What episode had a run time of 23:38? <context>: CREATE TABLE table_2108684_1 (episode VARCHAR, run_time VARCHAR)
SELECT episode FROM table_2108684_1 WHERE run_time = "23:38"
34,504
<question>: How many million viewers watched the episode with a run time of 25:22? <context>: CREATE TABLE table_2108684_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)
SELECT viewers__in_millions_ FROM table_2108684_1 WHERE run_time = "25:22"
34,505
<question>: Name the date for result loss for duke <context>: CREATE TABLE table_21092444_1 (date VARCHAR, result VARCHAR, opponent VARCHAR)
SELECT date FROM table_21092444_1 WHERE result = "Loss" AND opponent = "Duke"
34,506
<question>: Name the opponents for record of 2-1 <context>: CREATE TABLE table_21092444_1 (opponents VARCHAR, record VARCHAR)
SELECT opponents FROM table_21092444_1 WHERE record = "2-1"
34,507
<question>: Name the record for black knights points 54 <context>: CREATE TABLE table_21092444_1 (record VARCHAR, black_knights_points VARCHAR)
SELECT record FROM table_21092444_1 WHERE black_knights_points = 54
34,508
<question>: Name the opponents stanford <context>: CREATE TABLE table_21092444_1 (opponents VARCHAR, opponent VARCHAR)
SELECT opponents FROM table_21092444_1 WHERE opponent = "Stanford"
34,509
<question>: Name the result for ursinus college <context>: CREATE TABLE table_21094951_1 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_21094951_1 WHERE opponent = "Ursinus College"
34,510
<question>: Name the black knights points for loss result <context>: CREATE TABLE table_21094951_1 (black_knights_points INTEGER, result VARCHAR)
SELECT MAX(black_knights_points) FROM table_21094951_1 WHERE result = "Loss"
34,511
<question>: Name the date for 6-2 record <context>: CREATE TABLE table_21094951_1 (date VARCHAR, record VARCHAR)
SELECT date FROM table_21094951_1 WHERE record = "6-2"
34,512
<question>: Name the opponents for record being 2-0 <context>: CREATE TABLE table_21094951_1 (opponents INTEGER, record VARCHAR)
SELECT MAX(opponents) FROM table_21094951_1 WHERE record = "2-0"
34,513
<question>: How man innings were there during the period with a career average of 41.43? <context>: CREATE TABLE table_21100348_10 (innings VARCHAR, average VARCHAR)
SELECT innings FROM table_21100348_10 WHERE average = "41.43"
34,514
<question>: During what period did Ricky Ponting play? <context>: CREATE TABLE table_21100348_10 (period VARCHAR, player VARCHAR)
SELECT period FROM table_21100348_10 WHERE player = "Ricky Ponting"
34,515
<question>: During what period was the career average 44.10? <context>: CREATE TABLE table_21100348_10 (period VARCHAR, average VARCHAR)
SELECT period FROM table_21100348_10 WHERE average = "44.10"
34,516
<question>: What was the smallest numbered rank for Michael Bevan? <context>: CREATE TABLE table_21100348_10 (rank INTEGER, player VARCHAR)
SELECT MIN(rank) FROM table_21100348_10 WHERE player = "Michael Bevan"
34,517
<question>: What period was there a career average of 48.15? <context>: CREATE TABLE table_21100348_10 (period VARCHAR, average VARCHAR)
SELECT period FROM table_21100348_10 WHERE average = "48.15"
34,518
<question>: when the value (int $1000) is 409566, what is the commodity? <context>: CREATE TABLE table_21109892_1 (commodity VARCHAR, value__int_$1000_ VARCHAR)
SELECT commodity FROM table_21109892_1 WHERE value__int_$1000_ = 409566
34,519
<question>: When the value rank is 23, what is the value? <context>: CREATE TABLE table_21109892_1 (value__int_ INTEGER, value_world_rank VARCHAR)
SELECT MIN(value__int_) AS $1000_ FROM table_21109892_1 WHERE value_world_rank = "23"
34,520
<question>: When the value world rank is 7, what is the rank? <context>: CREATE TABLE table_21109892_1 (rank VARCHAR, value_world_rank VARCHAR)
SELECT rank FROM table_21109892_1 WHERE value_world_rank = "7"
34,521
<question>: When the production (mt) is 650000, what is the total number of rank? <context>: CREATE TABLE table_21109892_1 (rank VARCHAR, production__mt_ VARCHAR)
SELECT COUNT(rank) FROM table_21109892_1 WHERE production__mt_ = 650000
34,522
<question>: When the production (mt) is 446424, what is the value world rank ? <context>: CREATE TABLE table_21109892_1 (value_world_rank VARCHAR, production__mt_ VARCHAR)
SELECT value_world_rank FROM table_21109892_1 WHERE production__mt_ = 446424
34,523
<question>: where value world rank is 12, what is the quantity world rank? <context>: CREATE TABLE table_21109892_1 (quantity_world_rank VARCHAR, value_world_rank VARCHAR)
SELECT quantity_world_rank FROM table_21109892_1 WHERE value_world_rank = "12"
34,524
<question>: What is the rank of Tim Paine? <context>: CREATE TABLE table_21100348_15 (rank VARCHAR, player VARCHAR)
SELECT rank FROM table_21100348_15 WHERE player = "Tim Paine"
34,525
<question>: What rank does Rodney Marsh have? <context>: CREATE TABLE table_21100348_15 (rank INTEGER, player VARCHAR)
SELECT MAX(rank) FROM table_21100348_15 WHERE player = "Rodney Marsh"
34,526
<question>: What is the rank for a strike rate of 91.67? <context>: CREATE TABLE table_21100348_11 (rank INTEGER, strike_rate VARCHAR)
SELECT MAX(rank) FROM table_21100348_11 WHERE strike_rate = "91.67"
34,527
<question>: What player has 477 runs? <context>: CREATE TABLE table_21100348_11 (player VARCHAR, runs VARCHAR)
SELECT player FROM table_21100348_11 WHERE runs = 477
34,528
<question>: How many innings does rank 3 have? <context>: CREATE TABLE table_21100348_11 (innings INTEGER, rank VARCHAR)
SELECT MAX(innings) FROM table_21100348_11 WHERE rank = 3
34,529
<question>: What was the goals for in the season that the pct % was 0.604? <context>: CREATE TABLE table_2110959_1 (goals_for INTEGER, pct__percentage VARCHAR)
SELECT MAX(goals_for) FROM table_2110959_1 WHERE pct__percentage = "0.604"
34,530
<question>: In what season was the pct % 0.552? <context>: CREATE TABLE table_2110959_1 (season VARCHAR, pct__percentage VARCHAR)
SELECT season FROM table_2110959_1 WHERE pct__percentage = "0.552"
34,531
<question>: What was the standing in the season that the pct% was 0.769? <context>: CREATE TABLE table_2110959_1 (standing VARCHAR, pct__percentage VARCHAR)
SELECT standing FROM table_2110959_1 WHERE pct__percentage = "0.769"
34,532
<question>: What were the points in the 1958-59 season? <context>: CREATE TABLE table_2110959_1 (points VARCHAR, season VARCHAR)
SELECT points FROM table_2110959_1 WHERE season = "1958-59"
34,533
<question>: Who were Dürr's opponents in the final on year 1968? <context>: CREATE TABLE table_2112025_3 (opponents_in_the_final VARCHAR, year VARCHAR)
SELECT opponents_in_the_final FROM table_2112025_3 WHERE year = 1968
34,534
<question>: What was the court surface on year 1971? <context>: CREATE TABLE table_2112025_3 (surface VARCHAR, year VARCHAR)
SELECT surface FROM table_2112025_3 WHERE year = 1971
34,535
<question>: Name the most top 10s for 2 best finish <context>: CREATE TABLE table_2112220_6 (top_10s INTEGER, best_finish VARCHAR)
SELECT MAX(top_10s) FROM table_2112220_6 WHERE best_finish = "2"
34,536
<question>: Name the tournaments played for 2004 <context>: CREATE TABLE table_2112220_6 (tournaments_played INTEGER, year VARCHAR)
SELECT MIN(tournaments_played) FROM table_2112220_6 WHERE year = 2004
34,537
<question>: How many submission of the night occurred when the fighter was matt wiman? <context>: CREATE TABLE table_21114902_1 (submissions_of_the_night INTEGER, fighter VARCHAR)
SELECT MAX(submissions_of_the_night) FROM table_21114902_1 WHERE fighter = "Matt Wiman"
34,538
<question>: How many knockout of the night occurred when joe lauzon fought. <context>: CREATE TABLE table_21114902_1 (knockouts_of_the_night VARCHAR, fighter VARCHAR)
SELECT knockouts_of_the_night FROM table_21114902_1 WHERE fighter = "Joe Lauzon"
34,539
<question>: What is the smallest number of episodes in a season? <context>: CREATE TABLE table_2113721_7 (episodes INTEGER)
SELECT MIN(episodes) FROM table_2113721_7
34,540
<question>: When was Season Three premiered in region 2? <context>: CREATE TABLE table_2113721_7 (region_2 VARCHAR, dvd_name VARCHAR)
SELECT region_2 FROM table_2113721_7 WHERE dvd_name = "Season Three"
34,541
<question>: Where is every location with specialization of textile engineering? <context>: CREATE TABLE table_2112260_1 (location VARCHAR, specialization VARCHAR)
SELECT location FROM table_2112260_1 WHERE specialization = "Textile engineering"
34,542
<question>: What is every website with specialization of engineering and division of dhaka division? <context>: CREATE TABLE table_2112260_1 (website VARCHAR, specialization VARCHAR, division VARCHAR)
SELECT website FROM table_2112260_1 WHERE specialization = "Engineering" AND division = "Dhaka division"
34,543
<question>: Where is every location where Nick is Bru? <context>: CREATE TABLE table_2112260_1 (location VARCHAR, nick VARCHAR)
SELECT location FROM table_2112260_1 WHERE nick = "BRU"
34,544
<question>: What is every specialization with the website Jstu.edu.bd <context>: CREATE TABLE table_2112260_1 (specialization VARCHAR, website VARCHAR)
SELECT specialization FROM table_2112260_1 WHERE website = "jstu.edu.bd"
34,545
<question>: Name the languages for cyprus <context>: CREATE TABLE table_21133193_1 (languages VARCHAR, member_countries VARCHAR)
SELECT languages FROM table_21133193_1 WHERE member_countries = "Cyprus"
34,546
<question>: Name the languages for estonia <context>: CREATE TABLE table_21133193_1 (languages VARCHAR, member_countries VARCHAR)
SELECT languages FROM table_21133193_1 WHERE member_countries = "Estonia"
34,547
<question>: Name the most gdp per capita latvian <context>: CREATE TABLE table_21133193_1 (gdp_per_capita__us INTEGER, languages VARCHAR)
SELECT MAX(gdp_per_capita__us) AS $_ FROM table_21133193_1 WHERE languages = "Latvian"
34,548
<question>: how many archive were when run time is 24:34 <context>: CREATE TABLE table_2112766_1 (archive VARCHAR, run_time VARCHAR)
SELECT archive FROM table_2112766_1 WHERE run_time = "24:34"
34,549
<question>: what is all the broadcast date when viewers were 8.4 millions <context>: CREATE TABLE table_2112766_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
SELECT COUNT(broadcast_date) FROM table_2112766_1 WHERE viewers__in_millions_ = "8.4"
34,550
<question>: how many episode have 8.4 millions viewer. <context>: CREATE TABLE table_2112766_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)
SELECT COUNT(episode) FROM table_2112766_1 WHERE viewers__in_millions_ = "8.4"
34,551
<question>: What was the title in season #8? <context>: CREATE TABLE table_21146729_6 (title VARCHAR, season__number VARCHAR)
SELECT title FROM table_21146729_6 WHERE season__number = 8
34,552
<question>: Who was the director when the writer(s) was John W. Bloch? <context>: CREATE TABLE table_21146729_6 (director VARCHAR, writer_s_ VARCHAR)
SELECT director FROM table_21146729_6 WHERE writer_s_ = "John W. Bloch"
34,553
<question>: What was the series# with the original airdate of october 23, 1967? <context>: CREATE TABLE table_21146729_6 (series__number INTEGER, original_airdate VARCHAR)
SELECT MAX(series__number) FROM table_21146729_6 WHERE original_airdate = "October 23, 1967"
34,554
<question>: what is the title when the writer(s) is jack turley? <context>: CREATE TABLE table_21146729_6 (title VARCHAR, writer_s_ VARCHAR)
SELECT title FROM table_21146729_6 WHERE writer_s_ = "Jack Turley"
34,555
<question>: How many of the series # when the original airdate is september 25, 1967? <context>: CREATE TABLE table_21146729_6 (series__number VARCHAR, original_airdate VARCHAR)
SELECT COUNT(series__number) FROM table_21146729_6 WHERE original_airdate = "September 25, 1967"
34,556
<question>: Name the episode for run time of 22:50 <context>: CREATE TABLE table_2114308_1 (episode VARCHAR, run_time VARCHAR)
SELECT episode FROM table_2114308_1 WHERE run_time = "22:50"
34,557
<question>: Name the broadcast date of 6.9 million viewers <context>: CREATE TABLE table_2114308_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
SELECT broadcast_date FROM table_2114308_1 WHERE viewers__in_millions_ = "6.9"
34,558
<question>: Name the broadcast date of run time being 24:14 <context>: CREATE TABLE table_2114308_1 (broadcast_date VARCHAR, run_time VARCHAR)
SELECT broadcast_date FROM table_2114308_1 WHERE run_time = "24:14"
34,559
<question>: Which archive has a run time of 23:48? <context>: CREATE TABLE table_2114238_1 (archive VARCHAR, run_time VARCHAR)
SELECT archive FROM table_2114238_1 WHERE run_time = "23:48"
34,560
<question>: Which broadcast date has 6.8 million viewers? <context>: CREATE TABLE table_2114238_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
SELECT broadcast_date FROM table_2114238_1 WHERE viewers__in_millions_ = "6.8"
34,561
<question>: What Petrol engine has total power of ps (kw; bhp)@5400-6500? <context>: CREATE TABLE table_21154679_1 (model VARCHAR, max_power VARCHAR)
SELECT model FROM table_21154679_1 WHERE max_power = "PS (kW; bhp)@5400-6500"
34,562
<question>: What is top speed of a petrol engine at ps (kw; bhp)@5250-6250? <context>: CREATE TABLE table_21154679_1 (top_speed VARCHAR, max_power VARCHAR)
SELECT top_speed FROM table_21154679_1 WHERE max_power = "PS (kW; bhp)@5250-6250"
34,563
<question>: What is the maximum speed for total power of ps (kw; bhp)? <context>: CREATE TABLE table_21154679_1 (top_speed VARCHAR, max_power VARCHAR)
SELECT top_speed FROM table_21154679_1 WHERE max_power = "PS (kW; bhp)"
34,564
<question>: What is the s7 4.0 tfsi quattro engine torque? <context>: CREATE TABLE table_21154679_1 (torque VARCHAR, model VARCHAR)
SELECT torque FROM table_21154679_1 WHERE model = "S7 4.0 TFSI quattro"
34,565
<question>: Name the number in season for 4300062 <context>: CREATE TABLE table_21165255_1 (no_in_season INTEGER, production_code VARCHAR)
SELECT MAX(no_in_season) FROM table_21165255_1 WHERE production_code = 4300062
34,566
<question>: Name the number of cancelled for turnham green <context>: CREATE TABLE table_211615_2 (cancelled VARCHAR, station VARCHAR)
SELECT COUNT(cancelled) FROM table_211615_2 WHERE station = "Turnham Green"
34,567
<question>: Name the number of details for emlyn road <context>: CREATE TABLE table_211615_2 (details VARCHAR, station VARCHAR)
SELECT COUNT(details) FROM table_211615_2 WHERE station = "Emlyn Road"
34,568
<question>: What episode number in the series was directed by John Behring? <context>: CREATE TABLE table_21164557_1 (no_in_series INTEGER, directed_by VARCHAR)
SELECT MAX(no_in_series) FROM table_21164557_1 WHERE directed_by = "John Behring"
34,569
<question>: How many original air dates were there for episodes with a production code of 4398016? <context>: CREATE TABLE table_21164557_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT COUNT(original_air_date) FROM table_21164557_1 WHERE production_code = 4398016
34,570
<question>: Name the rank for 14.80 viewers <context>: CREATE TABLE table_211714_2 (rank VARCHAR, viewers__in_millions_ VARCHAR)
SELECT rank FROM table_211714_2 WHERE viewers__in_millions_ = "14.80"
34,571
<question>: Name the number of rank for season 6 <context>: CREATE TABLE table_211714_2 (rank VARCHAR, season VARCHAR)
SELECT COUNT(rank) FROM table_211714_2 WHERE season = 6
34,572
<question>: What date did the episode with a production code of 4301085 originally air? <context>: CREATE TABLE table_21172539_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_21172539_1 WHERE production_code = 4301085
34,573
<question>: What date did episode 15 of the season originally air? <context>: CREATE TABLE table_21172539_1 (original_air_date VARCHAR, no_in_season VARCHAR)
SELECT original_air_date FROM table_21172539_1 WHERE no_in_season = 15
34,574
<question>: Name the remarks for sawhouse <context>: CREATE TABLE table_211791_1 (remarks VARCHAR, nato_reporting_name VARCHAR)
SELECT remarks FROM table_211791_1 WHERE nato_reporting_name = "SAWHOUSE"
34,575
<question>: Name the nato/ us dod code for sabbot <context>: CREATE TABLE table_211791_1 (nato_us_dod_code VARCHAR, nato_reporting_name VARCHAR)
SELECT nato_us_dod_code FROM table_211791_1 WHERE nato_reporting_name = "SABBOT"
34,576
<question>: When autodromo nazionale monza is the circuit what is the report? <context>: CREATE TABLE table_21191496_1 (report VARCHAR, circuit VARCHAR)
SELECT report FROM table_21191496_1 WHERE circuit = "Autodromo Nazionale Monza"
34,577
<question>: When michele pirro is the pole position what is the date? <context>: CREATE TABLE table_21191496_1 (date VARCHAR, pole_position VARCHAR)
SELECT date FROM table_21191496_1 WHERE pole_position = "Michele Pirro"
34,578
<question>: When Netherlands is the country what is the report? <context>: CREATE TABLE table_21191496_1 (report VARCHAR, country VARCHAR)
SELECT report FROM table_21191496_1 WHERE country = "Netherlands"
34,579
<question>: When circuit ricardo tormo is the circuit who is the winning team? <context>: CREATE TABLE table_21191496_1 (winning_team VARCHAR, circuit VARCHAR)
SELECT winning_team FROM table_21191496_1 WHERE circuit = "circuit Ricardo Tormo"
34,580
<question>: When circuit ricardo tormo is the circuit what is the round? <context>: CREATE TABLE table_21191496_1 (round VARCHAR, circuit VARCHAR)
SELECT COUNT(round) FROM table_21191496_1 WHERE circuit = "circuit Ricardo Tormo"
34,581
<question>: How many opponents were there when the record was 6-0? <context>: CREATE TABLE table_21197135_1 (opponent VARCHAR, record VARCHAR)
SELECT COUNT(opponent) FROM table_21197135_1 WHERE record = "6-0"
34,582
<question>: How many opponents were there when the record was 6-0? <context>: CREATE TABLE table_21197135_1 (date VARCHAR, record VARCHAR)
SELECT date FROM table_21197135_1 WHERE record = "6-0"
34,583
<question>: What was the team record when the team played @ Utah? <context>: CREATE TABLE table_21197135_1 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_21197135_1 WHERE opponent = "@ Utah"
34,584
<question>: How many points did the Cowboys have when they had a 7-0 record? <context>: CREATE TABLE table_21197135_1 (cowboys_points VARCHAR, record VARCHAR)
SELECT cowboys_points FROM table_21197135_1 WHERE record = "7-0"
34,585
<question>: Name the scoreboard for total being 23.5 <context>: CREATE TABLE table_21234111_6 (scoreboard VARCHAR, total VARCHAR)
SELECT scoreboard FROM table_21234111_6 WHERE total = "23.5"
34,586
<question>: Name the jason for public vote being 19.20% <context>: CREATE TABLE table_21234111_6 (jason VARCHAR, public_vote__percentage VARCHAR)
SELECT jason FROM table_21234111_6 WHERE public_vote__percentage = "19.20%"
34,587
<question>: Name the number of song for scoreboard being 3rd <context>: CREATE TABLE table_21234111_6 (song VARCHAR, scoreboard VARCHAR)
SELECT COUNT(song) FROM table_21234111_6 WHERE scoreboard = "3rd"
34,588
<question>: state the opponent on halliwell jones stadium in super league xiv <context>: CREATE TABLE table_21256068_3 (opponent VARCHAR, venue VARCHAR, competition VARCHAR)
SELECT opponent FROM table_21256068_3 WHERE venue = "Halliwell Jones Stadium" AND competition = "Super League XIV"
34,589
<question>: how many venues were played on in round 1 <context>: CREATE TABLE table_21256068_3 (venue VARCHAR, round VARCHAR)
SELECT COUNT(venue) FROM table_21256068_3 WHERE round = "1"
34,590
<question>: state the round that had a game score 50-10 <context>: CREATE TABLE table_21256068_3 (round VARCHAR, score VARCHAR)
SELECT round FROM table_21256068_3 WHERE score = "50-10"
34,591
<question>: state the round that had a game attended attended by 9359 people <context>: CREATE TABLE table_21256068_3 (round VARCHAR, attendance VARCHAR)
SELECT round FROM table_21256068_3 WHERE attendance = 9359
34,592
<question>: how many rounds had the score 44-22 <context>: CREATE TABLE table_21256068_3 (round VARCHAR, score VARCHAR)
SELECT COUNT(round) FROM table_21256068_3 WHERE score = "44-22"
34,593
<question>: what's the score against crusaders <context>: CREATE TABLE table_21256068_3 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_21256068_3 WHERE opponent = "Crusaders"
34,594
<question>: How many Small catagories are there for the department that has a medium of 17101? <context>: CREATE TABLE table_21249915_1 (small__100ha_ VARCHAR, medium__500ha_ VARCHAR)
SELECT COUNT(small__100ha_) FROM table_21249915_1 WHERE medium__500ha_ = 17101
34,595
<question>: What is the total for Chuquisaca? <context>: CREATE TABLE table_21249915_1 (total VARCHAR, department VARCHAR)
SELECT total FROM table_21249915_1 WHERE department = "Chuquisaca"
34,596
<question>: Which department has a small of 11370? <context>: CREATE TABLE table_21249915_1 (department VARCHAR, small__100ha_ VARCHAR)
SELECT department FROM table_21249915_1 WHERE small__100ha_ = 11370
34,597
<question>: How many total catagories are there for La Paz? <context>: CREATE TABLE table_21249915_1 (total VARCHAR, department VARCHAR)
SELECT COUNT(total) FROM table_21249915_1 WHERE department = "La Paz"
34,598
<question>: How many points under par was the winner of the Miyagi TV Cup Dunlop Ladies Open? <context>: CREATE TABLE table_2126093_3 (to_par VARCHAR, tournament VARCHAR)
SELECT to_par FROM table_2126093_3 WHERE tournament = "Miyagi TV Cup Dunlop Ladies Open"
34,599
<question>: What was the winning score of the Vernal Ladies tournament? <context>: CREATE TABLE table_2126093_3 (winning_score VARCHAR, tournament VARCHAR)
SELECT winning_score FROM table_2126093_3 WHERE tournament = "Vernal Ladies"