question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Which Played has Draws smaller than 7, and Goals for smaller than 61, and Goals against smaller than 48, and a Position of 5?
CREATE TABLE table_name_29 (played INTEGER, position VARCHAR, goals_against VARCHAR, draws VARCHAR, goals_for VARCHAR)
{ "SQL_Query": "SELECT MAX(played) FROM table_name_29 WHERE draws < 7 AND goals_for < 61 AND goals_against < 48 AND position = 5" }
How many Goals against have Played more than 34?
CREATE TABLE table_name_97 (goals_against VARCHAR, played INTEGER)
{ "SQL_Query": "SELECT COUNT(goals_against) FROM table_name_97 WHERE played > 34" }
Which Losses have a Goal Difference of -16, and less than 8 wins?
CREATE TABLE table_name_83 (losses INTEGER, goal_difference VARCHAR, wins VARCHAR)
{ "SQL_Query": "SELECT MIN(losses) FROM table_name_83 WHERE goal_difference = -16 AND wins < 8" }
Which Wins have a Goal Difference larger than 0, and Goals against larger than 40, and a Position smaller than 6, and a Club of sd indauchu?
CREATE TABLE table_name_33 (wins INTEGER, club VARCHAR, position VARCHAR, goal_difference VARCHAR, goals_against VARCHAR)
{ "SQL_Query": "SELECT MIN(wins) FROM table_name_33 WHERE goal_difference > 0 AND goals_against > 40 AND position < 6 AND club = \"sd indauchu\"" }
What place did player mark brooks take?
CREATE TABLE table_name_84 (place VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_84 WHERE player = \"mark brooks\"" }
What was the To par of the golfer that placed t5?
CREATE TABLE table_name_66 (to_par VARCHAR, place VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_66 WHERE place = \"t5\"" }
Which player had a score of 70?
CREATE TABLE table_name_96 (player VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_96 WHERE score = 70" }
What was the highest score of t5 place finisher brandt jobe?
CREATE TABLE table_name_51 (score INTEGER, place VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT MAX(score) FROM table_name_51 WHERE place = \"t5\" AND player = \"brandt jobe\"" }
Which event had a total of defending champion?
CREATE TABLE table_name_39 (event VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT event FROM table_name_39 WHERE total = \"defending champion\"" }
How many weeks was there an attendance of 74,347?
CREATE TABLE table_name_63 (week INTEGER, attendance VARCHAR)
{ "SQL_Query": "SELECT SUM(week) FROM table_name_63 WHERE attendance = \"74,347\"" }
What is the latest week with an attendance of 74,162?
CREATE TABLE table_name_72 (week INTEGER, attendance VARCHAR)
{ "SQL_Query": "SELECT MAX(week) FROM table_name_72 WHERE attendance = \"74,162\"" }
Who is the opponent when the attendance is 57,331?
CREATE TABLE table_name_41 (opponent VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_41 WHERE attendance = \"57,331\"" }
What day was the attendance 74,285?
CREATE TABLE table_name_98 (date VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_98 WHERE attendance = \"74,285\"" }
What was the result for week 16?
CREATE TABLE table_name_36 (result VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_36 WHERE week = 16" }
Who are the Opponents in the final prior to 1998 in the Bucharest, Romania Tournament?
CREATE TABLE table_name_65 (opponents_in_the_final VARCHAR, date VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT opponents_in_the_final FROM table_name_65 WHERE date < 1998 AND tournament = \"bucharest, romania\"" }
Which parish has an area of 750.51?
CREATE TABLE table_name_46 (official_name VARCHAR, area_km_2 VARCHAR)
{ "SQL_Query": "SELECT official_name FROM table_name_46 WHERE area_km_2 = 750.51" }
What is the area of the parish with a population larger than 1,172 and a census ranking of 1,871 of 5,008?
CREATE TABLE table_name_16 (area_km_2 VARCHAR, census_ranking VARCHAR, population VARCHAR)
{ "SQL_Query": "SELECT COUNT(area_km_2) FROM table_name_16 WHERE census_ranking = \"1,871 of 5,008\" AND population > 1 OFFSET 172" }
When the position is less than 7, what is the appeared on album?
CREATE TABLE table_name_90 (appeared_on_album VARCHAR, position INTEGER)
{ "SQL_Query": "SELECT appeared_on_album FROM table_name_90 WHERE position < 7" }
After 1996, what is the average position?
CREATE TABLE table_name_96 (position INTEGER, year INTEGER)
{ "SQL_Query": "SELECT AVG(position) FROM table_name_96 WHERE year > 1996" }
Which To par has a Place of t4, and wayne grady is in?
CREATE TABLE table_name_87 (to_par VARCHAR, place VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_87 WHERE place = \"t4\" AND player = \"wayne grady\"" }
Name the Place of england with a Score larger than 66?
CREATE TABLE table_name_3 (place VARCHAR, country VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_3 WHERE country = \"england\" AND score > 66" }
Name the Score united states of tom watson in united state?
CREATE TABLE table_name_40 (score VARCHAR, country VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_40 WHERE country = \"united states\" AND player = \"tom watson\"" }
Who has a To par of –2, and a Country of united states?
CREATE TABLE table_name_98 (player VARCHAR, to_par VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_98 WHERE to_par = \"–2\" AND country = \"united states\"" }
What is the time of Max Biaggi with more than 2 grids, 20 laps?
CREATE TABLE table_name_40 (time VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR)
{ "SQL_Query": "SELECT time FROM table_name_40 WHERE grid > 2 AND laps = 20 AND rider = \"max biaggi\"" }
What is the time of Troy Bayliss with less than 8 grids?
CREATE TABLE table_name_96 (time VARCHAR, grid VARCHAR, rider VARCHAR)
{ "SQL_Query": "SELECT time FROM table_name_96 WHERE grid < 8 AND rider = \"troy bayliss\"" }
Which Torque has a Model of s63 amg ('01)?
CREATE TABLE table_name_91 (torque VARCHAR, model VARCHAR)
{ "SQL_Query": "SELECT torque FROM table_name_91 WHERE model = \"s63 amg ('01)\"" }
Which Engine has a Model of s430?
CREATE TABLE table_name_71 (engine VARCHAR, model VARCHAR)
{ "SQL_Query": "SELECT engine FROM table_name_71 WHERE model = \"s430\"" }
Which Engine has a Model of s320 cdi?
CREATE TABLE table_name_87 (engine VARCHAR, model VARCHAR)
{ "SQL_Query": "SELECT engine FROM table_name_87 WHERE model = \"s320 cdi\"" }
Who won Division Southwest when Madžari Solidarnost won Division North?
CREATE TABLE table_name_4 (division_southwest VARCHAR, division_north VARCHAR)
{ "SQL_Query": "SELECT division_southwest FROM table_name_4 WHERE division_north = \"madžari solidarnost\"" }
Who won Division West when Division North was won by Alumina?
CREATE TABLE table_name_69 (division_west VARCHAR, division_north VARCHAR)
{ "SQL_Query": "SELECT division_west FROM table_name_69 WHERE division_north = \"alumina\"" }
Who won Division North when Division Southwest was won by Novaci and Division West by Vrapčište?
CREATE TABLE table_name_75 (division_north VARCHAR, division_southwest VARCHAR, division_west VARCHAR)
{ "SQL_Query": "SELECT division_north FROM table_name_75 WHERE division_southwest = \"novaci\" AND division_west = \"vrapčište\"" }
Who won Division Southwest when the winner of Division North was Lepenec and Division South was won by 11 Oktomvri?
CREATE TABLE table_name_44 (division_southwest VARCHAR, division_north VARCHAR, division_south VARCHAR)
{ "SQL_Query": "SELECT division_southwest FROM table_name_44 WHERE division_north = \"lepenec\" AND division_south = \"11 oktomvri\"" }
What are the minutes of the Player from Real Madrid Club with a Rank of 7 or larger?
CREATE TABLE table_name_73 (minutes INTEGER, rank VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT SUM(minutes) FROM table_name_73 WHERE rank > 7 AND club = \"real madrid\"" }
For what award was there a nomination for Best Actress?
CREATE TABLE table_name_21 (award VARCHAR, category VARCHAR)
{ "SQL_Query": "SELECT award FROM table_name_21 WHERE category = \"best actress\"" }
What year was Teen Angels 2 nominated?
CREATE TABLE table_name_19 (year VARCHAR, nominated VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_19 WHERE nominated = \"teen angels 2\"" }
What year saw an award in the category of Revelation?
CREATE TABLE table_name_73 (year VARCHAR, category VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_73 WHERE category = \"revelation\"" }
Name the performance nominated for a Capif Award.
CREATE TABLE table_name_60 (nominated VARCHAR, award VARCHAR)
{ "SQL_Query": "SELECT nominated FROM table_name_60 WHERE award = \"capif award\"" }
In what category was Herself nominated?
CREATE TABLE table_name_21 (category VARCHAR, nominated VARCHAR)
{ "SQL_Query": "SELECT category FROM table_name_21 WHERE nominated = \"herself\"" }
What year was there a nomination for Best Actress at the Kids' Choice Awards Argentina?
CREATE TABLE table_name_36 (year VARCHAR, award VARCHAR, category VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_36 WHERE award = \"kids' choice awards argentina\" AND category = \"best actress\"" }
What is the average Draws, when Goal Difference is greater than -3, when Goals Against is 30, and when Points is greater than 45?
CREATE TABLE table_name_97 (draws INTEGER, points VARCHAR, goal_difference VARCHAR, goals_against VARCHAR)
{ "SQL_Query": "SELECT AVG(draws) FROM table_name_97 WHERE goal_difference > -3 AND goals_against = 30 AND points > 45" }
What is the average Played, when Club is "Burgos CF", and when Draws is less than 7?
CREATE TABLE table_name_32 (played INTEGER, club VARCHAR, draws VARCHAR)
{ "SQL_Query": "SELECT AVG(played) FROM table_name_32 WHERE club = \"burgos cf\" AND draws < 7" }
What is the highest Goals Against, when Club is "Pontevedra CF", and when Played is less than 38?
CREATE TABLE table_name_74 (goals_against INTEGER, club VARCHAR, played VARCHAR)
{ "SQL_Query": "SELECT MAX(goals_against) FROM table_name_74 WHERE club = \"pontevedra cf\" AND played < 38" }
What is T2 Place Player Steve Flesch's Score?
CREATE TABLE table_name_97 (score INTEGER, place VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT MAX(score) FROM table_name_97 WHERE place = \"t2\" AND player = \"steve flesch\"" }
What is the Place of the Player with a Score of 67?
CREATE TABLE table_name_16 (place VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_16 WHERE score = 67" }
What Venue has a Year smaller than 1991, Time larger than 10.29, Competition of mediterranean games, and Event of 4x100 m relay?
CREATE TABLE table_name_10 (venue VARCHAR, event VARCHAR, competition VARCHAR, year VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_10 WHERE year < 1991 AND time > 10.29 AND competition = \"mediterranean games\" AND event = \"4x100 m relay\"" }
What Event has a Position of 1st, a Year of 1983, and a Venue of budapest?
CREATE TABLE table_name_34 (event VARCHAR, venue VARCHAR, position VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT event FROM table_name_34 WHERE position = \"1st\" AND year = 1983 AND venue = \"budapest\"" }
What Position has a Time of 20.66?
CREATE TABLE table_name_52 (position VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_52 WHERE time = 20.66" }
What is the greatest Time with a Year of 1991, and Event of 4x100 m relay?
CREATE TABLE table_name_89 (time INTEGER, year VARCHAR, event VARCHAR)
{ "SQL_Query": "SELECT MAX(time) FROM table_name_89 WHERE year = 1991 AND event = \"4x100 m relay\"" }
When was the match that had Shaun Murphy as runner-up?
CREATE TABLE table_name_31 (date VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_31 WHERE runner_up = \"shaun murphy\"" }
Who was the winner in the match that had John Higgins as runner-up?
CREATE TABLE table_name_63 (winner VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_63 WHERE runner_up = \"john higgins\"" }
What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is "ʏ"?
CREATE TABLE table_name_8 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR)
{ "SQL_Query": "SELECT pronunciation_spelled_free FROM table_name_8 WHERE pronunciation_spelled_checked = \"ʏ\"" }
What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is "ɛ"?
CREATE TABLE table_name_2 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR)
{ "SQL_Query": "SELECT pronunciation_spelled_free FROM table_name_2 WHERE pronunciation_spelled_checked = \"ɛ\"" }
What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is "ɑ"?
CREATE TABLE table_name_24 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR)
{ "SQL_Query": "SELECT pronunciation_spelled_free FROM table_name_24 WHERE pronunciation_spelled_checked = \"ɑ\"" }
What was the largest tie when the G.P was more than 5?
CREATE TABLE table_name_56 (ties INTEGER, gp INTEGER)
{ "SQL_Query": "SELECT MAX(ties) FROM table_name_56 WHERE gp > 5" }
What is the highest number in attendance against the game at Kansas City Chiefs?
CREATE TABLE table_name_47 (attendance INTEGER, opponent VARCHAR)
{ "SQL_Query": "SELECT MAX(attendance) FROM table_name_47 WHERE opponent = \"at kansas city chiefs\"" }
What is the attendance for the game against the Kansas City Chiefs earlier than week 13?
CREATE TABLE table_name_32 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT AVG(attendance) FROM table_name_32 WHERE opponent = \"kansas city chiefs\" AND week < 13" }
What is the result later than week 13?
CREATE TABLE table_name_64 (result VARCHAR, week INTEGER)
{ "SQL_Query": "SELECT result FROM table_name_64 WHERE week > 13" }
What is the lowest To par of gary player, with more than 145 total?
CREATE TABLE table_name_8 (to_par INTEGER, player VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT MIN(to_par) FROM table_name_8 WHERE player = \"gary player\" AND total > 145" }
How many Wins have Goals against smaller than 30, and Goals for larger than 25, and Draws larger than 5?
CREATE TABLE table_name_66 (wins VARCHAR, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR)
{ "SQL_Query": "SELECT COUNT(wins) FROM table_name_66 WHERE goals_against < 30 AND goals_for > 25 AND draws > 5" }
How many Draws have 30 Points, and less than 33 Goals against?
CREATE TABLE table_name_44 (draws VARCHAR, points VARCHAR, goals_against VARCHAR)
{ "SQL_Query": "SELECT COUNT(draws) FROM table_name_44 WHERE points = 30 AND goals_against < 33" }
Which Wins have a Goal Difference larger than 12, and a Club of granada cf, and Played larger than 30?
CREATE TABLE table_name_91 (wins INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT AVG(wins) FROM table_name_91 WHERE goal_difference > 12 AND club = \"granada cf\" AND played > 30" }
Which Played has a Club of atlético ceuta, and less than 11 Losses?
CREATE TABLE table_name_40 (played INTEGER, club VARCHAR, losses VARCHAR)
{ "SQL_Query": "SELECT MAX(played) FROM table_name_40 WHERE club = \"atlético ceuta\" AND losses < 11" }
What is the place number for the player with a To Par score of 'E'?
CREATE TABLE table_name_85 (place VARCHAR, to_par VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_85 WHERE to_par = \"e\"" }
What is the To Par score for the player from South Africa?
CREATE TABLE table_name_76 (to_par VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_76 WHERE country = \"south africa\"" }
Which player from Scotland has a To Par score of +7?
CREATE TABLE table_name_50 (player VARCHAR, to_par VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_50 WHERE to_par = \"+7\" AND country = \"scotland\"" }
Player Craig Parry of Australia is in what place number?
CREATE TABLE table_name_86 (place VARCHAR, country VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_86 WHERE country = \"australia\" AND player = \"craig parry\"" }
Which player from the United States is in a place of T2?
CREATE TABLE table_name_49 (player VARCHAR, place VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_49 WHERE place = \"t2\" AND country = \"united states\"" }
For the match in which player David Frost scored a To Par of +7, what was the final score?
CREATE TABLE table_name_94 (score VARCHAR, to_par VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_94 WHERE to_par = \"+7\" AND player = \"david frost\"" }
What was Tom Watson's lowest To par when the total was larger than 144?
CREATE TABLE table_name_44 (to_par INTEGER, player VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT MIN(to_par) FROM table_name_44 WHERE player = \"tom watson\" AND total > 144" }
What was England's total?
CREATE TABLE table_name_75 (total VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT total FROM table_name_75 WHERE country = \"england\"" }
What player had a To par smaller than 9 and won in 1985?
CREATE TABLE table_name_9 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_9 WHERE to_par < 9 AND year_s__won = \"1985\"" }
What is the seat percentage when vote percentage is 2.4% (-8.3)?
CREATE TABLE table_name_73 (seat_percentage VARCHAR, vote_percentage VARCHAR)
{ "SQL_Query": "SELECT seat_percentage FROM table_name_73 WHERE vote_percentage = \"2.4% (-8.3)\"" }
How many calories is 1 watt hour?
CREATE TABLE table_name_64 (calorie VARCHAR, watt_hour VARCHAR)
{ "SQL_Query": "SELECT calorie FROM table_name_64 WHERE watt_hour = \"1\"" }
How many electronvolts is 3,600 joules?
CREATE TABLE table_name_44 (electronvolt VARCHAR, joule VARCHAR)
{ "SQL_Query": "SELECT electronvolt FROM table_name_44 WHERE joule = \"3,600\"" }
What is the total number of Year, when Winner is "Johnathan Gray"?
CREATE TABLE table_name_81 (year VARCHAR, winner VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_81 WHERE winner = \"johnathan gray\"" }
What is Winner, when College is "Kentucky"?
CREATE TABLE table_name_16 (winner VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_16 WHERE college = \"kentucky\"" }
What is Hometown, when Sport is "Basketball", and when Winner is "Dwight Howard"?
CREATE TABLE table_name_83 (hometown VARCHAR, sport VARCHAR, winner VARCHAR)
{ "SQL_Query": "SELECT hometown FROM table_name_83 WHERE sport = \"basketball\" AND winner = \"dwight howard\"" }
What is the Duration for less than 53 consecutive wins?
CREATE TABLE table_name_68 (duration VARCHAR, wins INTEGER)
{ "SQL_Query": "SELECT duration FROM table_name_68 WHERE wins < 53" }
How many wins were held before being defeated by toda?
CREATE TABLE table_name_97 (wins VARCHAR, defeated_by VARCHAR)
{ "SQL_Query": "SELECT COUNT(wins) FROM table_name_97 WHERE defeated_by = \"toda\"" }
What is the greatest goals for Curtis Davies if ends is greater than 2012?
CREATE TABLE table_name_9 (goals INTEGER, name VARCHAR, ends VARCHAR)
{ "SQL_Query": "SELECT MAX(goals) FROM table_name_9 WHERE name = \"curtis davies\" AND ends > 2012" }
When the transfer fee is £8.5m, what is the total ends?
CREATE TABLE table_name_70 (ends INTEGER, transfer_fee VARCHAR)
{ "SQL_Query": "SELECT SUM(ends) FROM table_name_70 WHERE transfer_fee = \"£8.5m\"" }
On what Date was Henry I Latin Commander of the Battle of Boruy?
CREATE TABLE table_name_67 (date VARCHAR, latin_commander VARCHAR, battle VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_67 WHERE latin_commander = \"henry i\" AND battle = \"battle of boruy\"" }
Who is the Latin Commander of the Siege of Constantinople?
CREATE TABLE table_name_88 (latin_commander VARCHAR, battle VARCHAR)
{ "SQL_Query": "SELECT latin_commander FROM table_name_88 WHERE battle = \"siege of constantinople\"" }
What is the Result of the battle with Latin Commander Boniface of Montferrat?
CREATE TABLE table_name_3 (result VARCHAR, latin_commander VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_3 WHERE latin_commander = \"boniface of montferrat\"" }
What is the Battle with Bulgarian Commander Ivan Asen II?
CREATE TABLE table_name_21 (battle VARCHAR, bulgarian_commander VARCHAR)
{ "SQL_Query": "SELECT battle FROM table_name_21 WHERE bulgarian_commander = \"ivan asen ii\"" }
What is the Bulgarian Commander of the Battle of Rusion?
CREATE TABLE table_name_39 (bulgarian_commander VARCHAR, battle VARCHAR)
{ "SQL_Query": "SELECT bulgarian_commander FROM table_name_39 WHERE battle = \"battle of rusion\"" }
What is Type for Rite Albanian?
CREATE TABLE table_name_63 (type VARCHAR, rite VARCHAR)
{ "SQL_Query": "SELECT type FROM table_name_63 WHERE rite = \"albanian\"" }
What Area (km 2) is lowest with a type being Apostolic Administration?
CREATE TABLE table_name_47 (area__km_2__ INTEGER, type VARCHAR)
{ "SQL_Query": "SELECT MIN(area__km_2__) FROM table_name_47 WHERE type = \"apostolic administration\"" }
What Ecclesiastical Province has a type diocese and a latin name alexiensis?
CREATE TABLE table_name_21 (ecclesiastical_province VARCHAR, type VARCHAR, latin_name VARCHAR)
{ "SQL_Query": "SELECT ecclesiastical_province FROM table_name_21 WHERE type = \"diocese\" AND latin_name = \"alexiensis\"" }
What's the money that Sam Snead won?
CREATE TABLE table_name_52 (money___$__ VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT money___$__ FROM table_name_52 WHERE player = \"sam snead\"" }
What was the total To Par for Craig Wood?
CREATE TABLE table_name_16 (to_par INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT SUM(to_par) FROM table_name_16 WHERE player = \"craig wood\"" }
What was the score for t9 place for Harold Mcspaden?
CREATE TABLE table_name_9 (score VARCHAR, place VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_9 WHERE place = \"t9\" AND player = \"harold mcspaden\"" }
What was the country for Sam Snead?
CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_58 WHERE player = \"sam snead\"" }
What place had a ribbon below 9.8 and a 19.2 total?
CREATE TABLE table_name_23 (place INTEGER, ribbon VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT MAX(place) FROM table_name_23 WHERE ribbon < 9.8 AND total = 19.2" }
Which Natural change has a Crude death rate (per 1000) larger than 9, and Deaths of 40 399?
CREATE TABLE table_name_88 (natural_change VARCHAR, crude_death_rate__per_1000_ VARCHAR, deaths VARCHAR)
{ "SQL_Query": "SELECT natural_change FROM table_name_88 WHERE crude_death_rate__per_1000_ > 9 AND deaths = \"40 399\"" }
How many season have an average attendance league of 2.456?
CREATE TABLE table_name_46 (season INTEGER, average_attendance_league VARCHAR)
{ "SQL_Query": "SELECT SUM(season) FROM table_name_46 WHERE average_attendance_league = 2.456" }
Which venue has more than 19 against?
CREATE TABLE table_name_63 (venue VARCHAR, against INTEGER)
{ "SQL_Query": "SELECT venue FROM table_name_63 WHERE against > 19" }
How many against have a status of first test?
CREATE TABLE table_name_20 (against VARCHAR, status VARCHAR)
{ "SQL_Query": "SELECT COUNT(against) FROM table_name_20 WHERE status = \"first test\"" }
What is the Venue of the Competition on 2001-05-05?
CREATE TABLE table_name_38 (venue VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_38 WHERE date = \"2001-05-05\"" }
What is the Date of the Fifa World Cup with a Score of 1-0?
CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR, competition VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_15 WHERE score = \"1-0\" AND competition = \"fifa world cup\"" }