question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
what is the molecules when the percent mass is 1.0?
CREATE TABLE table_name_8 (molecules VARCHAR, percent_of_mass VARCHAR)
{ "SQL_Query": "SELECT molecules FROM table_name_8 WHERE percent_of_mass = \"1.0\"" }
what is the mol.weight (daltons) when the percent of mass is 1.5?
CREATE TABLE table_name_47 (molweight__daltons_ VARCHAR, percent_of_mass VARCHAR)
{ "SQL_Query": "SELECT molweight__daltons_ FROM table_name_47 WHERE percent_of_mass = \"1.5\"" }
what is the perfect of mass when the molecules is 1.74e14*?
CREATE TABLE table_name_58 (percent_of_mass VARCHAR, molecules VARCHAR)
{ "SQL_Query": "SELECT percent_of_mass FROM table_name_58 WHERE molecules = \"1.74e14*\"" }
what is the percent of mass when the mol.weight (daltons) is 1e11?
CREATE TABLE table_name_21 (percent_of_mass VARCHAR, molweight__daltons_ VARCHAR)
{ "SQL_Query": "SELECT percent_of_mass FROM table_name_21 WHERE molweight__daltons_ = \"1e11\"" }
How many people attended the game when the away team was dynamo kyiv, and a Home team of torpedo zaporizhia?
CREATE TABLE table_name_31 (attendance VARCHAR, away_team VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_31 WHERE away_team = \"dynamo kyiv\" AND home_team = \"torpedo zaporizhia\"" }
What was the round when the home team was chornomorets odessa?
CREATE TABLE table_name_55 (round VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT round FROM table_name_55 WHERE home_team = \"chornomorets odessa\"" }
What is the rank when the game was at dnipro stadium , kremenchuk?
CREATE TABLE table_name_55 (rank VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT rank FROM table_name_55 WHERE location = \"dnipro stadium , kremenchuk\"" }
What are the lowest points for the engines of the Lamborghini v12 and the Chassis on Minardi m191b?
CREATE TABLE table_name_48 (points INTEGER, engine VARCHAR, chassis VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_name_48 WHERE engine = \"lamborghini v12\" AND chassis = \"minardi m191b\"" }
What is the Chassis from before 1997 with a Lamborghini v12 engine?
CREATE TABLE table_name_98 (chassis VARCHAR, year VARCHAR, engine VARCHAR)
{ "SQL_Query": "SELECT chassis FROM table_name_98 WHERE year < 1997 AND engine = \"lamborghini v12\"" }
What is the total of the year with a point larger than 0 or the Chassis of Minardi m190?
CREATE TABLE table_name_32 (year INTEGER, chassis VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT SUM(year) FROM table_name_32 WHERE chassis = \"minardi m190\" AND points > 0" }
What are the lowest points from 1992 with a Chassis of Minardi m192?
CREATE TABLE table_name_89 (points INTEGER, year VARCHAR, chassis VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_name_89 WHERE year = 1992 AND chassis = \"minardi m192\"" }
What Entrant has 0 points and from 1997?
CREATE TABLE table_name_67 (entrant VARCHAR, points VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT entrant FROM table_name_67 WHERE points = 0 AND year = 1997" }
What is the total roll with a decile less than 7, and an authority of state, in the Macraes Flat area?
CREATE TABLE table_name_98 (roll VARCHAR, area VARCHAR, decile VARCHAR, authority VARCHAR)
{ "SQL_Query": "SELECT COUNT(roll) FROM table_name_98 WHERE decile = 7 AND authority = \"state\" AND area = \"macraes flat\"" }
What year has a decile more than 6, in the Waikouaiti area?
CREATE TABLE table_name_78 (years VARCHAR, decile VARCHAR, area VARCHAR)
{ "SQL_Query": "SELECT years FROM table_name_78 WHERE decile > 6 AND area = \"waikouaiti\"" }
What place did the Nashville Metros place in the 1994/95 Season?
CREATE TABLE table_name_64 (regular_season VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT regular_season FROM table_name_64 WHERE year = \"1994/95\"" }
What years did the Nashville Metros have Usisl Indoor League?
CREATE TABLE table_name_63 (year VARCHAR, league VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_63 WHERE league = \"usisl indoor\"" }
Which Round has kim eun-ha as an Opponent?
CREATE TABLE table_name_37 (round VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT round FROM table_name_37 WHERE opponent = \"kim eun-ha\"" }
Which kind of Edition that has a Surface of clay, and Park Sung-Hee as an opponent?
CREATE TABLE table_name_95 (edition VARCHAR, surface VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT edition FROM table_name_95 WHERE surface = \"clay\" AND opponent = \"park sung-hee\"" }
What is the highest gold number count where a county had over 9 golds and 10 silvers?
CREATE TABLE table_name_87 (gold INTEGER, total VARCHAR, silver VARCHAR)
{ "SQL_Query": "SELECT MAX(gold) FROM table_name_87 WHERE total > 9 AND silver > 10" }
How many bronze medals did the country with 7 medals and over 5 silver medals receive?
CREATE TABLE table_name_88 (bronze INTEGER, total VARCHAR, silver VARCHAR)
{ "SQL_Query": "SELECT SUM(bronze) FROM table_name_88 WHERE total = 7 AND silver > 5" }
Name the date for venue of lord's
CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_78 WHERE venue = \"lord's\"" }
Name the result for venue of lord's
CREATE TABLE table_name_82 (result VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_82 WHERE venue = \"lord's\"" }
Name the date for result of eng by 23 runs
CREATE TABLE table_name_24 (date VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_24 WHERE result = \"eng by 23 runs\"" }
Name the date for result of draw, and venue of edgbaston
CREATE TABLE table_name_37 (date VARCHAR, result VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_37 WHERE result = \"draw\" AND venue = \"edgbaston\"" }
What is the total number of weeks that the Seahawks had a record of 5-5?
CREATE TABLE table_name_73 (week VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT COUNT(week) FROM table_name_73 WHERE record = \"5-5\"" }
Who has 1 win, 1 loss, and has played 2 matches?
CREATE TABLE table_name_77 (name VARCHAR, matches VARCHAR, wins VARCHAR, losses VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_77 WHERE wins = \"1\" AND losses = \"1\" AND matches = \"2\"" }
Who has 5 losses and has played 11 matches?
CREATE TABLE table_name_47 (name VARCHAR, losses VARCHAR, matches VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_47 WHERE losses = \"5\" AND matches = \"11\"" }
How many matches has Mohammad Al-Shamlan played when there is 1 win?
CREATE TABLE table_name_43 (matches VARCHAR, wins VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT matches FROM table_name_43 WHERE wins = \"1\" AND name = \"mohammad al-shamlan\"" }
How many matches were played when there was 1 draw and 1 win?
CREATE TABLE table_name_92 (matches VARCHAR, draws VARCHAR, wins VARCHAR)
{ "SQL_Query": "SELECT matches FROM table_name_92 WHERE draws = \"1\" AND wins = \"1\"" }
Name the played with lost of 5
CREATE TABLE table_name_65 (played VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT played FROM table_name_65 WHERE lost = \"5\"" }
Name the played with points against of points against
CREATE TABLE table_name_95 (played VARCHAR, points_against VARCHAR)
{ "SQL_Query": "SELECT played FROM table_name_95 WHERE points_against = \"points against\"" }
Name the tries with tries against of 38
CREATE TABLE table_name_35 (tries_for VARCHAR, tries_against VARCHAR)
{ "SQL_Query": "SELECT tries_for FROM table_name_35 WHERE tries_against = \"38\"" }
Name the points against when tries against is 51 and points is 52 with played of 22
CREATE TABLE table_name_91 (points_against VARCHAR, tries_against VARCHAR, played VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT points_against FROM table_name_91 WHERE played = \"22\" AND points = \"52\" AND tries_against = \"51\"" }
Name the points against for cwmllynfell rfc
CREATE TABLE table_name_27 (points_against VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT points_against FROM table_name_27 WHERE club = \"cwmllynfell rfc\"" }
What is lead for the Election Results polling firm and has a PSOE of 39.6% 175?
CREATE TABLE table_name_8 (lead VARCHAR, polling_firm VARCHAR, psoe VARCHAR)
{ "SQL_Query": "SELECT lead FROM table_name_8 WHERE polling_firm = \"election results\" AND psoe = \"39.6% 175\"" }
What is the PSOE for the Local Elections polling firm?
CREATE TABLE table_name_78 (psoe VARCHAR, polling_firm VARCHAR)
{ "SQL_Query": "SELECT psoe FROM table_name_78 WHERE polling_firm = \"local elections\"" }
Which date has a PSOE of 36.1%?
CREATE TABLE table_name_86 (date VARCHAR, psoe VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_86 WHERE psoe = \"36.1%\"" }
Name the height with 9 floors
CREATE TABLE table_name_80 (height_ft___m VARCHAR, floors VARCHAR)
{ "SQL_Query": "SELECT height_ft___m FROM table_name_80 WHERE floors = 9" }
Name the years as tallest when floors are larger than 18
CREATE TABLE table_name_4 (years_as_tallest VARCHAR, floors INTEGER)
{ "SQL_Query": "SELECT years_as_tallest FROM table_name_4 WHERE floors > 18" }
Tell me the name that has 17 floors
CREATE TABLE table_name_25 (name VARCHAR, floors VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_25 WHERE floors = 17" }
Which was the position for overall less than 254, round less than 5 and pick number less than 13?
CREATE TABLE table_name_64 (position VARCHAR, pick__number VARCHAR, overall VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_64 WHERE overall < 254 AND round < 5 AND pick__number < 13" }
Name the round having an overall of 6
CREATE TABLE table_name_84 (round VARCHAR, overall VARCHAR)
{ "SQL_Query": "SELECT round FROM table_name_84 WHERE overall = 6" }
Name the position of the player from college of virginia
CREATE TABLE table_name_96 (position VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_96 WHERE college = \"virginia\"" }
What was the date of the game that had a goal of 3?
CREATE TABLE table_name_48 (date VARCHAR, goal VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_48 WHERE goal = 3" }
What was the date of the game that had a goal of 4?
CREATE TABLE table_name_58 (date VARCHAR, goal VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_58 WHERE goal = 4" }
What is the highest rank of a swimmer in lane 5?
CREATE TABLE table_name_20 (rank INTEGER, lane VARCHAR)
{ "SQL_Query": "SELECT MAX(rank) FROM table_name_20 WHERE lane = 5" }
What is the lowest rank of Jens Kruppa in a lane larger than 2?
CREATE TABLE table_name_28 (rank INTEGER, name VARCHAR, lane VARCHAR)
{ "SQL_Query": "SELECT MIN(rank) FROM table_name_28 WHERE name = \"jens kruppa\" AND lane > 2" }
Which nationality has a lane of 6 and a rank smaller than 6?
CREATE TABLE table_name_33 (nationality VARCHAR, rank VARCHAR, lane VARCHAR)
{ "SQL_Query": "SELECT nationality FROM table_name_33 WHERE rank < 6 AND lane = 6" }
What is Tony Jacklin's total?
CREATE TABLE table_name_33 (total VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT total FROM table_name_33 WHERE player = \"tony jacklin\"" }
What was Todd Hamilton's to par?
CREATE TABLE table_name_9 (to_par VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_9 WHERE player = \"todd hamilton\"" }
When was a game won with more than 11 to par?
CREATE TABLE table_name_6 (year_s__won VARCHAR, to_par INTEGER)
{ "SQL_Query": "SELECT year_s__won FROM table_name_6 WHERE to_par > 11" }
Where is the place that has a Callsign of DWRJ-FM?
CREATE TABLE table_name_77 (location VARCHAR, callsign VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_77 WHERE callsign = \"dwrj-fm\"" }
Which Power has Location in metro manila
CREATE TABLE table_name_75 (power__kw_ VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT power__kw_ FROM table_name_75 WHERE location = \"metro manila\"" }
Which tier of the tournament has Mont de Marson in it?
CREATE TABLE table_name_61 (tier VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT tier FROM table_name_61 WHERE tournament = \"mont de marson\"" }
Which date has opponents, Akgul Amanmuradova Nina Bratchikova, in the final?
CREATE TABLE table_name_65 (date VARCHAR, opponents_in_the_final VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_65 WHERE opponents_in_the_final = \"akgul amanmuradova nina bratchikova\"" }
Which date has opponents, Claire De Gubernatis Alexandra Dulgheru, in the final?
CREATE TABLE table_name_20 (date VARCHAR, opponents_in_the_final VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_20 WHERE opponents_in_the_final = \"claire de gubernatis alexandra dulgheru\"" }
What is the score in the touranament of Antalya-Belek?
CREATE TABLE table_name_66 (score VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_66 WHERE tournament = \"antalya-belek\"" }
Which date has the tier of Itf $10k?
CREATE TABLE table_name_66 (date VARCHAR, tier VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_66 WHERE tier = \"itf $10k\"" }
What is the score vs. all when the score vs. Terran is 159?
CREATE TABLE table_name_72 (vs_all VARCHAR, vs_terran VARCHAR)
{ "SQL_Query": "SELECT vs_all FROM table_name_72 WHERE vs_terran = \"159\"" }
What is the score vs. Protoss when the score vs. Terran is 10 wins?
CREATE TABLE table_name_97 (vs_protoss VARCHAR, vs_terran VARCHAR)
{ "SQL_Query": "SELECT vs_protoss FROM table_name_97 WHERE vs_terran = \"10 wins\"" }
What is the score vs. Terran when the score vs. Zerg is 69?
CREATE TABLE table_name_12 (vs_terran VARCHAR, vs_zerg VARCHAR)
{ "SQL_Query": "SELECT vs_terran FROM table_name_12 WHERE vs_zerg = \"69\"" }
What occurrs as of September 1, 2012 when the value for vs. all is 65.47%?
CREATE TABLE table_name_61 (as_of_september_1 VARCHAR, _2012 VARCHAR, vs_all VARCHAR)
{ "SQL_Query": "SELECT as_of_september_1, _2012 FROM table_name_61 WHERE vs_all = \"65.47%\"" }
What is the record of the opponent that has a bye?
CREATE TABLE table_name_35 (record VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_35 WHERE opponent = \"bye\"" }
What was the average total medals received by Roland Hayes School when there were 0 gold medals?
CREATE TABLE table_name_99 (total_medals INTEGER, gold_medals VARCHAR, ensemble VARCHAR)
{ "SQL_Query": "SELECT AVG(total_medals) FROM table_name_99 WHERE gold_medals = 0 AND ensemble = \"roland hayes school\"" }
What was the total number of medals received by James Logan High School when it received less than 1 silver medal?
CREATE TABLE table_name_42 (total_medals VARCHAR, ensemble VARCHAR, silver_medals VARCHAR)
{ "SQL_Query": "SELECT COUNT(total_medals) FROM table_name_42 WHERE ensemble = \"james logan high school\" AND silver_medals < 1" }
What is the highest number of bronze medals received by an ensemble who received fewer than 0 gold medals?
CREATE TABLE table_name_77 (bronze_medals INTEGER, gold_medals INTEGER)
{ "SQL_Query": "SELECT MAX(bronze_medals) FROM table_name_77 WHERE gold_medals < 0" }
What was the Score of the 2008 Africa Cup of Nations Competition?
CREATE TABLE table_name_3 (score VARCHAR, competition VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_3 WHERE competition = \"2008 africa cup of nations\"" }
Name the most goals with losses less than 15 and position more than 8 with points of 42+4
CREATE TABLE table_name_18 (goals_for INTEGER, points VARCHAR, losses VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT MAX(goals_for) FROM table_name_18 WHERE losses < 15 AND position > 8 AND points = \"42+4\"" }
Name the average goals against for draws of 8 and wins more than 22 with losses less than 12
CREATE TABLE table_name_92 (goals_against INTEGER, wins VARCHAR, draws VARCHAR, losses VARCHAR)
{ "SQL_Query": "SELECT AVG(goals_against) FROM table_name_92 WHERE draws = 8 AND losses < 12 AND wins > 22" }
Name the least wins for goal difference being less than -20 with position less than 20 and goals for of 35
CREATE TABLE table_name_19 (wins INTEGER, goal_difference VARCHAR, position VARCHAR, goals_for VARCHAR)
{ "SQL_Query": "SELECT MIN(wins) FROM table_name_19 WHERE position < 20 AND goals_for = 35 AND goal_difference < -20" }
Name the average losses for draws larger than 6 and played more than 38
CREATE TABLE table_name_58 (losses INTEGER, draws VARCHAR, played VARCHAR)
{ "SQL_Query": "SELECT AVG(losses) FROM table_name_58 WHERE draws > 6 AND played > 38" }
Name the least goals against for played more than 38
CREATE TABLE table_name_4 (goals_against INTEGER, played INTEGER)
{ "SQL_Query": "SELECT MIN(goals_against) FROM table_name_4 WHERE played > 38" }
After 1961, who as the Entrant when the engine was a Ferrari v8, and when the points were lower than 23?
CREATE TABLE table_name_64 (entrant VARCHAR, points VARCHAR, year VARCHAR, engine VARCHAR)
{ "SQL_Query": "SELECT entrant FROM table_name_64 WHERE year > 1961 AND engine = \"ferrari v8\" AND points < 23" }
What is was the Chassis in 1967?
CREATE TABLE table_name_38 (chassis VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT chassis FROM table_name_38 WHERE year = 1967" }
In 1962, what was the total number of points, when the Engine was Ferrari v6?
CREATE TABLE table_name_97 (points VARCHAR, engine VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT COUNT(points) FROM table_name_97 WHERE engine = \"ferrari v6\" AND year = 1962" }
In 1961, what was the Chassis when the points were lower than 6?
CREATE TABLE table_name_51 (chassis VARCHAR, points VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT chassis FROM table_name_51 WHERE points < 6 AND year = 1961" }
What was the sum of the years, when the entrant was Scuderia Ferrari, and when the Chassis was Ferrari 312/66?
CREATE TABLE table_name_68 (year INTEGER, entrant VARCHAR, chassis VARCHAR)
{ "SQL_Query": "SELECT SUM(year) FROM table_name_68 WHERE entrant = \"scuderia ferrari\" AND chassis = \"ferrari 312/66\"" }
What was the sum of the years, when the entrant was Scuderia Centro Sud, and when there were 6 points?
CREATE TABLE table_name_69 (year INTEGER, entrant VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT SUM(year) FROM table_name_69 WHERE entrant = \"scuderia centro sud\" AND points = 6" }
In the tkkm o manawatu coed school in kelvin grove, what is the Authority listed/
CREATE TABLE table_name_93 (authority VARCHAR, name VARCHAR, gender VARCHAR, area VARCHAR)
{ "SQL_Query": "SELECT authority FROM table_name_93 WHERE gender = \"coed\" AND area = \"kelvin grove\" AND name = \"tkkm o manawatu\"" }
which Authority has a coed school with a decile greater than 4, with a 150 roll?
CREATE TABLE table_name_49 (authority VARCHAR, roll VARCHAR, gender VARCHAR, decile VARCHAR)
{ "SQL_Query": "SELECT authority FROM table_name_49 WHERE gender = \"coed\" AND decile > 4 AND roll = \"150\"" }
Name the language for trotta
CREATE TABLE table_name_68 (language VARCHAR, original_title VARCHAR)
{ "SQL_Query": "SELECT language FROM table_name_68 WHERE original_title = \"trotta\"" }
Name the original title directed by luis buñuel
CREATE TABLE table_name_85 (original_title VARCHAR, director VARCHAR)
{ "SQL_Query": "SELECT original_title FROM table_name_85 WHERE director = \"luis buñuel\"" }
Name the original title directed by sudhendu roy
CREATE TABLE table_name_79 (original_title VARCHAR, director VARCHAR)
{ "SQL_Query": "SELECT original_title FROM table_name_79 WHERE director = \"sudhendu roy\"" }
Name the film title that is spanish from peru
CREATE TABLE table_name_78 (film_title_used_in_nomination VARCHAR, language VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT film_title_used_in_nomination FROM table_name_78 WHERE language = \"spanish\" AND country = \"peru\"" }
Name the langauge for switzerland
CREATE TABLE table_name_96 (language VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT language FROM table_name_96 WHERE country = \"switzerland\"" }
What is the Total with 0 Silver and Gold, 1 Bronze and Rank larger than 2?
CREATE TABLE table_name_54 (total INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR, bronze VARCHAR)
{ "SQL_Query": "SELECT MIN(total) FROM table_name_54 WHERE rank > 2 AND bronze = 1 AND silver > 0 AND gold < 0" }
How many Bronze medals were received by the nation that Ranked less than 5 and received more than 2 Gold medals, less than 4 Silver medals with a Total of 9 medals?
CREATE TABLE table_name_70 (bronze INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR, gold VARCHAR)
{ "SQL_Query": "SELECT AVG(bronze) FROM table_name_70 WHERE rank < 5 AND gold > 2 AND total = 9 AND silver < 4" }
which order of bat belongs to the family of vespertilionidae and includes the northern long-eared myotis?
CREATE TABLE table_name_26 (order VARCHAR, family VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT order FROM table_name_26 WHERE family = \"vespertilionidae\" AND name = \"northern long-eared myotis\"" }
What year has WSC class?
CREATE TABLE table_name_42 (year VARCHAR, class VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_42 WHERE class = \"wsc\"" }
Which race has D. Beadman for the jockey and a 4th place result?
CREATE TABLE table_name_27 (race VARCHAR, jockey VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT race FROM table_name_27 WHERE jockey = \"d. beadman\" AND result = \"4th\"" }
Who is the 1st member in the 1884 by-election?
CREATE TABLE table_name_7 (election VARCHAR)
{ "SQL_Query": "SELECT 1 AS st_member FROM table_name_7 WHERE election = \"1884 by-election\"" }
What is the 2nd party in the 1874 election?
CREATE TABLE table_name_16 (election VARCHAR)
{ "SQL_Query": "SELECT 2 AS nd_party FROM table_name_16 WHERE election = \"1874\"" }
Which school had a player who played the C position?
CREATE TABLE table_name_64 (school VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT school FROM table_name_64 WHERE position = \"c\"" }
Which game is on the date October 16?
CREATE TABLE table_name_11 (game INTEGER, date VARCHAR)
{ "SQL_Query": "SELECT AVG(game) FROM table_name_11 WHERE date = \"october 16\"" }
What is the 2009 value with a q1 in 2006 in the French Open?
CREATE TABLE table_name_75 (tournament VARCHAR)
{ "SQL_Query": "SELECT 2009 FROM table_name_75 WHERE 2006 = \"q1\" AND tournament = \"french open\"" }
What is the 2010 value with a 2r in 2008 and A in 2013?
CREATE TABLE table_name_83 (Id VARCHAR)
{ "SQL_Query": "SELECT 2010 FROM table_name_83 WHERE 2008 = \"2r\" AND 2013 = \"a\"" }
What is the 2007 value with 1r in 2009 in the US Open?
CREATE TABLE table_name_26 (tournament VARCHAR)
{ "SQL_Query": "SELECT 2007 FROM table_name_26 WHERE 2009 = \"1r\" AND tournament = \"us open\"" }
What is the 2009 value in the 2011 Grand Slam Tournaments?
CREATE TABLE table_name_55 (Id VARCHAR)
{ "SQL_Query": "SELECT 2009 FROM table_name_55 WHERE 2011 = \"grand slam tournaments\"" }
What is the 2005 value with 1r in 2013 and q2 in 2011?
CREATE TABLE table_name_73 (Id VARCHAR)
{ "SQL_Query": "SELECT 2005 FROM table_name_73 WHERE 2013 = \"1r\" AND 2011 = \"q2\"" }
What is the 2010 value in the Australian Open?
CREATE TABLE table_name_60 (tournament VARCHAR)
{ "SQL_Query": "SELECT 2010 FROM table_name_60 WHERE tournament = \"australian open\"" }