question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
Which country had a tower destroyed in 1899? | CREATE TABLE table_name_55 (country VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_55 WHERE year = \"1899\""
} |
Who was the opponent at the game when the record was 28–45? | CREATE TABLE table_name_66 (opponent VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_66 WHERE record = \"28–45\""
} |
Which entrant has 4 points and BRM p25 for the Chassis? | CREATE TABLE table_name_33 (entrant VARCHAR, pts VARCHAR, chassis VARCHAR) | {
"SQL_Query": "SELECT entrant FROM table_name_33 WHERE pts = \"4\" AND chassis = \"brm p25\""
} |
Who is the entrant when the year is less than 1953? | CREATE TABLE table_name_97 (entrant VARCHAR, year INTEGER) | {
"SQL_Query": "SELECT entrant FROM table_name_97 WHERE year < 1953"
} |
How many points were scored when the Chassis is BRM p25? | CREATE TABLE table_name_57 (pts VARCHAR, chassis VARCHAR) | {
"SQL_Query": "SELECT pts FROM table_name_57 WHERE chassis = \"brm p25\""
} |
Name the episode that aired october 8, 1988 | CREATE TABLE table_name_81 (episode_title VARCHAR, original_airdate VARCHAR) | {
"SQL_Query": "SELECT episode_title FROM table_name_81 WHERE original_airdate = \"october 8, 1988\""
} |
Name the original airdate for mr. buckston | CREATE TABLE table_name_23 (original_airdate VARCHAR, identity_ies_ VARCHAR) | {
"SQL_Query": "SELECT original_airdate FROM table_name_23 WHERE identity_ies_ = \"mr. buckston\""
} |
What is the name of the player taken in round 23? | CREATE TABLE table_name_2 (name VARCHAR, round VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_2 WHERE round = 23"
} |
What engine was used in 1999? | CREATE TABLE table_name_76 (engine VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT engine FROM table_name_76 WHERE year = \"1999\""
} |
What rank did the chassis reynard 94i have in 1996? | CREATE TABLE table_name_66 (rank VARCHAR, chassis VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT rank FROM table_name_66 WHERE chassis = \"reynard 94i\" AND year = \"1996\""
} |
What rank did the dallara chassis finish in 2000? | CREATE TABLE table_name_93 (rank VARCHAR, year VARCHAR, chassis VARCHAR) | {
"SQL_Query": "SELECT rank FROM table_name_93 WHERE year = \"2000\" AND chassis = \"dallara\""
} |
Which engine finished 7th with the reynard 95i chassis? | CREATE TABLE table_name_51 (engine VARCHAR, rank VARCHAR, chassis VARCHAR) | {
"SQL_Query": "SELECT engine FROM table_name_51 WHERE rank = \"7th\" AND chassis = \"reynard 95i\""
} |
What highest Year has Wins 15 and Losses less than 5? | CREATE TABLE table_name_78 (year INTEGER, wins VARCHAR, loses VARCHAR) | {
"SQL_Query": "SELECT MAX(year) FROM table_name_78 WHERE wins = 15 AND loses < 5"
} |
What average Year has Losses 4, and Wins less than 18, and Draws greater than 1? | CREATE TABLE table_name_24 (year INTEGER, draws VARCHAR, loses VARCHAR, wins VARCHAR) | {
"SQL_Query": "SELECT AVG(year) FROM table_name_24 WHERE loses = 4 AND wins < 18 AND draws > 1"
} |
What average Wins has Losses 2, and Draws less than 0? | CREATE TABLE table_name_92 (wins INTEGER, loses VARCHAR, draws VARCHAR) | {
"SQL_Query": "SELECT AVG(wins) FROM table_name_92 WHERE loses = 2 AND draws < 0"
} |
What average Loses has Draws less than 0? | CREATE TABLE table_name_40 (loses INTEGER, draws INTEGER) | {
"SQL_Query": "SELECT AVG(loses) FROM table_name_40 WHERE draws < 0"
} |
What sum of Losses has Year greater than 1972, and Competition of nswrfl, and Draws 0, and Wins 16? | CREATE TABLE table_name_18 (loses INTEGER, wins VARCHAR, draws VARCHAR, year VARCHAR, competition VARCHAR) | {
"SQL_Query": "SELECT SUM(loses) FROM table_name_18 WHERE year > 1972 AND competition = \"nswrfl\" AND draws = 0 AND wins = 16"
} |
What is the height of the player who currently plays for Alta Gestión Fuenlabrada? | CREATE TABLE table_name_59 (height VARCHAR, current_club VARCHAR) | {
"SQL_Query": "SELECT height FROM table_name_59 WHERE current_club = \"alta gestión fuenlabrada\""
} |
What position does Mario Kasun play? | CREATE TABLE table_name_94 (position VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT position FROM table_name_94 WHERE player = \"mario kasun\""
} |
What is the largest number Lost to david nalbandian with a Win Rate of 20%? | CREATE TABLE table_name_91 (lost INTEGER, win__percentage VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT MAX(lost) FROM table_name_91 WHERE win__percentage = \"20%\" AND opponent = \"david nalbandian\""
} |
What is the smallest number of Matches with less than 97 losses and a Win rate of 28.68%? | CREATE TABLE table_name_59 (matches INTEGER, win__percentage VARCHAR, lost VARCHAR) | {
"SQL_Query": "SELECT MIN(matches) FROM table_name_59 WHERE win__percentage = \"28.68%\" AND lost < 97"
} |
What is the total number of Lost for the Highest Ranking of – –? | CREATE TABLE table_name_61 (lost VARCHAR, highest_ranking VARCHAR) | {
"SQL_Query": "SELECT COUNT(lost) FROM table_name_61 WHERE highest_ranking = \"– –\""
} |
what lane did inna nikitina have? | CREATE TABLE table_name_74 (lane INTEGER, name VARCHAR) | {
"SQL_Query": "SELECT MAX(lane) FROM table_name_74 WHERE name = \"inna nikitina\""
} |
what is the name that saw 4 heats and a lane higher than 7? | CREATE TABLE table_name_68 (name VARCHAR, heat VARCHAR, lane VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_68 WHERE heat = 4 AND lane > 7"
} |
What is the highest NBR number that corresponds to the J class and the road number of 1211? | CREATE TABLE table_name_29 (nbr_number INTEGER, class VARCHAR, road_number VARCHAR) | {
"SQL_Query": "SELECT MAX(nbr_number) FROM table_name_29 WHERE class = \"j\" AND road_number = 1211"
} |
How many road numbers are before 1922? | CREATE TABLE table_name_18 (road_number VARCHAR, year INTEGER) | {
"SQL_Query": "SELECT COUNT(road_number) FROM table_name_18 WHERE year < 1922"
} |
Which original operator is in the 25nc class? | CREATE TABLE table_name_65 (original_operator VARCHAR, class VARCHAR) | {
"SQL_Query": "SELECT original_operator FROM table_name_65 WHERE class = \"25nc\""
} |
Which class starts after 1939 and has a road number smaller than 3508? | CREATE TABLE table_name_9 (class VARCHAR, year VARCHAR, road_number VARCHAR) | {
"SQL_Query": "SELECT class FROM table_name_9 WHERE year > 1939 AND road_number < 3508"
} |
Name the LB&SCR number that has SR number of 8597–8600 | CREATE TABLE table_name_7 (lb VARCHAR, scr_no VARCHAR, sr_no VARCHAR) | {
"SQL_Query": "SELECT lb & scr_no FROM table_name_7 WHERE sr_no = \"8597–8600\""
} |
What is the time of songs that have the writer Aaron Schroeder and Wally Gold? | CREATE TABLE table_name_55 (time VARCHAR, writer_s_ VARCHAR) | {
"SQL_Query": "SELECT time FROM table_name_55 WHERE writer_s_ = \"aaron schroeder and wally gold\""
} |
On songs that have a release date of 6/17/61, a track larger than 20, and a writer of Woody Harris, what is the chart peak? | CREATE TABLE table_name_46 (chart_peak VARCHAR, writer_s_ VARCHAR, release_date VARCHAR, track VARCHAR) | {
"SQL_Query": "SELECT chart_peak FROM table_name_46 WHERE release_date = \"6/17/61\" AND track > 20 AND writer_s_ = \"woody harris\""
} |
What catalogue is the song It's Now or Never? | CREATE TABLE table_name_86 (catalogue VARCHAR, song_title VARCHAR) | {
"SQL_Query": "SELECT catalogue FROM table_name_86 WHERE song_title = \"it's now or never\""
} |
On songs with track numbers smaller than number 17 and catalogues of LSP 2231, who are the writer(s)? | CREATE TABLE table_name_27 (writer_s_ VARCHAR, catalogue VARCHAR, track VARCHAR) | {
"SQL_Query": "SELECT writer_s_ FROM table_name_27 WHERE catalogue = \"lsp 2231\" AND track < 17"
} |
What year did he start at 13? | CREATE TABLE table_name_6 (year VARCHAR, start VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_6 WHERE start = \"13\""
} |
What was the finish place with a qual of 123.660? | CREATE TABLE table_name_26 (finish VARCHAR, qual VARCHAR) | {
"SQL_Query": "SELECT finish FROM table_name_26 WHERE qual = \"123.660\""
} |
What was the rank with the qual of 115.095? | CREATE TABLE table_name_86 (rank VARCHAR, qual VARCHAR) | {
"SQL_Query": "SELECT rank FROM table_name_86 WHERE qual = \"115.095\""
} |
Who was the runner-up when the margin was 1 stroke? | CREATE TABLE table_name_1 (runner_s__up VARCHAR, margin VARCHAR) | {
"SQL_Query": "SELECT runner_s__up FROM table_name_1 WHERE margin = \"1 stroke\""
} |
What was the score in the year 2004? | CREATE TABLE table_name_72 (score VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_72 WHERE year = \"2004\""
} |
Who was the runner-up when the year was 2008? | CREATE TABLE table_name_58 (runner_s__up VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT runner_s__up FROM table_name_58 WHERE year = \"2008\""
} |
In what year was the score 204 (-6)? | CREATE TABLE table_name_3 (year VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_3 WHERE score = \"204 (-6)\""
} |
What was the country when the margin was 2 strokes, and when the score was 276 (-4)? | CREATE TABLE table_name_45 (country VARCHAR, margin VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_45 WHERE margin = \"2 strokes\" AND score = \"276 (-4)\""
} |
What is the Overall Record for the School in Milford? | CREATE TABLE table_name_28 (overall_record VARCHAR, school VARCHAR) | {
"SQL_Query": "SELECT overall_record FROM table_name_28 WHERE school = \"milford\""
} |
What was the top first place prize in 1997? | CREATE TABLE table_name_49 (first_prize___ INTEGER, year VARCHAR) | {
"SQL_Query": "SELECT MAX(first_prize___) AS $__ FROM table_name_49 WHERE year = 1997"
} |
What was the total purse in the years after 1996 with a score of 272 (-16) when frank nobilo won? | CREATE TABLE table_name_27 (purse___ INTEGER, year VARCHAR, score VARCHAR, winner VARCHAR) | {
"SQL_Query": "SELECT SUM(purse___) AS $__ FROM table_name_27 WHERE score = \"272 (-16)\" AND winner = \"frank nobilo\" AND year > 1996"
} |
What is the average Rank for a lane smaller than 3 with a nationality of Australia? | CREATE TABLE table_name_55 (rank INTEGER, lane VARCHAR, nationality VARCHAR) | {
"SQL_Query": "SELECT AVG(rank) FROM table_name_55 WHERE lane < 3 AND nationality = \"australia\""
} |
what is the number of lane with a rank more than 2 for Louise ørnstedt? | CREATE TABLE table_name_86 (lane VARCHAR, rank VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT COUNT(lane) FROM table_name_86 WHERE rank > 2 AND name = \"louise ørnstedt\""
} |
What shows for nationality when there is a rank larger than 6, and a Time of 2:14.95? | CREATE TABLE table_name_52 (nationality VARCHAR, rank VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT nationality FROM table_name_52 WHERE rank > 6 AND time = \"2:14.95\""
} |
What is the Total Region number of hte one that has Eidsvold at 970 and Biggenden larger than 1,570? | CREATE TABLE table_name_40 (total_region VARCHAR, eidsvold VARCHAR, biggenden VARCHAR) | {
"SQL_Query": "SELECT COUNT(total_region) FROM table_name_40 WHERE eidsvold = 970 AND biggenden > 1 OFFSET 570"
} |
What is the average year with alfredo salazar fina salazar in mixed doubles? | CREATE TABLE table_name_41 (year INTEGER, mixed_doubles VARCHAR) | {
"SQL_Query": "SELECT AVG(year) FROM table_name_41 WHERE mixed_doubles = \"alfredo salazar fina salazar\""
} |
Which venue had an extra of Team Competition and a result of 1st? | CREATE TABLE table_name_48 (venue VARCHAR, extra VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_48 WHERE extra = \"team competition\" AND result = \"1st\""
} |
Which venue led to a result of 23rd? | CREATE TABLE table_name_96 (venue VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_96 WHERE result = \"23rd\""
} |
Which venue had an extra of Junior Race? | CREATE TABLE table_name_68 (venue VARCHAR, extra VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_68 WHERE extra = \"junior race\""
} |
Which venue led to a result of 13th and had an extra of Long Race? | CREATE TABLE table_name_51 (venue VARCHAR, extra VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_51 WHERE extra = \"long race\" AND result = \"13th\""
} |
What is the percentage of Terry McAuliffe that has a Date Administered on May 31 – june 2 | CREATE TABLE table_name_86 (terry_mcauliffe VARCHAR, dates_administered VARCHAR) | {
"SQL_Query": "SELECT terry_mcauliffe FROM table_name_86 WHERE dates_administered = \"may 31 – june 2\""
} |
Which Source has Terry McAuliffe of 36% | CREATE TABLE table_name_80 (source VARCHAR, terry_mcauliffe VARCHAR) | {
"SQL_Query": "SELECT source FROM table_name_80 WHERE terry_mcauliffe = \"36%\""
} |
Which Terry McAuliffe is it that has a Dates Administered on June 6–7? | CREATE TABLE table_name_8 (terry_mcauliffe VARCHAR, dates_administered VARCHAR) | {
"SQL_Query": "SELECT terry_mcauliffe FROM table_name_8 WHERE dates_administered = \"june 6–7\""
} |
Which Source has a Brian Moran of 19%? | CREATE TABLE table_name_64 (source VARCHAR, brian_moran VARCHAR) | {
"SQL_Query": "SELECT source FROM table_name_64 WHERE brian_moran = \"19%\""
} |
What team played on the road against the Buffalo Bills at home ? | CREATE TABLE table_name_21 (visiting_team VARCHAR, host_team VARCHAR) | {
"SQL_Query": "SELECT visiting_team FROM table_name_21 WHERE host_team = \"buffalo bills\""
} |
Which week did the Baltimore Ravens play at home ? | CREATE TABLE table_name_79 (week VARCHAR, host_team VARCHAR) | {
"SQL_Query": "SELECT week FROM table_name_79 WHERE host_team = \"baltimore ravens\""
} |
What was the final score on week 14 ? | CREATE TABLE table_name_53 (final_score VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT final_score FROM table_name_53 WHERE week = 14"
} |
When did the Baltimore Ravens play at home ? | CREATE TABLE table_name_79 (date VARCHAR, host_team VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_79 WHERE host_team = \"baltimore ravens\""
} |
What was the final score in week 3 ? | CREATE TABLE table_name_46 (final_score VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT final_score FROM table_name_46 WHERE week = 3"
} |
To what party does Ralph Jacobi belong? | CREATE TABLE table_name_79 (party VARCHAR, member VARCHAR) | {
"SQL_Query": "SELECT party FROM table_name_79 WHERE member = \"ralph jacobi\""
} |
When was Hon Les Johnson in office? | CREATE TABLE table_name_74 (term_in_office VARCHAR, member VARCHAR) | {
"SQL_Query": "SELECT term_in_office FROM table_name_74 WHERE member = \"hon les johnson\""
} |
Which party had a member from the state of Vic and an Electorate called Wannon? | CREATE TABLE table_name_23 (party VARCHAR, state VARCHAR, electorate VARCHAR) | {
"SQL_Query": "SELECT party FROM table_name_23 WHERE state = \"vic\" AND electorate = \"wannon\""
} |
What party is Mick Young a member of? | CREATE TABLE table_name_45 (party VARCHAR, member VARCHAR) | {
"SQL_Query": "SELECT party FROM table_name_45 WHERE member = \"mick young\""
} |
Which tires were in Class C in years before 1983? | CREATE TABLE table_name_70 (tyres VARCHAR, class VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT tyres FROM table_name_70 WHERE class = \"c\" AND year < 1983"
} |
What is the earliest year that had a co-driver of Roger Enever? | CREATE TABLE table_name_77 (year INTEGER, co_drivers VARCHAR) | {
"SQL_Query": "SELECT MIN(year) FROM table_name_77 WHERE co_drivers = \"roger enever\""
} |
Which date has 3 as the goal? | CREATE TABLE table_name_55 (date VARCHAR, goal VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_55 WHERE goal = 3"
} |
What Label released on October 25, 1984, in the format of Stereo LP? | CREATE TABLE table_name_79 (label VARCHAR, date VARCHAR, format VARCHAR) | {
"SQL_Query": "SELECT label FROM table_name_79 WHERE date = \"october 25, 1984\" AND format = \"stereo lp\""
} |
What are the catalogs of releases from Sony Music Direct? | CREATE TABLE table_name_72 (catalog VARCHAR, label VARCHAR) | {
"SQL_Query": "SELECT catalog FROM table_name_72 WHERE label = \"sony music direct\""
} |
What is the region of the release of a CD with catalog 32xa-119? | CREATE TABLE table_name_58 (region VARCHAR, format VARCHAR, catalog VARCHAR) | {
"SQL_Query": "SELECT region FROM table_name_58 WHERE format = \"cd\" AND catalog = \"32xa-119\""
} |
What is the catalog of the release from January 23, 2002? | CREATE TABLE table_name_59 (catalog VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT catalog FROM table_name_59 WHERE date = \"january 23, 2002\""
} |
What was the region of the release from May 27, 2009? | CREATE TABLE table_name_55 (region VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT region FROM table_name_55 WHERE date = \"may 27, 2009\""
} |
What is the region of the Alfa Records release with catalog ALCA-282? | CREATE TABLE table_name_54 (region VARCHAR, label VARCHAR, catalog VARCHAR) | {
"SQL_Query": "SELECT region FROM table_name_54 WHERE label = \"alfa records\" AND catalog = \"alca-282\""
} |
What is the to par for the player from the United States with a 72-67-80-71=290 score? | CREATE TABLE table_name_14 (to_par VARCHAR, country VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT to_par FROM table_name_14 WHERE country = \"united states\" AND score = 72 - 67 - 80 - 71 = 290"
} |
Name the rank for laps less than 130 and year of 1951 | CREATE TABLE table_name_31 (rank VARCHAR, laps VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT rank FROM table_name_31 WHERE laps < 130 AND year = \"1951\""
} |
Name the year for laps of 200 and rank of 24 | CREATE TABLE table_name_14 (year VARCHAR, laps VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_14 WHERE laps = 200 AND rank = \"24\""
} |
Name the rank with finish of 12 and year of 1963 | CREATE TABLE table_name_29 (rank VARCHAR, finish VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT rank FROM table_name_29 WHERE finish = \"12\" AND year = \"1963\""
} |
Name the rank with laps of 200 and qual of 148.374 | CREATE TABLE table_name_5 (rank VARCHAR, laps VARCHAR, qual VARCHAR) | {
"SQL_Query": "SELECT rank FROM table_name_5 WHERE laps = 200 AND qual = \"148.374\""
} |
Name the finish with Laps more than 200 | CREATE TABLE table_name_17 (finish VARCHAR, laps INTEGER) | {
"SQL_Query": "SELECT finish FROM table_name_17 WHERE laps > 200"
} |
Name the rank for 151 Laps | CREATE TABLE table_name_18 (rank VARCHAR, laps VARCHAR) | {
"SQL_Query": "SELECT rank FROM table_name_18 WHERE laps = 151"
} |
The qual of totals took place during what year? | CREATE TABLE table_name_61 (year VARCHAR, qual VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_61 WHERE qual = \"totals\""
} |
What year did the finish of 15 happen in? | CREATE TABLE table_name_16 (year VARCHAR, finish VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_16 WHERE finish = \"15\""
} |
What's the Finish rank of 31? | CREATE TABLE table_name_71 (finish VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT finish FROM table_name_71 WHERE rank = \"31\""
} |
What year did the rank of 31 happen in? | CREATE TABLE table_name_75 (year VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_75 WHERE rank = \"31\""
} |
Which item resulted in a score of 4-1? | CREATE TABLE table_name_77 (score VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_77 WHERE result = \"4-1\""
} |
Which item has a score of 5-1? | CREATE TABLE table_name_6 (score VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_6 WHERE result = \"5-1\""
} |
Which competition had a 4-1 result, and a score of 4-1? | CREATE TABLE table_name_19 (competition VARCHAR, result VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT competition FROM table_name_19 WHERE result = \"4-1\" AND score = \"4-1\""
} |
Name the 2009 ffor 2010 of 1r and 2012 of a and 2008 of 2r | CREATE TABLE table_name_44 (Id VARCHAR) | {
"SQL_Query": "SELECT 2009 FROM table_name_44 WHERE 2010 = \"1r\" AND 2012 = \"a\" AND 2008 = \"2r\""
} |
Name the 2011 for 2012 of a and 2010 of 1r with 2008 of 2r | CREATE TABLE table_name_92 (Id VARCHAR) | {
"SQL_Query": "SELECT 2011 FROM table_name_92 WHERE 2012 = \"a\" AND 2010 = \"1r\" AND 2008 = \"2r\""
} |
Name the 2010 for tournament of us open | CREATE TABLE table_name_95 (tournament VARCHAR) | {
"SQL_Query": "SELECT 2010 FROM table_name_95 WHERE tournament = \"us open\""
} |
Name the 2010 for 2011 of a and 2008 of 1r | CREATE TABLE table_name_61 (Id VARCHAR) | {
"SQL_Query": "SELECT 2010 FROM table_name_61 WHERE 2011 = \"a\" AND 2008 = \"1r\""
} |
Name the 2011 when 2010 is 2r | CREATE TABLE table_name_94 (Id VARCHAR) | {
"SQL_Query": "SELECT 2011 FROM table_name_94 WHERE 2010 = \"2r\""
} |
Name the tournament when it has 2011 of 2r | CREATE TABLE table_name_94 (tournament VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_94 WHERE 2011 = \"2r\""
} |
What was the average attendance for games with a loss of papelbon (0–1)? | CREATE TABLE table_name_66 (attendance INTEGER, loss VARCHAR) | {
"SQL_Query": "SELECT AVG(attendance) FROM table_name_66 WHERE loss = \"papelbon (0–1)\""
} |
When the team had their record of 16–14, what was the total attendance? | CREATE TABLE table_name_74 (attendance VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT COUNT(attendance) FROM table_name_74 WHERE record = \"16–14\""
} |
Who was in a with opponent St. Johnstone? | CREATE TABLE table_name_8 (scorers VARCHAR, venue VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT scorers FROM table_name_8 WHERE venue = \"a\" AND opponent = \"st. johnstone\""
} |
What venue was on 27 May 2000? | CREATE TABLE table_name_81 (venue VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_81 WHERE date = \"27 may 2000\""
} |
Who was on 12 March 2000? | CREATE TABLE table_name_24 (scorers VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT scorers FROM table_name_24 WHERE date = \"12 march 2000\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.