question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
When was Walter Evans a representative? | CREATE TABLE table_name_29 (years VARCHAR, representative VARCHAR) | SELECT years FROM table_name_29 WHERE representative = "walter evans" |
Name the catalog with cd format | CREATE TABLE table_name_93 (catalog VARCHAR, format VARCHAR) | SELECT catalog FROM table_name_93 WHERE format = "cd" |
Name the label with catalog of mhcl-20005 | CREATE TABLE table_name_88 (label VARCHAR, catalog VARCHAR) | SELECT label FROM table_name_88 WHERE catalog = "mhcl-20005" |
Name the date with catalog of alca-9198 | CREATE TABLE table_name_66 (date VARCHAR, catalog VARCHAR) | SELECT date FROM table_name_66 WHERE catalog = "alca-9198" |
Name the note for catalog of 32xa-106 | CREATE TABLE table_name_73 (note VARCHAR, catalog VARCHAR) | SELECT note FROM table_name_73 WHERE catalog = "32xa-106" |
Name the catalog for alfa records and cd format | CREATE TABLE table_name_84 (catalog VARCHAR, label VARCHAR, format VARCHAR) | SELECT catalog FROM table_name_84 WHERE label = "alfa records" AND format = "cd" |
Name the format for 12cm note and catalog of alca-9198 | CREATE TABLE table_name_28 (format VARCHAR, note VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_28 WHERE note = "12cm" AND catalog = "alca-9198" |
Which Monday Mona/Mani also had a Thursday Thunor/Thor of Tongersdei? | CREATE TABLE table_name_84 (monday_mona__máni VARCHAR, thursday_thunor___thor VARCHAR) | SELECT monday_mona__máni FROM table_name_84 WHERE thursday_thunor___thor = "tongersdei" |
Which Tuesday Tiw/Tyr has a Sunday Sunna/Sol of sondag? | CREATE TABLE table_name_61 (tuesday_tiw__tyr VARCHAR, sunday_sunna_sól VARCHAR) | SELECT tuesday_tiw__tyr FROM table_name_61 WHERE sunday_sunna_sól = "sondag" |
What is the 1995 Album? | CREATE TABLE table_name_22 (album VARCHAR, year VARCHAR) | SELECT album FROM table_name_22 WHERE year = 1995 |
What album was recorded by the rca label? | CREATE TABLE table_name_83 (album VARCHAR, record_label VARCHAR) | SELECT album FROM table_name_83 WHERE record_label = "rca" |
What's the sum of years when the Artist of the queen were less than 1? | CREATE TABLE table_name_59 (year VARCHAR, artist VARCHAR, weeks_at_number_one VARCHAR) | SELECT COUNT(year) FROM table_name_59 WHERE artist = "queen" AND weeks_at_number_one < 1 |
What is the 1990 Album? | CREATE TABLE table_name_27 (album VARCHAR, year VARCHAR) | SELECT album FROM table_name_27 WHERE year = 1990 |
What is the result of the game that was played at Soldier Field? | CREATE TABLE table_name_90 (result VARCHAR, game_site VARCHAR) | SELECT result FROM table_name_90 WHERE game_site = "soldier field" |
Who lost the game with a record of 20-13? | CREATE TABLE table_name_41 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_41 WHERE record = "20-13" |
Who lost the game on May 28? | CREATE TABLE table_name_38 (loss VARCHAR, date VARCHAR) | SELECT loss FROM table_name_38 WHERE date = "may 28" |
Who lost the game on May 26? | CREATE TABLE table_name_65 (loss VARCHAR, date VARCHAR) | SELECT loss FROM table_name_65 WHERE date = "may 26" |
Which date has the record time of 3:01? | CREATE TABLE table_name_82 (record VARCHAR, time VARCHAR) | SELECT record FROM table_name_82 WHERE time = "3:01" |
What is the score of the Devil Rays on April 24? | CREATE TABLE table_name_28 (score VARCHAR, opponent VARCHAR, date VARCHAR) | SELECT score FROM table_name_28 WHERE opponent = "devil rays" AND date = "april 24" |
What is Ips-provectus transmittance/contrast ratio? | CREATE TABLE table_name_16 (transmittance__contrast_ratio VARCHAR, name VARCHAR) | SELECT transmittance__contrast_ratio FROM table_name_16 WHERE name = "ips-provectus" |
What is the average silver for a rank less than 8, were there were no more than 4 bronze and 12 in total? | CREATE TABLE table_name_44 (silver INTEGER, bronze VARCHAR, rank VARCHAR, total VARCHAR) | SELECT AVG(silver) FROM table_name_44 WHERE rank < 8 AND total = 12 AND bronze < 4 |
How many gold did Gabon have when they were ranked no higher than 17, and less than 7 in total? | CREATE TABLE table_name_94 (gold INTEGER, rank VARCHAR, total VARCHAR, nation VARCHAR) | SELECT SUM(gold) FROM table_name_94 WHERE total < 7 AND nation = "gabon" AND rank < 17 |
Name the opponent for april 24 | CREATE TABLE table_name_5 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_5 WHERE date = "april 24" |
Name the score for attendance of 13,617 | CREATE TABLE table_name_63 (score VARCHAR, attendance VARCHAR) | SELECT score FROM table_name_63 WHERE attendance = "13,617" |
Name the opponent for Score of postponed (rain) not rescheduled | CREATE TABLE table_name_92 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_92 WHERE score = "postponed (rain) not rescheduled" |
What is the H.S. Asst. principal with a Glendale principal Joyce Brace during 2002-2003? | CREATE TABLE table_name_47 (h_s_asst_principal VARCHAR, glendale_principal VARCHAR, year VARCHAR) | SELECT h_s_asst_principal FROM table_name_47 WHERE glendale_principal = "joyce brace" AND year = "2002-2003" |
Who is the h.s. principal with Dave Lovering as w.r. principal and Marty Pizur as m.s. principal? | CREATE TABLE table_name_99 (hs_principal VARCHAR, wr_principal VARCHAR, ms_principal VARCHAR) | SELECT hs_principal FROM table_name_99 WHERE wr_principal = "dave lovering" AND ms_principal = "marty pizur" |
Who is the Glendale principal with Greg Smorel as m.s. principal and Joleen Reinholz as H.S. principal during 2006-2007? | CREATE TABLE table_name_58 (glendale_principal VARCHAR, year VARCHAR, ms_principal VARCHAR, hs_principal VARCHAR) | SELECT glendale_principal FROM table_name_58 WHERE ms_principal = "greg smorel" AND hs_principal = "joleen reinholz" AND year = "2006-2007" |
Who is the h.h. principal with Jim Haught as h.s. principal, Charlie Taylor as maplemere principal, and Rich Auerbach as w.r. principal? | CREATE TABLE table_name_55 (hh_principal VARCHAR, wr_principal VARCHAR, hs_principal VARCHAR, maplemere_principal VARCHAR) | SELECT hh_principal FROM table_name_55 WHERE hs_principal = "jim haught" AND maplemere_principal = "charlie taylor" AND wr_principal = "rich auerbach" |
Who is the h.h. principal with James Finch as the superintendent and Charlie Taylor as the maplemere principal? | CREATE TABLE table_name_16 (hh_principal VARCHAR, superintendent VARCHAR, maplemere_principal VARCHAR) | SELECT hh_principal FROM table_name_16 WHERE superintendent = "james finch" AND maplemere_principal = "charlie taylor" |
Who is the h.s. principal during 1973-1974? | CREATE TABLE table_name_81 (hs_principal VARCHAR, year VARCHAR) | SELECT hs_principal FROM table_name_81 WHERE year = "1973-1974" |
what is the engine for year less than 1959 and points more than 4? | CREATE TABLE table_name_7 (engine VARCHAR, year VARCHAR, points VARCHAR) | SELECT engine FROM table_name_7 WHERE year < 1959 AND points > 4 |
what is the least year for 4 points? | CREATE TABLE table_name_75 (year INTEGER, points VARCHAR) | SELECT MIN(year) FROM table_name_75 WHERE points = 4 |
what is the entrant for the ferrari v8 with points less than 4? | CREATE TABLE table_name_6 (entrant VARCHAR, engine VARCHAR, points VARCHAR) | SELECT entrant FROM table_name_6 WHERE engine = "ferrari v8" AND points < 4 |
what is the average year for 0 points and ferrari v8? | CREATE TABLE table_name_85 (year INTEGER, points VARCHAR, engine VARCHAR) | SELECT AVG(year) FROM table_name_85 WHERE points = 0 AND engine = "ferrari v8" |
When did channel 83 in singapore launch? | CREATE TABLE table_name_81 (launched VARCHAR, territory VARCHAR, channel VARCHAR) | SELECT launched FROM table_name_81 WHERE territory = "singapore" AND channel = 83 |
Where is channel 83 broadcasted? | CREATE TABLE table_name_86 (territory VARCHAR, channel VARCHAR) | SELECT territory FROM table_name_86 WHERE channel = 83 |
Who broadcasts in malaysia? | CREATE TABLE table_name_12 (broadcaster VARCHAR, territory VARCHAR) | SELECT broadcaster FROM table_name_12 WHERE territory = "malaysia" |
What are the engines for 1983? | CREATE TABLE table_name_19 (engine_s_ VARCHAR, year VARCHAR) | SELECT engine_s_ FROM table_name_19 WHERE year = 1983 |
How many appearances did Gary Depalma make when he scored less than 30 goals? | CREATE TABLE table_name_75 (appearances VARCHAR, goals VARCHAR, name VARCHAR) | SELECT appearances FROM table_name_75 WHERE goals < 30 AND name = "gary depalma" |
In stage 13, what is the intergiro classification and is on the team of Asics-c.g.a.? | CREATE TABLE table_name_10 (intergiro_classification VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR) | SELECT intergiro_classification FROM table_name_10 WHERE trofeo_fast_team = "asics-c.g.a." AND stage = "13" |
Which intergiro classification is there for team Polti at stage 14? | CREATE TABLE table_name_53 (intergiro_classification VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR) | SELECT intergiro_classification FROM table_name_53 WHERE trofeo_fast_team = "team polti" AND stage = "14" |
Who was the winner in stage 7 with a general classification of Pavel Tonkov? | CREATE TABLE table_name_97 (winner VARCHAR, general_classification VARCHAR, stage VARCHAR) | SELECT winner FROM table_name_97 WHERE general_classification = "pavel tonkov" AND stage = "7" |
Who was the winner from team Asics-c.g.a. and has a mountains classification of Mariano Piccoli? | CREATE TABLE table_name_52 (winner VARCHAR, trofeo_fast_team VARCHAR, mountains_classification VARCHAR) | SELECT winner FROM table_name_52 WHERE trofeo_fast_team = "asics-c.g.a." AND mountains_classification = "mariano piccoli" |
Which points classification was used in stage 15? | CREATE TABLE table_name_54 (points_classification VARCHAR, stage VARCHAR) | SELECT points_classification FROM table_name_54 WHERE stage = "15" |
Which winner of stage 1 was not awarded a mountains classification? | CREATE TABLE table_name_70 (winner VARCHAR, mountains_classification VARCHAR, stage VARCHAR) | SELECT winner FROM table_name_70 WHERE mountains_classification = "not awarded" AND stage = "1" |
Name the muzzel device with barrel twist of 1:10 | CREATE TABLE table_name_18 (muzzle_device VARCHAR, barrel_twist VARCHAR) | SELECT muzzle_device FROM table_name_18 WHERE barrel_twist = "1:10" |
Name the bayonet lug with ar-15 lightweight | CREATE TABLE table_name_92 (bayonet_lug VARCHAR, name VARCHAR) | SELECT bayonet_lug FROM table_name_92 WHERE name = "ar-15 lightweight" |
Name the hand guards for ar-15a2 government carbine and barrel twist of 1:9 | CREATE TABLE table_name_8 (hand_guards VARCHAR, name VARCHAR, barrel_twist VARCHAR) | SELECT hand_guards FROM table_name_8 WHERE name = "ar-15a2 government carbine" AND barrel_twist = "1:9" |
Name the barrel length for barrel twist of 1:7 | CREATE TABLE table_name_90 (barrel_length VARCHAR, barrel_twist VARCHAR) | SELECT barrel_length FROM table_name_90 WHERE barrel_twist = "1:7" |
What is the three-mora word with a low tone accented mora and a one mora of 2? | CREATE TABLE table_name_18 (three_mora_word VARCHAR, one_mora VARCHAR, accented_mora VARCHAR) | SELECT three_mora_word FROM table_name_18 WHERE NOT accented_mora = "low tone" AND one_mora = "2" |
What is the one mora for the three-mora word /kaze/ [kázé]? | CREATE TABLE table_name_73 (one_mora VARCHAR, three_mora_word VARCHAR) | SELECT one_mora FROM table_name_73 WHERE three_mora_word = "/kaze/ [kázé]" |
What is the one mora for the three-mora word /˩haruꜜ/ [hàɽɯ́ ~ hàɽɯ̂]? | CREATE TABLE table_name_29 (one_mora VARCHAR, three_mora_word VARCHAR) | SELECT one_mora FROM table_name_29 WHERE three_mora_word = "/˩haruꜜ/ [hàɽɯ́ ~ hàɽɯ̂]" |
What is the two-mora word with a low tone accented mora and a gloss of /˩kusuꜜri/ [kɯ̀sɯ́ɽì]? | CREATE TABLE table_name_53 (two_mora_word VARCHAR, gloss VARCHAR, accented_mora VARCHAR) | SELECT two_mora_word FROM table_name_53 WHERE NOT accented_mora = "low tone" AND gloss = "/˩kusuꜜri/ [kɯ̀sɯ́ɽì]" |
What is the one mora for a low tone mora with a gloss of /˩okiru/ [òkìɽɯ́]? | CREATE TABLE table_name_95 (one_mora VARCHAR, gloss VARCHAR, accented_mora VARCHAR) | SELECT one_mora FROM table_name_95 WHERE NOT accented_mora = "low tone" AND gloss = "/˩okiru/ [òkìɽɯ́]" |
What is the highest Total Medals that has 0 Gold Medal and a Ensemble of east 80 indoor percussion? | CREATE TABLE table_name_27 (total_medals INTEGER, gold_medals VARCHAR, ensemble VARCHAR) | SELECT MAX(total_medals) FROM table_name_27 WHERE gold_medals = 0 AND ensemble = "east 80 indoor percussion" |
What is the lowest Total Medals that has madison independent and Bronze Medals larger than 0 | CREATE TABLE table_name_76 (total_medals INTEGER, ensemble VARCHAR, bronze_medals VARCHAR) | SELECT MIN(total_medals) FROM table_name_76 WHERE ensemble = "madison independent" AND bronze_medals > 0 |
what is Gold Medals that has salem blue devils and a Silver Medals less than 1? | CREATE TABLE table_name_18 (gold_medals INTEGER, ensemble VARCHAR, silver_medals VARCHAR) | SELECT MIN(gold_medals) FROM table_name_18 WHERE ensemble = "salem blue devils" AND silver_medals < 1 |
What is the location of the match where the method was submission (armbar) and Mayra Conde was the opponent? | CREATE TABLE table_name_19 (location VARCHAR, method VARCHAR, opponent VARCHAR) | SELECT location FROM table_name_19 WHERE method = "submission (armbar)" AND opponent = "mayra conde" |
Who is the opponent of the match with a method of submission (armbar) and a 9-3-1 record? | CREATE TABLE table_name_86 (opponent VARCHAR, method VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_86 WHERE method = "submission (armbar)" AND record = "9-3-1" |
What is the Time (EEST), when the Stage is ss8? | CREATE TABLE table_name_5 (time__eest_ VARCHAR, stage VARCHAR) | SELECT time__eest_ FROM table_name_5 WHERE stage = "ss8" |
What is the Stage, when the Rally leader is C. Atkinson? | CREATE TABLE table_name_19 (stage VARCHAR, rally_leader VARCHAR) | SELECT stage FROM table_name_19 WHERE rally_leader = "c. atkinson" |
Who is the Winner, when the Name is Ouninpohja 1? | CREATE TABLE table_name_92 (winner VARCHAR, name VARCHAR) | SELECT winner FROM table_name_92 WHERE name = "ouninpohja 1" |
What is the Length, when the Name is Himos? | CREATE TABLE table_name_68 (length VARCHAR, name VARCHAR) | SELECT length FROM table_name_68 WHERE name = "himos" |
Who is the Winner when the Length is 21.27km? | CREATE TABLE table_name_95 (winner VARCHAR, length VARCHAR) | SELECT winner FROM table_name_95 WHERE length = "21.27km" |
What is the Name, when the Time is 8:10.1? | CREATE TABLE table_name_92 (name VARCHAR, time VARCHAR) | SELECT name FROM table_name_92 WHERE time = "8:10.1" |
In the Formula One World Championships, which entrant had 0 points with a Ferrari 156 Chassis after 1961? | CREATE TABLE table_name_2 (entrant VARCHAR, chassis VARCHAR, points VARCHAR, year VARCHAR) | SELECT entrant FROM table_name_2 WHERE points = 0 AND year > 1961 AND chassis = "ferrari 156" |
During the Formula One World Championships, which engine was used in 1965? | CREATE TABLE table_name_80 (engine VARCHAR, year VARCHAR) | SELECT engine FROM table_name_80 WHERE year = 1965 |
How many points were earned with a Chassis of a Ferrari 156? | CREATE TABLE table_name_78 (points VARCHAR, chassis VARCHAR) | SELECT COUNT(points) FROM table_name_78 WHERE chassis = "ferrari 156" |
Where did the driver who started 9 with a qualifing speed of 152.672 and finished fewer than 197 laps finish? | CREATE TABLE table_name_76 (finish VARCHAR, qual VARCHAR, laps VARCHAR, start VARCHAR) | SELECT finish FROM table_name_76 WHERE laps < 197 AND start = "9" AND qual = "152.672" |
What is the location of game 7? | CREATE TABLE table_name_1 (location VARCHAR, game VARCHAR) | SELECT location FROM table_name_1 WHERE game = 7 |
what is the location of game 4? | CREATE TABLE table_name_20 (location VARCHAR, game VARCHAR) | SELECT location FROM table_name_20 WHERE game = 4 |
Who were the 2nd group scorers that were opponents of olympiacos? | CREATE TABLE table_name_61 (scorers VARCHAR, group_position VARCHAR, opponents VARCHAR) | SELECT scorers FROM table_name_61 WHERE group_position = "2nd" AND opponents = "olympiacos" |
Who were F–A of 1–0 scorers? | CREATE TABLE table_name_94 (scorers VARCHAR, result_f_a VARCHAR) | SELECT scorers FROM table_name_94 WHERE result_f_a = "1–0" |
What was the final score of the game on November 17? | CREATE TABLE table_name_33 (final_score VARCHAR, date VARCHAR) | SELECT final_score FROM table_name_33 WHERE date = "november 17" |
What was the final score of the game on November 24 with the visiting team the Indianapolis Colts? | CREATE TABLE table_name_23 (final_score VARCHAR, visiting_team VARCHAR, date VARCHAR) | SELECT final_score FROM table_name_23 WHERE visiting_team = "indianapolis colts" AND date = "november 24" |
When was the game at Gillette Stadium that ended in a final score of 30-17? | CREATE TABLE table_name_37 (date VARCHAR, final_score VARCHAR, stadium VARCHAR) | SELECT date FROM table_name_37 WHERE final_score = "30-17" AND stadium = "gillette stadium" |
Who was the visiting team that played on September 15? | CREATE TABLE table_name_41 (visiting_team VARCHAR, date VARCHAR) | SELECT visiting_team FROM table_name_41 WHERE date = "september 15" |
What year did the Nashville Metros have the Regular Season 2nd, central? | CREATE TABLE table_name_74 (year VARCHAR, regular_season VARCHAR) | SELECT year FROM table_name_74 WHERE regular_season = "2nd, central" |
What division did the Nashville Metros play in during the year that they did not qualify for the Playoffs, where in the USL PDL League, and had the Regular Season 7th, Southeast? | CREATE TABLE table_name_96 (division VARCHAR, regular_season VARCHAR, playoffs VARCHAR, league VARCHAR) | SELECT division FROM table_name_96 WHERE playoffs = "did not qualify" AND league = "usl pdl" AND regular_season = "7th, southeast" |
What was the average year that the Nashville Metros did not qualify for the Playoffs, did not qualify for the Open Cup, and had the Regular Season 7th, Southeast? | CREATE TABLE table_name_78 (year INTEGER, regular_season VARCHAR, playoffs VARCHAR, open_cup VARCHAR) | SELECT AVG(year) FROM table_name_78 WHERE playoffs = "did not qualify" AND open_cup = "did not qualify" AND regular_season = "7th, southeast" |
Which chassis scored 52 points? | CREATE TABLE table_name_55 (chassis VARCHAR, points VARCHAR) | SELECT chassis FROM table_name_55 WHERE points = 52 |
Which engine scored 6 points and used the march 88c chassis? | CREATE TABLE table_name_51 (engine VARCHAR, points VARCHAR, chassis VARCHAR) | SELECT engine FROM table_name_51 WHERE points = 6 AND chassis = "march 88c" |
Name the D 43 with D 48 of d 9 | CREATE TABLE table_name_70 (d_43 VARCHAR, d_48 VARCHAR) | SELECT d_43 FROM table_name_70 WHERE d_48 = "d 9" |
Name the D 42 with D 43 of d 14 | CREATE TABLE table_name_7 (d_42 VARCHAR, d_43 VARCHAR) | SELECT d_42 FROM table_name_7 WHERE d_43 = "d 14" |
Name the D 47 when it has D 48 of d 29 | CREATE TABLE table_name_11 (d_47 VARCHAR, d_48 VARCHAR) | SELECT d_47 FROM table_name_11 WHERE d_48 = "d 29" |
Name the D 43 and D 48 of r 28 | CREATE TABLE table_name_45 (d_43 VARCHAR, d_48 VARCHAR) | SELECT d_43 FROM table_name_45 WHERE d_48 = "r 28" |
Name the D 47 which has D 42 of d 22 | CREATE TABLE table_name_10 (d_47 VARCHAR, d_42 VARCHAR) | SELECT d_47 FROM table_name_10 WHERE d_42 = "d 22" |
Which region had a label of Central Station? | CREATE TABLE table_name_2 (region VARCHAR, label VARCHAR) | SELECT region FROM table_name_2 WHERE label = "central station" |
What NHL team has a centre and pick number of 105? | CREATE TABLE table_name_46 (nhl_team VARCHAR, position VARCHAR, pick__number VARCHAR) | SELECT nhl_team FROM table_name_46 WHERE position = "centre" AND pick__number = "105" |
What Pick # does the St. Louis Blues have? | CREATE TABLE table_name_13 (pick__number VARCHAR, nhl_team VARCHAR) | SELECT pick__number FROM table_name_13 WHERE nhl_team = "st. louis blues" |
What is the position of the player with a Pick # of 108? | CREATE TABLE table_name_18 (position VARCHAR, pick__number VARCHAR) | SELECT position FROM table_name_18 WHERE pick__number = "108" |
What position in the Vancouver Canucks has a Pick # of 101? | CREATE TABLE table_name_43 (position VARCHAR, nhl_team VARCHAR, pick__number VARCHAR) | SELECT position FROM table_name_43 WHERE nhl_team = "vancouver canucks" AND pick__number = "101" |
What was the team's record at the game attended by 30,452? | CREATE TABLE table_name_22 (record VARCHAR, attendance VARCHAR) | SELECT record FROM table_name_22 WHERE attendance = "30,452" |
What was the attendance at the game that had a loss of Crabtree (0-1)? | CREATE TABLE table_name_34 (attendance VARCHAR, loss VARCHAR) | SELECT attendance FROM table_name_34 WHERE loss = "crabtree (0-1)" |
What races were Chi-Chi Rodriguez the runner-up in? | CREATE TABLE table_name_22 (tournament VARCHAR, runner_s__up VARCHAR) | SELECT tournament FROM table_name_22 WHERE runner_s__up = "chi-chi rodriguez" |
What was the margin of victory for Isao Aoki when he was a runner-up? | CREATE TABLE table_name_12 (margin_of_victory VARCHAR, runner_s__up VARCHAR) | SELECT margin_of_victory FROM table_name_12 WHERE runner_s__up = "isao aoki" |
What was the winning score in the mazda senior tournament players championship? | CREATE TABLE table_name_5 (winning_score VARCHAR, tournament VARCHAR) | SELECT winning_score FROM table_name_5 WHERE tournament = "mazda senior tournament players championship" |
Which tournament ended with a winning score of –27 (65-68-64-64=261)? | CREATE TABLE table_name_16 (tournament VARCHAR, winning_score VARCHAR) | SELECT tournament FROM table_name_16 WHERE winning_score = –27(65 - 68 - 64 - 64 = 261) |
Who was the runner(s)-up for the Feb 18, 1996 tournament? | CREATE TABLE table_name_39 (runner_s__up VARCHAR, date VARCHAR) | SELECT runner_s__up FROM table_name_39 WHERE date = "feb 18, 1996" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.