answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT place FROM table_name_13 WHERE player = "bobby wadkins"
CREATE TABLE table_name_13 (place VARCHAR, player VARCHAR)
What place did bobby wadkins come in?
SELECT MIN(lane) FROM table_name_21 WHERE mark = "7.66"
CREATE TABLE table_name_21 (lane INTEGER, mark VARCHAR)
What is the lowest Lane, when Mark is 7.66?
SELECT mark FROM table_name_59 WHERE react < 0.148
CREATE TABLE table_name_59 (mark VARCHAR, react INTEGER)
What is Mark, when React is less than 0.148?
SELECT SUM(lane) FROM table_name_75 WHERE react > 0.217 AND name = "yoel hernández"
CREATE TABLE table_name_75 (lane INTEGER, react VARCHAR, name VARCHAR)
What is the sum of Land, when React is greater than 0.217, and when Name is Yoel Hernández?
SELECT mark FROM table_name_88 WHERE lane < 5 AND react = 0.217
CREATE TABLE table_name_88 (mark VARCHAR, lane VARCHAR, react VARCHAR)
What is Mark, when Lane is less than 5, and when React is 0.217?
SELECT record FROM table_name_37 WHERE game = 67
CREATE TABLE table_name_37 (record VARCHAR, game VARCHAR)
What was the record following game 67?
SELECT SUM(february) FROM table_name_57 WHERE opponent = "@ colorado rockies"
CREATE TABLE table_name_57 (february INTEGER, opponent VARCHAR)
What day in February had an opponent of @ Colorado Rockies?
SELECT score FROM table_name_18 WHERE record = "18-22-13"
CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR)
What was the score of the game with a record of 18-22-13?
SELECT opponent_in_the_final FROM table_name_29 WHERE score = "6–3, 3–6, 6–8"
CREATE TABLE table_name_29 (opponent_in_the_final VARCHAR, score VARCHAR)
Which Opponent in the final has a Score of 6–3, 3–6, 6–8?
SELECT tournament FROM table_name_56 WHERE surface = "carpet" AND date < 1995 AND opponent_in_the_final = "ken flach robert seguso"
CREATE TABLE table_name_56 (tournament VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)
Which Tournament has a Surface of carpet, and a Date smaller than 1995, and an Opponent in the final of ken flach robert seguso?
SELECT time_in_office FROM table_name_59 WHERE branch = "u.s. navy"
CREATE TABLE table_name_59 (time_in_office VARCHAR, branch VARCHAR)
What time in office does the U.S. Navy have?
SELECT term_ended FROM table_name_5 WHERE branch = "u.s. marine corps"
CREATE TABLE table_name_5 (term_ended VARCHAR, branch VARCHAR)
When did the term end for the U.S. Marine Corps?
SELECT COUNT(2006) FROM table_name_47 WHERE country = "argentina" AND 2007 < 0 OFFSET 15
CREATE TABLE table_name_47 (country VARCHAR)
What is the 2006 figure for Argentina when 2007 is less than 0,15?
SELECT AVG(2009) FROM table_name_4 WHERE 2007 > 0 OFFSET 18
CREATE TABLE table_name_4 (Id VARCHAR)
What is the 2009 average when the 2007 average is more than 0,18?
SELECT COUNT(gain) FROM table_name_45 WHERE loss > 57 AND long < 55
CREATE TABLE table_name_45 (gain VARCHAR, loss VARCHAR, long VARCHAR)
How many gains were there for the player who had a loss greater than 57 and a long less than 55?
SELECT MIN(loss) FROM table_name_95 WHERE name = "total" AND long > 55
CREATE TABLE table_name_95 (loss INTEGER, name VARCHAR, long VARCHAR)
What is the lowest Loss for the player named total that has a long greater than 55?
SELECT nationality FROM table_name_58 WHERE school_club_team = "kentucky" AND player = "tayshaun prince"
CREATE TABLE table_name_58 (nationality VARCHAR, school_club_team VARCHAR, player VARCHAR)
What nationality is Kentucky and the player Tayshaun Prince?
SELECT nationality FROM table_name_95 WHERE school_club_team = "duke"
CREATE TABLE table_name_95 (nationality VARCHAR, school_club_team VARCHAR)
What is the nationality of Duke?
SELECT nationality FROM table_name_89 WHERE position = "point guard" AND years_for_grizzlies = "1999-2001"
CREATE TABLE table_name_89 (nationality VARCHAR, position VARCHAR, years_for_grizzlies VARCHAR)
What was the nationality of a point guard position in 1999-2001?
SELECT position FROM table_name_69 WHERE player = "tayshaun prince"
CREATE TABLE table_name_69 (position VARCHAR, player VARCHAR)
What is the position of Tayshaun Prince?
SELECT parent FROM table_name_96 WHERE order = 6
CREATE TABLE table_name_96 (parent VARCHAR, order VARCHAR)
Who was the parent on the order of 6?
SELECT husband_dates FROM table_name_54 WHERE date_married = "1858"
CREATE TABLE table_name_54 (husband_dates VARCHAR, date_married VARCHAR)
Who was the husband date that was married in 1858?
SELECT record FROM table_name_55 WHERE opponent = "vs. hamilton tiger cats"
CREATE TABLE table_name_55 (record VARCHAR, opponent VARCHAR)
Can you tell me the Record that has the Opponent of vs. hamilton tiger cats?
SELECT opponent FROM table_name_89 WHERE date = "sun, sept 9"
CREATE TABLE table_name_89 (opponent VARCHAR, date VARCHAR)
Can you tell me the Opponent that has the Date of sun, sept 9?
SELECT country FROM table_name_65 WHERE player = "scott hoch"
CREATE TABLE table_name_65 (country VARCHAR, player VARCHAR)
Which country is Scott Hoch from?
SELECT place FROM table_name_64 WHERE country = "spain"
CREATE TABLE table_name_64 (place VARCHAR, country VARCHAR)
What is the place of the player from Spain?
SELECT score FROM table_name_53 WHERE record = "12-57"
CREATE TABLE table_name_53 (score VARCHAR, record VARCHAR)
What is Score, when Record is 12-57?
SELECT date FROM table_name_31 WHERE record = "12-58"
CREATE TABLE table_name_31 (date VARCHAR, record VARCHAR)
What is Date, when Record is 12-58?
SELECT score FROM table_name_85 WHERE date = "february 5"
CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR)
What is Score, when Date is February 5?
SELECT h_a_n FROM table_name_10 WHERE score = "104-109"
CREATE TABLE table_name_10 (h_a_n VARCHAR, score VARCHAR)
What is H/A/N, when Score is 104-109?
SELECT score FROM table_name_35 WHERE opponent = "portland trail blazers" AND record = "12-58"
CREATE TABLE table_name_35 (score VARCHAR, opponent VARCHAR, record VARCHAR)
What is Score, when Opponent is Portland Trail Blazers, and when Record is 12-58?
SELECT h_a_n FROM table_name_55 WHERE date = "february 24"
CREATE TABLE table_name_55 (h_a_n VARCHAR, date VARCHAR)
What is H/A/N when Date is February 24?
SELECT MIN(game) FROM table_name_92 WHERE record = "0-1-0"
CREATE TABLE table_name_92 (game INTEGER, record VARCHAR)
What is the last game of the season that has the record 0-1-0?
SELECT decision FROM table_name_73 WHERE date = 1
CREATE TABLE table_name_73 (decision VARCHAR, date VARCHAR)
Who had the decision goal when the date was 1?
SELECT decision FROM table_name_83 WHERE record = "7-7-2"
CREATE TABLE table_name_83 (decision VARCHAR, record VARCHAR)
Who had the decision goal when the record was 7-7-2?
SELECT MIN(game) FROM table_name_92 WHERE decision = "weekes" AND record = "7-4-2"
CREATE TABLE table_name_92 (game INTEGER, decision VARCHAR, record VARCHAR)
What was the first game in which Weekes scored the decision goal and the record was 7-4-2?
SELECT COUNT(points) FROM table_name_3 WHERE details = "1951 nswrfl grand final"
CREATE TABLE table_name_3 (points VARCHAR, details VARCHAR)
What's the total number of points scored during the 1951 NSWRFL Grand Final?
SELECT premiers FROM table_name_17 WHERE details = "1951 nswrfl grand final"
CREATE TABLE table_name_17 (premiers VARCHAR, details VARCHAR)
Which premier team played the 1951 NSWRFL Grand Final?
SELECT details FROM table_name_31 WHERE points = 36
CREATE TABLE table_name_31 (details VARCHAR, points VARCHAR)
During which competition were a total of 36 points scored?
SELECT SUM(points) FROM table_name_80 WHERE premiers = "brisbane broncos"
CREATE TABLE table_name_80 (points INTEGER, premiers VARCHAR)
What's the total sum of points scored by the Brisbane Broncos?
SELECT premiers FROM table_name_16 WHERE points = 38 AND score = "38-0"
CREATE TABLE table_name_16 (premiers VARCHAR, points VARCHAR, score VARCHAR)
What is the premier team that has 38 points and won with a score of 38-0?
SELECT tie_no FROM table_name_21 WHERE away_team = "northwich victoria"
CREATE TABLE table_name_21 (tie_no VARCHAR, away_team VARCHAR)
What was the tie no when the away team was northwich victoria?
SELECT attendance FROM table_name_55 WHERE home_team = "cambridge united"
CREATE TABLE table_name_55 (attendance VARCHAR, home_team VARCHAR)
What was the attendance for the match where cambridge united was the home team?
SELECT COUNT(year) FROM table_name_90 WHERE award = "inte awards"
CREATE TABLE table_name_90 (year VARCHAR, award VARCHAR)
How many times was the award inte awards?
SELECT work FROM table_name_91 WHERE result = "won" AND year > 2002
CREATE TABLE table_name_91 (work VARCHAR, result VARCHAR, year VARCHAR)
what is the work when the result is won and the year is after 2002?
SELECT work FROM table_name_36 WHERE result = "won" AND year < 2003
CREATE TABLE table_name_36 (work VARCHAR, result VARCHAR, year VARCHAR)
what is the work when the result is won and the year is before 2003?
SELECT venue FROM table_name_16 WHERE opposing_team = "natal"
CREATE TABLE table_name_16 (venue VARCHAR, opposing_team VARCHAR)
Which venue had the opposing team Natal?
SELECT date FROM table_name_51 WHERE status = "tour match" AND against = 22
CREATE TABLE table_name_51 (date VARCHAR, status VARCHAR, against VARCHAR)
What day was the against 22 and the status tour match?
SELECT AVG(attendance) FROM table_name_25 WHERE week = 8
CREATE TABLE table_name_25 (attendance INTEGER, week VARCHAR)
Which Attendance has a Week of 8?
SELECT opponent FROM table_name_41 WHERE week < 7 AND date = "september 12, 1988"
CREATE TABLE table_name_41 (opponent VARCHAR, week VARCHAR, date VARCHAR)
Which Opponent that has a Week smaller than 7 on september 12, 1988?
SELECT date FROM table_name_23 WHERE result = "w 41-27"
CREATE TABLE table_name_23 (date VARCHAR, result VARCHAR)
When has a Result of w 41-27?
SELECT AVG(weight__kg_) FROM table_name_67 WHERE manufacturer = "fujitsu" AND model = "lifebook p1610"
CREATE TABLE table_name_67 (weight__kg_ INTEGER, manufacturer VARCHAR, model VARCHAR)
Which Weight (kg) has a Manufacturer of fujitsu, and a Model of lifebook p1610?
SELECT MIN(display_size__in_) FROM table_name_10 WHERE model = "versapro vy10f/bh-l"
CREATE TABLE table_name_10 (display_size__in_ INTEGER, model VARCHAR)
Which Display size (in) has a Model of versapro vy10f/bh-l?
SELECT COUNT(display_size__in_) FROM table_name_29 WHERE model = "vaio pcg-u3"
CREATE TABLE table_name_29 (display_size__in_ VARCHAR, model VARCHAR)
Which Display size (in) has a Model of vaio pcg-u3?
SELECT method FROM table_name_13 WHERE round = 1 AND record = "6-3-1"
CREATE TABLE table_name_13 (method VARCHAR, round VARCHAR, record VARCHAR)
What method was used in the match that went to round 1, and had a 6-3-1 record?
SELECT res FROM table_name_6 WHERE method = "decision (unanimous)" AND opponent = "marcus aurélio"
CREATE TABLE table_name_6 (res VARCHAR, method VARCHAR, opponent VARCHAR)
In the match against Marcus Aurélio with a method of decision (unanimous), what was the results?
SELECT location FROM table_name_55 WHERE event = "deep - 30 impact"
CREATE TABLE table_name_55 (location VARCHAR, event VARCHAR)
Where was the Deep - 30 Impact event held?
SELECT SUM(diameter__km_) FROM table_name_25 WHERE latitude = "62.7n"
CREATE TABLE table_name_25 (diameter__km_ INTEGER, latitude VARCHAR)
COunt the sum of Diameter (km) which has a Latitude of 62.7n?
SELECT name AS origin FROM table_name_94 WHERE longitude = "332.5e"
CREATE TABLE table_name_94 (name VARCHAR, longitude VARCHAR)
WHich Name origin has a Longitude of 332.5e?
SELECT round FROM table_name_63 WHERE opponent = "dustin hazelett"
CREATE TABLE table_name_63 (round VARCHAR, opponent VARCHAR)
In which round was Dustin Hazelett the opponent?
SELECT tv_time FROM table_name_89 WHERE opponent = "at cincinnati bengals"
CREATE TABLE table_name_89 (tv_time VARCHAR, opponent VARCHAR)
What is TV Time, when Opponent is At Cincinnati Bengals?
SELECT tv_time FROM table_name_91 WHERE date = "december 22, 1996"
CREATE TABLE table_name_91 (tv_time VARCHAR, date VARCHAR)
What is TV Time, when Date is December 22, 1996?
SELECT result FROM table_name_32 WHERE opponent = "cincinnati bengals"
CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR)
What is Result, when Opponent is Cincinnati Bengals?
SELECT record FROM table_name_66 WHERE game = 54
CREATE TABLE table_name_66 (record VARCHAR, game VARCHAR)
What was their record bfore game 54?
SELECT high_rebounds FROM table_name_52 WHERE team = "chicago"
CREATE TABLE table_name_52 (high_rebounds VARCHAR, team VARCHAR)
Who had the most rebounds in the game against Chicago?
SELECT MIN(attendance) FROM table_name_21 WHERE decision = "conklin" AND visitor = "chicago"
CREATE TABLE table_name_21 (attendance INTEGER, decision VARCHAR, visitor VARCHAR)
What was the lowest attendance at the game against chicago when conklin made the decision?
SELECT home_team FROM table_name_33 WHERE tie_no = "2"
CREATE TABLE table_name_33 (home_team VARCHAR, tie_no VARCHAR)
For Tie #2, who was the home team?
SELECT score FROM table_name_57 WHERE home_team = "hereford united"
CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR)
What was the final score for the match where Hereford United was the home team?
SELECT away_team FROM table_name_76 WHERE tie_no = "18"
CREATE TABLE table_name_76 (away_team VARCHAR, tie_no VARCHAR)
In Tie #18, who was the away team?
SELECT away_team FROM table_name_27 WHERE tie_no = "19"
CREATE TABLE table_name_27 (away_team VARCHAR, tie_no VARCHAR)
In Tie #19, what was the name of the away team?
SELECT tie_no FROM table_name_31 WHERE home_team = "dartford"
CREATE TABLE table_name_31 (tie_no VARCHAR, home_team VARCHAR)
What is the Tie number for the match where Dartford was the hone team?
SELECT home_team FROM table_name_9 WHERE away_team = "telford united"
CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR)
In the match played against Telford United, who was the home team?
SELECT position FROM table_name_93 WHERE class = "sophomore" AND player = "shaquille o'neal category:articles with hcards"
CREATE TABLE table_name_93 (position VARCHAR, class VARCHAR, player VARCHAR)
What is Position, when Class is Sophomore, and when Player is Shaquille O'Neal Category:Articles With hCards?
SELECT player FROM table_name_56 WHERE class = "senior" AND position = "shooting guard" AND school = "bradley"
CREATE TABLE table_name_56 (player VARCHAR, school VARCHAR, class VARCHAR, position VARCHAR)
What is Player, when Class is "senior", when Position is "shooting guard", and when School is "Bradley"?
SELECT position FROM table_name_71 WHERE player = "kevin durant category:articles with hcards"
CREATE TABLE table_name_71 (position VARCHAR, player VARCHAR)
What is Position, when Player is "Kevin Durant category:articles with hCards"?
SELECT score FROM table_name_71 WHERE date = "august 23, 2004"
CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR)
What is the Score of the match on August 23, 2004?
SELECT score FROM table_name_70 WHERE tournament = "spain f32, gran canaria"
CREATE TABLE table_name_70 (score VARCHAR, tournament VARCHAR)
What was the Score of the Spain F32, Gran Canaria Tournament?
SELECT surface FROM table_name_30 WHERE outcome = "runner-up" AND score = "6–4, 6–3"
CREATE TABLE table_name_30 (surface VARCHAR, outcome VARCHAR, score VARCHAR)
On what Surface was the match with a Score of 6–4, 6–3 and Runner-up Outcome played?
SELECT outcome FROM table_name_7 WHERE partner = "andoni vivanco"
CREATE TABLE table_name_7 (outcome VARCHAR, partner VARCHAR)
What is the Outcome of the match with Partner Andoni Vivanco?
SELECT Leading AS scorer FROM table_name_90 WHERE score = "96-87"
CREATE TABLE table_name_90 (Leading VARCHAR, score VARCHAR)
Who was the Leading Scorer in the Game with a Score of 96-87?
SELECT country FROM table_name_98 WHERE label = "atco records" AND format = "mc"
CREATE TABLE table_name_98 (country VARCHAR, label VARCHAR, format VARCHAR)
What Country with a MC Format has a ATCO Records Label?
SELECT team FROM table_name_22 WHERE location_attendance = "seattle center coliseum 12,591"
CREATE TABLE table_name_22 (team VARCHAR, location_attendance VARCHAR)
What team has a location and attendance at the Seattle Center Coliseum 12,591?
SELECT 1 AS st_leg FROM table_name_76 WHERE team__number2 = "emelec"
CREATE TABLE table_name_76 (team__number2 VARCHAR)
What is 1st Leg, when Team #2 is "Emelec"?
SELECT 1 AS st_leg FROM table_name_58 WHERE team__number1 = "san lorenzo"
CREATE TABLE table_name_58 (team__number1 VARCHAR)
What is 1st Leg, when Team #1 is "San Lorenzo"?
SELECT muzzle_energy FROM table_name_67 WHERE bullet_weight = "grains (g)" AND max_pressure = "35,000 psi"
CREATE TABLE table_name_67 (muzzle_energy VARCHAR, bullet_weight VARCHAR, max_pressure VARCHAR)
What is the muzzle energy with grains (g) bullet weight and a max pressure of 35,000 psi?
SELECT bullet_weight FROM table_name_98 WHERE max_pressure = "12,000 cup"
CREATE TABLE table_name_98 (bullet_weight VARCHAR, max_pressure VARCHAR)
What is the bullet weight with a 12,000 cup max pressure?
SELECT max_pressure FROM table_name_99 WHERE muzzle_energy = "468ft•lbf (634 j)"
CREATE TABLE table_name_99 (max_pressure VARCHAR, muzzle_energy VARCHAR)
What is the max pressure for the 468ft•lbf (634 j) muzzle energy?
SELECT muzzle_velocity FROM table_name_60 WHERE muzzle_energy = "351ft•lbf (476 j)"
CREATE TABLE table_name_60 (muzzle_velocity VARCHAR, muzzle_energy VARCHAR)
What is the muzzle velocity for the muzzle energy 351ft•lbf (476 j)?
SELECT muzzle_velocity FROM table_name_32 WHERE cartridge = ".38 long colt"
CREATE TABLE table_name_32 (muzzle_velocity VARCHAR, cartridge VARCHAR)
What is the muzzle velocity for the .38 long colt cartridge?
SELECT muzzle_energy FROM table_name_40 WHERE max_pressure = "40,000 psi"
CREATE TABLE table_name_40 (muzzle_energy VARCHAR, max_pressure VARCHAR)
What is the muzzle energy with 40,000 psi max pressure?
SELECT country FROM table_name_23 WHERE place = "t5" AND score = 69 - 71 = 140
CREATE TABLE table_name_23 (country VARCHAR, place VARCHAR, score VARCHAR)
What is the home country of the player who placed t5 and had a score of 69-71=140?
SELECT place FROM table_name_78 WHERE score = 71 - 69 = 140
CREATE TABLE table_name_78 (place VARCHAR, score VARCHAR)
What was the place for the player whose final score was 71-69=140?
SELECT to_par FROM table_name_26 WHERE score = 67 - 71 = 138
CREATE TABLE table_name_26 (to_par VARCHAR, score VARCHAR)
What was the To par for the player whose final score was 67-71=138?
SELECT to_par FROM table_name_96 WHERE place = "t3" AND player = "nolan henke"
CREATE TABLE table_name_96 (to_par VARCHAR, place VARCHAR, player VARCHAR)
What was Nolan Henke's To par when he placed in t3?
SELECT meaning FROM table_name_61 WHERE pīnyīn = "chē"
CREATE TABLE table_name_61 (meaning VARCHAR, pīnyīn VARCHAR)
WHAT IS THE MEANING WITH Pīnyīn of chē?
SELECT radical__variants_ FROM table_name_81 WHERE pīnyīn = "gǔ" AND stroke_count = 7
CREATE TABLE table_name_81 (radical__variants_ VARCHAR, pīnyīn VARCHAR, stroke_count VARCHAR)
WHAT IS THE RADICAL WITH gǔ, AND STROKE COUNT OF 7?
SELECT COUNT(stroke_count) FROM table_name_57 WHERE radical__variants_ = "生" AND frequency < 22
CREATE TABLE table_name_57 (stroke_count VARCHAR, radical__variants_ VARCHAR, frequency VARCHAR)
WHAT IS THE STROKE COUNT WITH RADICAL OF 生, FRQUENCY SMALLER THAN 22?
SELECT AVG(stroke_count) FROM table_name_88 WHERE radical__variants_ = "皿" AND frequency < 129
CREATE TABLE table_name_88 (stroke_count INTEGER, radical__variants_ VARCHAR, frequency VARCHAR)
WHAT IS THE STROKE COUNT WITH RADICAL 皿 FREQUENCY SMALLER THAN 129?
SELECT flagship FROM table_name_33 WHERE host_s_ = "rover (shane french)"
CREATE TABLE table_name_33 (flagship VARCHAR, host_s_ VARCHAR)
What is the Flagship of the Show Hosted by Rover (Shane French)?
SELECT host_s_ FROM table_name_78 WHERE market = "new york"
CREATE TABLE table_name_78 (host_s_ VARCHAR, market VARCHAR)
What is the Host of the Show with a Market of New York?