question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Which County has a Precincts of 33/33?
CREATE TABLE table_name_88 (county VARCHAR, precincts VARCHAR)
{ "SQL_Query": "SELECT county FROM table_name_88 WHERE precincts = \"33/33\"" }
Name the T. Wyka has a Precincts of 51/55?
CREATE TABLE table_name_1 (t_wyka VARCHAR, precincts VARCHAR)
{ "SQL_Query": "SELECT t_wyka FROM table_name_1 WHERE precincts = \"51/55\"" }
Which Precincts has a G. Hager of 2,260 (15%)?
CREATE TABLE table_name_88 (precincts VARCHAR, g_hager VARCHAR)
{ "SQL_Query": "SELECT precincts FROM table_name_88 WHERE g_hager = \"2,260 (15%)\"" }
Name the G. Hager of E. Greenberg of 266 (14%)?
CREATE TABLE table_name_49 (g_hager VARCHAR, e_greenberg VARCHAR)
{ "SQL_Query": "SELECT g_hager FROM table_name_49 WHERE e_greenberg = \"266 (14%)\"" }
Which Precincts has a County of passaic?
CREATE TABLE table_name_86 (precincts VARCHAR, county VARCHAR)
{ "SQL_Query": "SELECT precincts FROM table_name_86 WHERE county = \"passaic\"" }
Which E. Greenberg has a T. Wyka of 10,793 (70%)?
CREATE TABLE table_name_34 (e_greenberg VARCHAR, t_wyka VARCHAR)
{ "SQL_Query": "SELECT e_greenberg FROM table_name_34 WHERE t_wyka = \"10,793 (70%)\"" }
Which player from England finished in T41?
CREATE TABLE table_name_43 (player VARCHAR, finish VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_43 WHERE finish = \"t41\" AND country = \"england\"" }
From which country is the player that won in 1998?
CREATE TABLE table_name_78 (country VARCHAR, year_s__won VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_78 WHERE year_s__won = \"1998\"" }
In 1997, what was the final total?
CREATE TABLE table_name_57 (total VARCHAR, year_s__won VARCHAR)
{ "SQL_Query": "SELECT total FROM table_name_57 WHERE year_s__won = \"1997\"" }
What was the To Par score for player Justin Leonard?
CREATE TABLE table_name_14 (to_par VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_14 WHERE player = \"justin leonard\"" }
How many points were scored by the player who played 348 games?
CREATE TABLE table_name_30 (points VARCHAR, games VARCHAR)
{ "SQL_Query": "SELECT points FROM table_name_30 WHERE games = \"348\"" }
How many points were scored by the player who played 363 games?
CREATE TABLE table_name_86 (points VARCHAR, games VARCHAR)
{ "SQL_Query": "SELECT points FROM table_name_86 WHERE games = \"363\"" }
What kind of Replaced has a Manner of departure of end of contract on dec. 16, 2008?
CREATE TABLE table_name_49 (replaced_by VARCHAR, manner_of_departure VARCHAR, date_of_appointment VARCHAR)
{ "SQL_Query": "SELECT replaced_by FROM table_name_49 WHERE manner_of_departure = \"end of contract\" AND date_of_appointment = \"dec. 16, 2008\"" }
What kind of Replaced has a Outgoing manager of guillermo sanguinetti?
CREATE TABLE table_name_95 (replaced_by VARCHAR, outgoing_manager VARCHAR)
{ "SQL_Query": "SELECT replaced_by FROM table_name_95 WHERE outgoing_manager = \"guillermo sanguinetti\"" }
What kind of Replaced has a Team of gimnasia y esgrima (lp)?
CREATE TABLE table_name_71 (replaced_by VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT replaced_by FROM table_name_71 WHERE team = \"gimnasia y esgrima (lp)\"" }
Which Team has a Position in table of 15th (c)?
CREATE TABLE table_name_75 (team VARCHAR, position_in_table VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_75 WHERE position_in_table = \"15th (c)\"" }
Which Team that has a Position in table of 15th (a) and a Outgoing manager of claudio borghi?
CREATE TABLE table_name_55 (team VARCHAR, position_in_table VARCHAR, outgoing_manager VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_55 WHERE position_in_table = \"15th (a)\" AND outgoing_manager = \"claudio borghi\"" }
Which Team has a Date of appointment on sep. 20, 2008?
CREATE TABLE table_name_14 (team VARCHAR, date_of_appointment VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_14 WHERE date_of_appointment = \"sep. 20, 2008\"" }
What was the highest number of losses for a position less than 6, with more than 11 wins and 36 points, with a played entry of more than 30?
CREATE TABLE table_name_59 (losses INTEGER, played VARCHAR, points VARCHAR, position VARCHAR, wins VARCHAR)
{ "SQL_Query": "SELECT MAX(losses) FROM table_name_59 WHERE position < 6 AND wins > 11 AND points = 36 AND played > 30" }
What is the total number of wins for the entry that has fewer than 49 goals against, 39 goals for, 9 draws, and fewer than 31 points?
CREATE TABLE table_name_51 (wins VARCHAR, points VARCHAR, goals_for VARCHAR, goals_against VARCHAR, draws VARCHAR)
{ "SQL_Query": "SELECT COUNT(wins) FROM table_name_51 WHERE goals_against < 49 AND draws = 9 AND goals_for = 39 AND points < 31" }
What is the average number of goals for entries with more than 12 losses, more than 10 wins, more than 3 draws, and fewer than 29 points?
CREATE TABLE table_name_99 (goals_for INTEGER, draws VARCHAR, points VARCHAR, losses VARCHAR, wins VARCHAR)
{ "SQL_Query": "SELECT AVG(goals_for) FROM table_name_99 WHERE losses > 12 AND wins > 10 AND points < 29 AND draws > 3" }
What is the highest number of wins for club Cd Orense, with points greater than 36 and more than 4 draws?
CREATE TABLE table_name_82 (wins INTEGER, points VARCHAR, draws VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT MAX(wins) FROM table_name_82 WHERE draws > 4 AND club = \"cd orense\" AND points > 36" }
What is the total number of played for the entry with a position of less than 1?
CREATE TABLE table_name_65 (played INTEGER, position INTEGER)
{ "SQL_Query": "SELECT SUM(played) FROM table_name_65 WHERE position < 1" }
For the match that lasted 3:53 minutes, what was the final record?
CREATE TABLE table_name_99 (record VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_99 WHERE time = \"3:53\"" }
Where was the UFC 154 match held?
CREATE TABLE table_name_18 (location VARCHAR, event VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_18 WHERE event = \"ufc 154\"" }
What is the 1st leg that has a Rc Cannes Team 1?
CREATE TABLE table_name_40 (team_1 VARCHAR)
{ "SQL_Query": "SELECT 1 AS st_leg FROM table_name_40 WHERE team_1 = \"rc cannes\"" }
What is the lowest positioned club with points greater than 40, 16 wins and losses less than 3?
CREATE TABLE table_name_45 (position INTEGER, loses VARCHAR, points VARCHAR, wins VARCHAR)
{ "SQL_Query": "SELECT MIN(position) FROM table_name_45 WHERE points > 40 AND wins = 16 AND loses < 3" }
What is the lowest positioned team with 2 wins and losses greater than 13?
CREATE TABLE table_name_84 (position INTEGER, wins VARCHAR, loses VARCHAR)
{ "SQL_Query": "SELECT MIN(position) FROM table_name_84 WHERE wins = 2 AND loses > 13" }
What is the smallest number of wins where goals conceded are below 26, draws are 1 and goals scored are below 74?
CREATE TABLE table_name_88 (wins INTEGER, goals_scored VARCHAR, goals_conceded VARCHAR, draws VARCHAR)
{ "SQL_Query": "SELECT MIN(wins) FROM table_name_88 WHERE goals_conceded < 26 AND draws = 1 AND goals_scored < 74" }
For the club Minija Kretinga, what's the lowest number of wins with points smaller than 25, goals at 22 and goals conceded below 39?
CREATE TABLE table_name_60 (wins INTEGER, goals_conceded VARCHAR, club VARCHAR, points VARCHAR, goals_scored VARCHAR)
{ "SQL_Query": "SELECT MIN(wins) FROM table_name_60 WHERE points < 25 AND goals_scored = 22 AND club = \"minija kretinga\" AND goals_conceded < 39" }
In which Place was the Silver won by valeri postoianov ( urs ) later than 1969 and the Bronze won by alexander gazov ( urs )?
CREATE TABLE table_name_50 (place VARCHAR, bronze VARCHAR, silver VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_50 WHERE silver = \"valeri postoianov ( urs )\" AND year > 1969 AND bronze = \"alexander gazov ( urs )\"" }
Who won the Bronze at Melbourne?
CREATE TABLE table_name_59 (bronze VARCHAR, place VARCHAR)
{ "SQL_Query": "SELECT bronze FROM table_name_59 WHERE place = \"melbourne\"" }
In what Place was the Silver won by vladimir vesselov ( urs )?
CREATE TABLE table_name_3 (place VARCHAR, silver VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_3 WHERE silver = \"vladimir vesselov ( urs )\"" }
What is Award, when Result is "Nominated", and when Film is "Sankranthi"?
CREATE TABLE table_name_66 (award VARCHAR, result VARCHAR, film VARCHAR)
{ "SQL_Query": "SELECT award FROM table_name_66 WHERE result = \"nominated\" AND film = \"sankranthi\"" }
What is Award, when Category is "Best Actor", and when Year is less than 1988?
CREATE TABLE table_name_35 (award VARCHAR, category VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT award FROM table_name_35 WHERE category = \"best actor\" AND year < 1988" }
What is the total number of Year, when Award is "Vamsi Berkley Award", and when Category is "Best Actor"?
CREATE TABLE table_name_18 (year VARCHAR, award VARCHAR, category VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_18 WHERE award = \"vamsi berkley award\" AND category = \"best actor\"" }
What is Result, when Film is "Dharma Chakram", and when Award is "Nandi Award for Best Actor"?
CREATE TABLE table_name_87 (result VARCHAR, film VARCHAR, award VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_87 WHERE film = \"dharma chakram\" AND award = \"nandi award for best actor\"" }
What is Opponent, when Date is "Dec 8"?
CREATE TABLE table_name_11 (opponent VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_11 WHERE date = \"dec 8\"" }
What is Score, when Date is "Nov 28"?
CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_30 WHERE date = \"nov 28\"" }
What is Date, when Score is "80-79"?
CREATE TABLE table_name_8 (date VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_8 WHERE score = \"80-79\"" }
What is Record, when Opponent is "New York Knicks"?
CREATE TABLE table_name_11 (record VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_11 WHERE opponent = \"new york knicks\"" }
What is Score, when Opponent is "@ New York Knicks"?
CREATE TABLE table_name_9 (score VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_9 WHERE opponent = \"@ new york knicks\"" }
What is Result, when Opponent is "Rochester Royals"?
CREATE TABLE table_name_19 (result VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_19 WHERE opponent = \"rochester royals\"" }
What was the Result at Strathclyde Homes Stadium?
CREATE TABLE table_name_59 (result VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_59 WHERE venue = \"strathclyde homes stadium\"" }
Name the Score of spain?
CREATE TABLE table_name_99 (score VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_99 WHERE country = \"spain\"" }
Which Country has a To par of −2? Question 2
CREATE TABLE table_name_20 (country VARCHAR, to_par VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_20 WHERE to_par = \"−2\"" }
Which Place has a To par of −1 and don pooley?
CREATE TABLE table_name_1 (place VARCHAR, to_par VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_1 WHERE to_par = \"−1\" AND player = \"don pooley\"" }
What is week 15's result?
CREATE TABLE table_name_24 (result VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_24 WHERE week = 15" }
What week did Cleveland Browns played?
CREATE TABLE table_name_31 (week INTEGER, opponent VARCHAR)
{ "SQL_Query": "SELECT AVG(week) FROM table_name_31 WHERE opponent = \"cleveland browns\"" }
What is the Highest Goals for Grella?
CREATE TABLE table_name_43 (goals INTEGER, name VARCHAR)
{ "SQL_Query": "SELECT MAX(goals) FROM table_name_43 WHERE name = \"grella\"" }
What is in the Notes for Player Name Grella?
CREATE TABLE table_name_67 (notes VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT notes FROM table_name_67 WHERE name = \"grella\"" }
Who position did matthew tassone who was drafted after round 5 play?
CREATE TABLE table_name_24 (position VARCHAR, round VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_24 WHERE round > 5 AND player = \"matthew tassone\"" }
what is the highest % hydropower when the % oil is less than 24.5, country is united arab emirates and the % nuclear power is 0?
CREATE TABLE table_name_80 (_percentage_hydropower INTEGER, _percentage_nuclear_power VARCHAR, _percentage_oil VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT MAX(_percentage_hydropower) FROM table_name_80 WHERE _percentage_oil < 24.5 AND country = \"united arab emirates\" AND _percentage_nuclear_power < 0" }
what is the highest % hydropower when % coal is 4.9 and % nuclear power is more than 0?
CREATE TABLE table_name_59 (_percentage_hydropower INTEGER, _percentage_coal VARCHAR, _percentage_nuclear_power VARCHAR)
{ "SQL_Query": "SELECT MAX(_percentage_hydropower) FROM table_name_59 WHERE _percentage_coal = 4.9 AND _percentage_nuclear_power > 0" }
what is the highest electricity production (kw/h, billion) when the % other renewable is 0.4, % coal is 0 and % hydropower is more than 99?
CREATE TABLE table_name_19 (_billion_ VARCHAR, electricity_production__kw_h INTEGER, _percentage_hydropower VARCHAR, _percentage_other_renewable VARCHAR, _percentage_coal VARCHAR)
{ "SQL_Query": "SELECT MAX(electricity_production__kw_h), _billion_ FROM table_name_19 WHERE _percentage_other_renewable = 0.4 AND _percentage_coal = 0 AND _percentage_hydropower > 99" }
Who is the player in round 6?
CREATE TABLE table_name_94 (player VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_94 WHERE round = 6" }
What college did Louis LeBlanc attend?
CREATE TABLE table_name_66 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT college_junior_club_team__league_ FROM table_name_66 WHERE player = \"louis leblanc\"" }
How many goals against total did the team with more than 52 goals and fewer than 10 losses have?
CREATE TABLE table_name_41 (goals_against INTEGER, goals_for VARCHAR, losses VARCHAR)
{ "SQL_Query": "SELECT SUM(goals_against) FROM table_name_41 WHERE goals_for > 52 AND losses < 10" }
What was the low number of draws for Levante Ud when their goal difference was smaller than 6?
CREATE TABLE table_name_14 (draws INTEGER, club VARCHAR, goal_difference VARCHAR)
{ "SQL_Query": "SELECT MIN(draws) FROM table_name_14 WHERE club = \"levante ud\" AND goal_difference < 6" }
What is the average entry in the against column with draws smaller than 0?
CREATE TABLE table_name_80 (against INTEGER, draws INTEGER)
{ "SQL_Query": "SELECT AVG(against) FROM table_name_80 WHERE draws < 0" }
What is the total number of losses that has draws larger than 1 and a Portland DFL of westerns?
CREATE TABLE table_name_75 (losses INTEGER, portland_dfl VARCHAR, draws VARCHAR)
{ "SQL_Query": "SELECT SUM(losses) FROM table_name_75 WHERE portland_dfl = \"westerns\" AND draws > 1" }
What is the sum of draws for all byes larger than 0?
CREATE TABLE table_name_94 (draws INTEGER, byes INTEGER)
{ "SQL_Query": "SELECT SUM(draws) FROM table_name_94 WHERE byes > 0" }
What is the sum of byes for losses larger than 14 for a Portland DFL of westerns?
CREATE TABLE table_name_11 (byes INTEGER, portland_dfl VARCHAR, losses VARCHAR)
{ "SQL_Query": "SELECT SUM(byes) FROM table_name_11 WHERE portland_dfl = \"westerns\" AND losses > 14" }
What was the result when the opponent was at 2 usc?
CREATE TABLE table_name_85 (result VARCHAR, opponent_number VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_85 WHERE opponent_number = \"at 2 usc\"" }
What was the result on 10/08/1988?
CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_52 WHERE date = \"10/08/1988\"" }
What was the rank# of the opponent when the result of the game was w42-14?
CREATE TABLE table_name_53 (rank__number VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT rank__number FROM table_name_53 WHERE result = \"w42-14\"" }
What was the result of the game that had 56,500 in attendance?
CREATE TABLE table_name_15 (result VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_15 WHERE attendance = \"56,500\"" }
What was the rank# of the opponent when there was 93,829 in attendance?
CREATE TABLE table_name_57 (rank__number VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT rank__number FROM table_name_57 WHERE attendance = \"93,829\"" }
On what date was the game played where the opponent was Stanford, ranked #5?
CREATE TABLE table_name_24 (date VARCHAR, rank__number VARCHAR, opponent_number VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_24 WHERE rank__number = \"5\" AND opponent_number = \"stanford\"" }
Which Number of electorates (2009) has a Reserved for (SC / ST /None) of total:?
CREATE TABLE table_name_21 (number_of_electorates__2009_ VARCHAR, reserved_for___sc___st__none_ VARCHAR)
{ "SQL_Query": "SELECT number_of_electorates__2009_ FROM table_name_21 WHERE reserved_for___sc___st__none_ = \"total:\"" }
What tournament took place after 1973?
CREATE TABLE table_name_37 (tournament VARCHAR, year INTEGER)
{ "SQL_Query": "SELECT tournament FROM table_name_37 WHERE year > 1973" }
What tournament took place before 1972 with an extra of 200 m?
CREATE TABLE table_name_14 (tournament VARCHAR, extra VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_14 WHERE extra = \"200 m\" AND year < 1972" }
What is the current code for the club trophy, in 1867 only?
CREATE TABLE table_name_20 (current_code VARCHAR, type VARCHAR, years VARCHAR)
{ "SQL_Query": "SELECT current_code FROM table_name_20 WHERE type = \"club trophy\" AND years = \"1867 only\"" }
What is the location of the original code for victorian rules?
CREATE TABLE table_name_64 (location VARCHAR, original_code VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_64 WHERE original_code = \"victorian rules\"" }
What is the location for the club trophy?
CREATE TABLE table_name_69 (location VARCHAR, type VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_69 WHERE type = \"club trophy\"" }
What is the location for the club trophy from the year 1867 only?
CREATE TABLE table_name_52 (location VARCHAR, type VARCHAR, years VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_52 WHERE type = \"club trophy\" AND years = \"1867 only\"" }
What is Score, when Tournament is "Tampere , Finland"?
CREATE TABLE table_name_24 (score VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_24 WHERE tournament = \"tampere , finland\"" }
What is Surface, when Opponent is "Jiří Vaněk"?
CREATE TABLE table_name_31 (surface VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_name_31 WHERE opponent = \"jiří vaněk\"" }
What is Score, when Opponent is "Ivo Minář"?
CREATE TABLE table_name_52 (score VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_52 WHERE opponent = \"ivo minář\"" }
What is Score, when Opponent is "Daniel Gimeno-Traver"?
CREATE TABLE table_name_38 (score VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_38 WHERE opponent = \"daniel gimeno-traver\"" }
What is Tournament, when Moves is "37", and when Result is "½–½"?
CREATE TABLE table_name_50 (tournament VARCHAR, moves VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_50 WHERE moves = 37 AND result = \"½–½\"" }
What is Result, when Year is greater than 1999, when White is "Kramnik", and when Tournament is "Mainz CC Champions Duel (5)"?
CREATE TABLE table_name_77 (result VARCHAR, tournament VARCHAR, year VARCHAR, white VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_77 WHERE year > 1999 AND white = \"kramnik\" AND tournament = \"mainz cc champions duel (5)\"" }
What is Opening, when White is Kramnik, when Year is less than 2001, and when Tournament is "Siemens Giants"?
CREATE TABLE table_name_77 (opening VARCHAR, tournament VARCHAR, white VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT opening FROM table_name_77 WHERE white = \"kramnik\" AND year < 2001 AND tournament = \"siemens giants\"" }
What is Tournament, when Black is "Kramnik", when Result is "½–½", and when Moves is "40"?
CREATE TABLE table_name_46 (tournament VARCHAR, moves VARCHAR, black VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_46 WHERE black = \"kramnik\" AND result = \"½–½\" AND moves = 40" }
What was the location where the opponent was Jae Young Kim?
CREATE TABLE table_name_9 (location VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_9 WHERE opponent = \"jae young kim\"" }
Which event was the opponent jose carlos oliveira?
CREATE TABLE table_name_46 (event VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT event FROM table_name_46 WHERE opponent = \"jose carlos oliveira\"" }
How many rounds was the bout against bobby rehman?
CREATE TABLE table_name_87 (round VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT round FROM table_name_87 WHERE opponent = \"bobby rehman\"" }
Where was the location when the record was 12-5?
CREATE TABLE table_name_89 (location VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_89 WHERE record = \"12-5\"" }
Which DVD Title has a Region 1 of n/a and greater than 3 in No. of Discs?
CREATE TABLE table_name_57 (dvd_title VARCHAR, region_1 VARCHAR, no_of_discs VARCHAR)
{ "SQL_Query": "SELECT dvd_title FROM table_name_57 WHERE region_1 = \"n/a\" AND no_of_discs > 3" }
Which region 1 has 12 Episodes and a Region 2 of 18 August 2008?
CREATE TABLE table_name_83 (region_1 VARCHAR, no_of_episodes VARCHAR, region_2 VARCHAR)
{ "SQL_Query": "SELECT region_1 FROM table_name_83 WHERE no_of_episodes = 12 AND region_2 = \"18 august 2008\"" }
WHAT TRIES HAVE TRIES AGAINST AT 140?
CREATE TABLE table_name_14 (tries_for VARCHAR, tries_against VARCHAR)
{ "SQL_Query": "SELECT tries_for FROM table_name_14 WHERE tries_against = \"140\"" }
WHAT IS THE TRIES AGAINST WITH PLAYED 22, POINTS AGAINST 784?
CREATE TABLE table_name_1 (tries_against VARCHAR, played VARCHAR, points_against VARCHAR)
{ "SQL_Query": "SELECT tries_against FROM table_name_1 WHERE played = \"22\" AND points_against = \"784\"" }
WHAT IS THE TRIES WITH POINTS 190?
CREATE TABLE table_name_36 (tries_for VARCHAR, points_for VARCHAR)
{ "SQL_Query": "SELECT tries_for FROM table_name_36 WHERE points_for = \"190\"" }
WHAT IS THE POINTS WITH 55 TRIES?
CREATE TABLE table_name_89 (points VARCHAR, tries_for VARCHAR)
{ "SQL_Query": "SELECT points FROM table_name_89 WHERE tries_for = \"55\"" }
WHAT IS THE LOST WITH 1 LOSING BONUS, 148 POINTS?
CREATE TABLE table_name_32 (lost VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)
{ "SQL_Query": "SELECT lost FROM table_name_32 WHERE losing_bonus = \"1\" AND points_for = \"148\"" }
WHAT IS THE LOSING BONUS WITH 190 POINTS?
CREATE TABLE table_name_31 (losing_bonus VARCHAR, points_for VARCHAR)
{ "SQL_Query": "SELECT losing_bonus FROM table_name_31 WHERE points_for = \"190\"" }
What is the sum of the pick of the guard position player?
CREATE TABLE table_name_99 (pick INTEGER, position VARCHAR)
{ "SQL_Query": "SELECT SUM(pick) FROM table_name_99 WHERE position = \"guard\"" }
What is the NFL club with pick # 153?
CREATE TABLE table_name_60 (nfl_club VARCHAR, pick VARCHAR)
{ "SQL_Query": "SELECT nfl_club FROM table_name_60 WHERE pick = 153" }
Who is the player from a round less than 13 and has a pick of 74?
CREATE TABLE table_name_58 (player VARCHAR, round VARCHAR, pick VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_58 WHERE round < 13 AND pick = 74" }
Who is the player from round 13 that plays center?
CREATE TABLE table_name_47 (player VARCHAR, round VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_47 WHERE round = 13 AND position = \"center\"" }