question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What score has money ($) greater than 400, with gene sarazen as the player?
CREATE TABLE table_name_99 (score VARCHAR, money___$__ VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_99 WHERE money___$__ > 400 AND player = \"gene sarazen\"" }
Which Country has a To par smaller than 7, and a Total of 148?
CREATE TABLE table_name_38 (country VARCHAR, to_par VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_38 WHERE to_par < 7 AND total = 148" }
Which player is from south africa?
CREATE TABLE table_name_93 (player VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_93 WHERE country = \"south africa\"" }
Which Year(s) won has a Total larger than 148, and a To par smaller than 17, and a Country of new zealand?
CREATE TABLE table_name_61 (year_s__won VARCHAR, country VARCHAR, total VARCHAR, to_par VARCHAR)
{ "SQL_Query": "SELECT year_s__won FROM table_name_61 WHERE total > 148 AND to_par < 17 AND country = \"new zealand\"" }
In what Event did Dorcus Inzikuru compete?
CREATE TABLE table_name_86 (event VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT event FROM table_name_86 WHERE name = \"dorcus inzikuru\"" }
In what Games did Patrick Etolu compete?
CREATE TABLE table_name_60 (games VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT games FROM table_name_60 WHERE name = \"patrick etolu\"" }
What Medal did James Odwori receive for Boxing in the 1970 Edinburgh Games?
CREATE TABLE table_name_71 (medal VARCHAR, name VARCHAR, sport VARCHAR, games VARCHAR)
{ "SQL_Query": "SELECT medal FROM table_name_71 WHERE sport = \"boxing\" AND games = \"1970 edinburgh\" AND name = \"james odwori\"" }
What is the Medal for the Player in the Light Heavyweight event?
CREATE TABLE table_name_25 (medal VARCHAR, event VARCHAR)
{ "SQL_Query": "SELECT medal FROM table_name_25 WHERE event = \"light heavyweight\"" }
At what Games did the competitor win a Silver medal in the light heavyweight event?
CREATE TABLE table_name_54 (games VARCHAR, medal VARCHAR, event VARCHAR)
{ "SQL_Query": "SELECT games FROM table_name_54 WHERE medal = \"silver\" AND event = \"light heavyweight\"" }
What is the Tie no for Away Team Ipswich Town?
CREATE TABLE table_name_26 (tie_no VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT tie_no FROM table_name_26 WHERE away_team = \"ipswich town\"" }
What is the Date of the Middlesbrough Home game?
CREATE TABLE table_name_42 (date VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_42 WHERE home_team = \"middlesbrough\"" }
What is the Home team in the Game with a Score of 1–0?
CREATE TABLE table_name_40 (home_team VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT home_team FROM table_name_40 WHERE score = \"1–0\"" }
What is the Date of the Everton Away game?
CREATE TABLE table_name_95 (date VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_95 WHERE away_team = \"everton\"" }
When the finish was t31 what was the To par?
CREATE TABLE table_name_28 (to_par VARCHAR, finish VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_28 WHERE finish = \"t31\"" }
Who had a finish of t15?
CREATE TABLE table_name_67 (player VARCHAR, finish VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_67 WHERE finish = \"t15\"" }
When the total was 290 what was the To par?
CREATE TABLE table_name_59 (to_par VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_59 WHERE total = 290" }
What is the Total for Seve Ballesteros?
CREATE TABLE table_name_47 (total INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT SUM(total) FROM table_name_47 WHERE player = \"seve ballesteros\"" }
What was the result of Declan Donnellan's nomination?
CREATE TABLE table_name_23 (result VARCHAR, nominee VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_23 WHERE nominee = \"declan donnellan\"" }
What was the result of the Best Actor in a Musical category?
CREATE TABLE table_name_81 (result VARCHAR, category VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_81 WHERE category = \"best actor in a musical\"" }
WHAT IS THE PLAYER WITH 287?
CREATE TABLE table_name_26 (player VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_26 WHERE total = 287" }
WHAT COUNTRY HAS A PLAYER NAMED JACK NICKLAUS?
CREATE TABLE table_name_25 (country VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_25 WHERE player = \"jack nicklaus\"" }
What is Player, when Country is "United States", and when Place is "6"?
CREATE TABLE table_name_41 (player VARCHAR, country VARCHAR, place VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_41 WHERE country = \"united states\" AND place = \"6\"" }
What is the average Money ( $ ), when Score is "69-69-76-69=283"?
CREATE TABLE table_name_74 (money___ INTEGER, score VARCHAR)
{ "SQL_Query": "SELECT AVG(money___) AS $__ FROM table_name_74 WHERE score = 69 - 69 - 76 - 69 = 283" }
What is Country, when To par is "+1", and when Score is "72-71-70-72=285"?
CREATE TABLE table_name_98 (country VARCHAR, to_par VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_98 WHERE to_par = \"+1\" AND score = 72 - 71 - 70 - 72 = 285" }
What is Place, when Score is "70-70-68-70=278"?
CREATE TABLE table_name_41 (place VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_41 WHERE score = 70 - 70 - 68 - 70 = 278" }
For which network was Chris Walby the color commentator after 1990?
CREATE TABLE table_name_83 (network VARCHAR, year VARCHAR, colour_commentator_s_ VARCHAR)
{ "SQL_Query": "SELECT network FROM table_name_83 WHERE year > 1990 AND colour_commentator_s_ = \"chris walby\"" }
Who was the pregame host before 1992 when there was a play by play of Bob Irving?
CREATE TABLE table_name_51 (pregame_host VARCHAR, year VARCHAR, play_by_play VARCHAR)
{ "SQL_Query": "SELECT pregame_host FROM table_name_51 WHERE year < 1992 AND play_by_play = \"bob irving\"" }
What is the total of the player who won before 1991 and has a to par less than 14?
CREATE TABLE table_name_74 (total VARCHAR, year_won VARCHAR, to_par VARCHAR)
{ "SQL_Query": "SELECT COUNT(total) FROM table_name_74 WHERE year_won < 1991 AND to_par < 14" }
What is the total to par of player jeff sluman, who won before 1993 and has a total greater than 154?
CREATE TABLE table_name_48 (to_par VARCHAR, total VARCHAR, year_won VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(to_par) FROM table_name_48 WHERE year_won < 1993 AND player = \"jeff sluman\" AND total > 154" }
What is the sum of the total of player rich beem, who has a to par greater than 17?
CREATE TABLE table_name_20 (total INTEGER, player VARCHAR, to_par VARCHAR)
{ "SQL_Query": "SELECT SUM(total) FROM table_name_20 WHERE player = \"rich beem\" AND to_par > 17" }
Who was the away team in the semifinals?
CREATE TABLE table_name_34 (away VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT away FROM table_name_34 WHERE round = \"semifinals\"" }
What is the home record for the Auxerre club?
CREATE TABLE table_name_34 (home VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT home FROM table_name_34 WHERE club = \"auxerre\"" }
What is the home record for the Maccabi Tel-Aviv club?
CREATE TABLE table_name_85 (home VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT home FROM table_name_85 WHERE club = \"maccabi tel-aviv\"" }
What is the total number of Against, when Date is "16/03/1996"?
CREATE TABLE table_name_88 (against VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(against) FROM table_name_88 WHERE date = \"16/03/1996\"" }
What is Venue, when Against is greater than 9, and when Date is "03/02/1996"?
CREATE TABLE table_name_58 (venue VARCHAR, against VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_58 WHERE against > 9 AND date = \"03/02/1996\"" }
What is Status, when Opposing Teams is "Scotland"?
CREATE TABLE table_name_16 (status VARCHAR, opposing_teams VARCHAR)
{ "SQL_Query": "SELECT status FROM table_name_16 WHERE opposing_teams = \"scotland\"" }
What is Venue, when Date is "14/12/1996"?
CREATE TABLE table_name_44 (venue VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_44 WHERE date = \"14/12/1996\"" }
What is the average Against, when Status is "Five Nations", and when Date is "16/03/1996"?
CREATE TABLE table_name_28 (against INTEGER, status VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT AVG(against) FROM table_name_28 WHERE status = \"five nations\" AND date = \"16/03/1996\"" }
In what year did the team of aston martin racing have a position of 6th?
CREATE TABLE table_name_35 (year VARCHAR, team VARCHAR, pos VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_35 WHERE team = \"aston martin racing\" AND pos = \"6th\"" }
Which Rank is Highest for Yoshiazuma?
CREATE TABLE table_name_44 (highest_rank VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT highest_rank FROM table_name_44 WHERE name = \"yoshiazuma\"" }
Which Top Division debut for Kitazakura has Tournaments less than 88?
CREATE TABLE table_name_12 (top_division_debut VARCHAR, tournaments VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT top_division_debut FROM table_name_12 WHERE tournaments < 88 AND name = \"kitazakura\"" }
What is the lowest Tournaments with Highest Rank of Maegashira 13?
CREATE TABLE table_name_46 (tournaments INTEGER, highest_rank VARCHAR)
{ "SQL_Query": "SELECT MIN(tournaments) FROM table_name_46 WHERE highest_rank = \"maegashira 13\"" }
What was the city where Hallescher FC won in 2008?
CREATE TABLE table_name_74 (city VARCHAR, winner VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT city FROM table_name_74 WHERE winner = \"hallescher fc\" AND year = 2008" }
Who was the winner of fc grün-weiß wolfen?
CREATE TABLE table_name_58 (winner VARCHAR, finalist VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_58 WHERE finalist = \"fc grün-weiß wolfen\"" }
What was the stadium past 2012?
CREATE TABLE table_name_31 (stadium VARCHAR, year INTEGER)
{ "SQL_Query": "SELECT stadium FROM table_name_31 WHERE year > 2012" }
What is the average Year, when Country is "U.S.", and when Location is "Edmond , OK"?
CREATE TABLE table_name_28 (year INTEGER, country VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT AVG(year) FROM table_name_28 WHERE country = \"u.s.\" AND location = \"edmond , ok\"" }
What is the lowest Killed, when Perpetrator is "Sherrill, Patrick Henry , 44"?
CREATE TABLE table_name_93 (killed INTEGER, perpetrator VARCHAR)
{ "SQL_Query": "SELECT MIN(killed) FROM table_name_93 WHERE perpetrator = \"sherrill, patrick henry , 44\"" }
What was the highest goals with fewer than 16 losses, fewer than 11 wins, and a goal difference greater than -9?
CREATE TABLE table_name_8 (goals_for INTEGER, goal_difference VARCHAR, losses VARCHAR, wins VARCHAR)
{ "SQL_Query": "SELECT MAX(goals_for) FROM table_name_8 WHERE losses < 16 AND wins < 11 AND goal_difference > -9" }
What is the highest wins entry with fewer than 51 goals, more than 39 points, and a goal difference smaller than 13?
CREATE TABLE table_name_74 (wins INTEGER, goal_difference VARCHAR, goals_against VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT MAX(wins) FROM table_name_74 WHERE goals_against < 51 AND points > 39 AND goal_difference < 13" }
What is the lowest wins entry that has a goal difference less than 33, position higher than 13, and 42 goals?
CREATE TABLE table_name_46 (wins INTEGER, goals_for VARCHAR, goal_difference VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT MIN(wins) FROM table_name_46 WHERE goal_difference < 33 AND position < 13 AND goals_for = 42" }
What is the total number of goals for entries that have more than 7 draws, 8 wins, and more than 5 losses?
CREATE TABLE table_name_62 (goals_for VARCHAR, losses VARCHAR, draws VARCHAR, wins VARCHAR)
{ "SQL_Query": "SELECT COUNT(goals_for) FROM table_name_62 WHERE draws > 7 AND wins > 8 AND losses > 5" }
What city is the Stadium estádio dr. magalhães pessoa in?
CREATE TABLE table_name_86 (city VARCHAR, stadium VARCHAR)
{ "SQL_Query": "SELECT city FROM table_name_86 WHERE stadium = \"estádio dr. magalhães pessoa\"" }
What city is the Stadium estádio cidade de barcelos in?
CREATE TABLE table_name_93 (city VARCHAR, stadium VARCHAR)
{ "SQL_Query": "SELECT city FROM table_name_93 WHERE stadium = \"estádio cidade de barcelos\"" }
Head Coach casemiro mior is at which Club?
CREATE TABLE table_name_36 (club VARCHAR, head_coach VARCHAR)
{ "SQL_Query": "SELECT club FROM table_name_36 WHERE head_coach = \"casemiro mior\"" }
What City is the Club braga in?
CREATE TABLE table_name_79 (city VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT city FROM table_name_79 WHERE club = \"braga\"" }
What place is listed in the 2002-2003 season for the City of Aveiro?
CREATE TABLE table_name_20 (city VARCHAR)
{ "SQL_Query": "SELECT 2002 AS _2003_season FROM table_name_20 WHERE city = \"aveiro\"" }
What is the 1st round with fc nantes (d1) as team 1?
CREATE TABLE table_name_25 (team_1 VARCHAR)
{ "SQL_Query": "SELECT 1 AS st_round FROM table_name_25 WHERE team_1 = \"fc nantes (d1)\"" }
What is the team 1 with nîmes olympique (d2) as team 2?
CREATE TABLE table_name_66 (team_1 VARCHAR, team_2 VARCHAR)
{ "SQL_Query": "SELECT team_1 FROM table_name_66 WHERE team_2 = \"nîmes olympique (d2)\"" }
In what language is the Lyrics of the release on August 10, 2005 with Catalog number of TOCP-66427?
CREATE TABLE table_name_48 (lyrics VARCHAR, date VARCHAR, catalog_number VARCHAR)
{ "SQL_Query": "SELECT lyrics FROM table_name_48 WHERE date = \"august 10, 2005\" AND catalog_number = \"tocp-66427\"" }
What is the Label of the CD released in Germany on June 6, 2005?
CREATE TABLE table_name_8 (label VARCHAR, format VARCHAR, date VARCHAR, region VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_8 WHERE date = \"june 6, 2005\" AND region = \"germany\" AND format = \"cd\"" }
What is the Region of the EMI 4 x vinyl release bearing Catalog number 560 6111?
CREATE TABLE table_name_46 (region VARCHAR, catalog_number VARCHAR, label VARCHAR, format VARCHAR)
{ "SQL_Query": "SELECT region FROM table_name_46 WHERE label = \"emi\" AND format = \"4 x vinyl\" AND catalog_number = \"560 6111\"" }
What language is the Lyrics of the release with Catalog number 560 6111?
CREATE TABLE table_name_59 (lyrics VARCHAR, catalog_number VARCHAR)
{ "SQL_Query": "SELECT lyrics FROM table_name_59 WHERE catalog_number = \"560 6111\"" }
What is the Region of the release with Catalog number 3 12046 2?
CREATE TABLE table_name_77 (region VARCHAR, catalog_number VARCHAR)
{ "SQL_Query": "SELECT region FROM table_name_77 WHERE catalog_number = \"3 12046 2\"" }
What is the Label of the September 19, 2008 release in Germany?
CREATE TABLE table_name_25 (label VARCHAR, date VARCHAR, region VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_25 WHERE date = \"september 19, 2008\" AND region = \"germany\"" }
What is the Edition of the release in Germany?
CREATE TABLE table_name_82 (edition_s_ VARCHAR, region VARCHAR)
{ "SQL_Query": "SELECT edition_s_ FROM table_name_82 WHERE region = \"germany\"" }
What is the Format(s) of the release on September 23, 2008?
CREATE TABLE table_name_40 (format_s_ VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT format_s_ FROM table_name_40 WHERE date = \"september 23, 2008\"" }
What is the Label of the release on April 24, 2009 in Germany?
CREATE TABLE table_name_2 (label VARCHAR, region VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_2 WHERE region = \"germany\" AND date = \"april 24, 2009\"" }
What is the L2 Cache for Model Number nano u3400 with an Idle Power of 100mw?
CREATE TABLE table_name_10 (l2_cache VARCHAR, idle_power VARCHAR, model_number VARCHAR)
{ "SQL_Query": "SELECT l2_cache FROM table_name_10 WHERE idle_power = \"100mw\" AND model_number = \"nano u3400\"" }
What is the total Cores with a Clock Speed of 1.3ghz?
CREATE TABLE table_name_33 (cores VARCHAR, clock_speed VARCHAR)
{ "SQL_Query": "SELECT COUNT(cores) FROM table_name_33 WHERE clock_speed = \"1.3ghz\"" }
What's the to par for the score of 68-74-71-77=290?
CREATE TABLE table_name_5 (to_par VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_5 WHERE score = 68 - 74 - 71 - 77 = 290" }
What's the money ($) for the t3 place and the score of 74-74-71-69=288?
CREATE TABLE table_name_87 (money___$__ VARCHAR, place VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT money___$__ FROM table_name_87 WHERE place = \"t3\" AND score = 74 - 74 - 71 - 69 = 288" }
What's the score for $22,500?
CREATE TABLE table_name_62 (score VARCHAR, money___$__ VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_62 WHERE money___$__ = \"22,500\"" }
What's the to par for the t1 place with a score of 70-72-73-72=287?
CREATE TABLE table_name_58 (to_par VARCHAR, place VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_58 WHERE place = \"t1\" AND score = 70 - 72 - 73 - 72 = 287" }
What's the average annual interchange for a rank over 26 in liverpool with an annual entry/exit less than 14.209 and more than 10 platforms?
CREATE TABLE table_name_28 (annual_interchanges__millions__2011_12 INTEGER, number_of_platforms VARCHAR, annual_entry_exit__millions__2011_12 VARCHAR, rank VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT AVG(annual_interchanges__millions__2011_12) FROM table_name_28 WHERE rank > 26 AND location = \"liverpool\" AND annual_entry_exit__millions__2011_12 < 14.209 AND number_of_platforms > 10" }
What's the highest annual interchange for wimbledon railway station?
CREATE TABLE table_name_82 (annual_interchanges__millions__2011_12 INTEGER, railway_station VARCHAR)
{ "SQL_Query": "SELECT MAX(annual_interchanges__millions__2011_12) FROM table_name_82 WHERE railway_station = \"wimbledon\"" }
What's the lowest number of total passengers (millions) for an annual entry/exit of 36.609?
CREATE TABLE table_name_32 (total_passengers__millions__2011_12 INTEGER, annual_entry_exit__millions__2011_12 VARCHAR)
{ "SQL_Query": "SELECT MIN(total_passengers__millions__2011_12) FROM table_name_32 WHERE annual_entry_exit__millions__2011_12 = 36.609" }
What rank has an annual interchange less than 1.99 million, an annual entry/exit less than 13.835 million, and more than 13.772 million total passengers?
CREATE TABLE table_name_83 (rank VARCHAR, total_passengers__millions__2011_12 VARCHAR, annual_interchanges__millions__2011_12 VARCHAR, annual_entry_exit__millions__2011_12 VARCHAR)
{ "SQL_Query": "SELECT rank FROM table_name_83 WHERE annual_interchanges__millions__2011_12 < 1.99 AND annual_entry_exit__millions__2011_12 < 13.835 AND total_passengers__millions__2011_12 > 13.772" }
How many ranks are in liverpool with more than 3 platforms and an annual interchange less than 0.778 million?
CREATE TABLE table_name_91 (rank VARCHAR, annual_interchanges__millions__2011_12 VARCHAR, location VARCHAR, number_of_platforms VARCHAR)
{ "SQL_Query": "SELECT COUNT(rank) FROM table_name_91 WHERE location = \"liverpool\" AND number_of_platforms > 3 AND annual_interchanges__millions__2011_12 < 0.778" }
Which Number of households has Per capita income of $21,571, and a Population smaller than 9,783?
CREATE TABLE table_name_61 (number_of_households INTEGER, per_capita_income VARCHAR, population VARCHAR)
{ "SQL_Query": "SELECT AVG(number_of_households) FROM table_name_61 WHERE per_capita_income = \"$21,571\" AND population < 9 OFFSET 783" }
Which Number of households has a County of cook, and Population smaller than 5,176?
CREATE TABLE table_name_98 (number_of_households INTEGER, county VARCHAR, population VARCHAR)
{ "SQL_Query": "SELECT AVG(number_of_households) FROM table_name_98 WHERE county = \"cook\" AND population < 5 OFFSET 176" }
What Per capita income has a Median family income of $50,755?
CREATE TABLE table_name_38 (per_capita_income VARCHAR, median_family_income VARCHAR)
{ "SQL_Query": "SELECT per_capita_income FROM table_name_38 WHERE median_family_income = \"$50,755\"" }
What Number of households have a Median family income of $58,491?
CREATE TABLE table_name_73 (number_of_households VARCHAR, median_family_income VARCHAR)
{ "SQL_Query": "SELECT number_of_households FROM table_name_73 WHERE median_family_income = \"$58,491\"" }
What was the to par score of the golfer that had a score of 68-70=138?
CREATE TABLE table_name_91 (to_par VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_91 WHERE score = 68 - 70 = 138" }
Which golfer had a score of 69-71=140?
CREATE TABLE table_name_63 (player VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_63 WHERE score = 69 - 71 = 140" }
Which country is t3 finisher billy mayfair from?
CREATE TABLE table_name_37 (country VARCHAR, place VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_37 WHERE place = \"t3\" AND player = \"billy mayfair\"" }
Which Country has a Player of jodie mudd?
CREATE TABLE table_name_62 (country VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_62 WHERE player = \"jodie mudd\"" }
Which Money (£) has a Player of jodie mudd?
CREATE TABLE table_name_72 (money___ VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(money___) AS £__ FROM table_name_72 WHERE player = \"jodie mudd\"" }
What is the total Money (£) of Player of nick faldo?
CREATE TABLE table_name_56 (money___ INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT SUM(money___) AS £__ FROM table_name_56 WHERE player = \"nick faldo\"" }
What is the total Money (£) with a Place of t6, and a Player of ian baker-finch?
CREATE TABLE table_name_61 (money___ VARCHAR, place VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(money___) AS £__ FROM table_name_61 WHERE place = \"t6\" AND player = \"ian baker-finch\"" }
What position was the team who had less then 63 goals against and less than 6 losses?
CREATE TABLE table_name_20 (position INTEGER, goals_against VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT AVG(position) FROM table_name_20 WHERE goals_against < 63 AND lost < 6" }
How many times did the team lose who had 1 of 37 points and less than 60 goals against?
CREATE TABLE table_name_30 (lost INTEGER, points_1 VARCHAR, goals_against VARCHAR)
{ "SQL_Query": "SELECT MIN(lost) FROM table_name_30 WHERE points_1 = \"37\" AND goals_against < 60" }
How many times did the team lose who had a goal difference of +2, 52 goals for, and less than 9 draws?
CREATE TABLE table_name_97 (lost INTEGER, drawn VARCHAR, goal_difference VARCHAR, goals_for VARCHAR)
{ "SQL_Query": "SELECT MIN(lost) FROM table_name_97 WHERE goal_difference = \"+2\" AND goals_for = 52 AND drawn < 9" }
How many draws did clitheroe have when their position was less than 12 and they lost less than 4 times?
CREATE TABLE table_name_76 (drawn INTEGER, lost VARCHAR, position VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT SUM(drawn) FROM table_name_76 WHERE position < 12 AND team = \"clitheroe\" AND lost > 4" }
What is the reserved for (ST/ST/None) when it was Uklana?
CREATE TABLE table_name_40 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT reserved_for___sc___st__none_ FROM table_name_40 WHERE name = \"uklana\"" }
Bhiwani district have what constituency number?
CREATE TABLE table_name_37 (constituency_number VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT constituency_number FROM table_name_37 WHERE district = \"bhiwani\"" }
What is the constituency number with electorates (2009) number larger than 152,958?
CREATE TABLE table_name_40 (constituency_number VARCHAR, number_of_electorates__2009_ INTEGER)
{ "SQL_Query": "SELECT constituency_number FROM table_name_40 WHERE number_of_electorates__2009_ > 152 OFFSET 958" }
What is the date of the performance by Jatin Shah and co-contestant is Shalini Chandran?
CREATE TABLE table_name_89 (date_performed VARCHAR, main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
{ "SQL_Query": "SELECT date_performed FROM table_name_89 WHERE main_contestant = \"jatin shah\" AND co_contestant__yaar_vs_pyaar_ = \"shalini chandran\"" }
What are the scores when total score/week is 41/60 and co-contestant is Shalini Chandran?
CREATE TABLE table_name_10 (scores_by_each_individual_judge VARCHAR, total_score_week VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
{ "SQL_Query": "SELECT scores_by_each_individual_judge FROM table_name_10 WHERE total_score_week = \"41/60\" AND co_contestant__yaar_vs_pyaar_ = \"shalini chandran\"" }
What position is there when the main contestant is Vishal Singh and the scores are 1 + 7 + 5 = 13?
CREATE TABLE table_name_21 (position VARCHAR, main_contestant VARCHAR, scores_by_each_individual_judge VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_21 WHERE main_contestant = \"vishal singh\" AND scores_by_each_individual_judge = 1 + 7 + 5 = 13" }
Who is the main contestant when the co-contestant (yaar vs. pyaar) is Shalini Chandran?
CREATE TABLE table_name_33 (main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
{ "SQL_Query": "SELECT main_contestant FROM table_name_33 WHERE co_contestant__yaar_vs_pyaar_ = \"shalini chandran\"" }