question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What Scores by each individual judge has a Status of eliminated, and a Date performed of august 13?
CREATE TABLE table_name_15 (scores_by_each_individual_judge VARCHAR, status VARCHAR, date_performed VARCHAR)
SELECT scores_by_each_individual_judge FROM table_name_15 WHERE status = "eliminated" AND date_performed = "august 13"
What Scores by each individual judge has a Total score/week of 51/60, and a Co-contestant (Yaar vs. Pyaar) of tina sachdev?
CREATE TABLE table_name_76 (scores_by_each_individual_judge VARCHAR, total_score_week VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
SELECT scores_by_each_individual_judge FROM table_name_76 WHERE total_score_week = "51/60" AND co_contestant__yaar_vs_pyaar_ = "tina sachdev"
What Co-contestant (Yaar vs. Pyaar) has a Total score/week of 48/60, and a Date performed of august 14?
CREATE TABLE table_name_40 (co_contestant__yaar_vs_pyaar_ VARCHAR, total_score_week VARCHAR, date_performed VARCHAR)
SELECT co_contestant__yaar_vs_pyaar_ FROM table_name_40 WHERE total_score_week = "48/60" AND date_performed = "august 14"
What Date performed has a Scores by each individual judge of 10 + 10 + 10 = 30, and a Main contestant of karanvir bohra?
CREATE TABLE table_name_19 (date_performed VARCHAR, main_contestant VARCHAR, scores_by_each_individual_judge VARCHAR)
SELECT date_performed FROM table_name_19 WHERE scores_by_each_individual_judge = 10 + 10 + 10 = 30 AND main_contestant = "karanvir bohra"
What Status has a Date performed of august 13, and a Position of safe?
CREATE TABLE table_name_42 (status VARCHAR, date_performed VARCHAR, position VARCHAR)
SELECT status FROM table_name_42 WHERE date_performed = "august 13" AND position = "safe"
What Scores by each individual judge has a Status of current, and a Co-contestant (Yaar vs. Pyaar) of krushna abhishek?
CREATE TABLE table_name_67 (scores_by_each_individual_judge VARCHAR, status VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
SELECT scores_by_each_individual_judge FROM table_name_67 WHERE status = "current" AND co_contestant__yaar_vs_pyaar_ = "krushna abhishek"
Which Number of electorates (2009) has a District of jhajjar, and a Reserved for (SC/ST/None) of sc, and a Constituency number smaller than 66?
CREATE TABLE table_name_56 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)
SELECT COUNT(number_of_electorates__2009_) FROM table_name_56 WHERE district = "jhajjar" AND reserved_for___sc___st__none_ = "sc" AND constituency_number < 66
What is the highest rank of the athlete with a Taijiquan higher than 9.64 and a total more than 19.69?
CREATE TABLE table_name_95 (rank INTEGER, taijiquan VARCHAR, total VARCHAR)
SELECT MAX(rank) FROM table_name_95 WHERE taijiquan > 9.64 AND total > 19.69
What is the lowest Taijiquan of the athlete who has a Taijijian of 9.7 and a total more than 19.34?
CREATE TABLE table_name_90 (taijiquan INTEGER, taijijian VARCHAR, total VARCHAR)
SELECT MIN(taijiquan) FROM table_name_90 WHERE taijijian = 9.7 AND total > 19.34
What are the years that had someone nominated for best supporting actress?
CREATE TABLE table_name_67 (year VARCHAR, result VARCHAR, category VARCHAR)
SELECT COUNT(year) FROM table_name_67 WHERE result = "nominated" AND category = "best supporting actress"
What's the nominee for best supporting actress?
CREATE TABLE table_name_86 (nominee VARCHAR, category VARCHAR)
SELECT nominee FROM table_name_86 WHERE category = "best supporting actress"
What is the Tie no of the game with a Score of 1–1?
CREATE TABLE table_name_39 (tie_no VARCHAR, score VARCHAR)
SELECT tie_no FROM table_name_39 WHERE score = "1–1"
What is the Score of the Burnley Home game?
CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_57 WHERE home_team = "burnley"
What is the Away team when Arsenal is the Home team?
CREATE TABLE table_name_93 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_93 WHERE home_team = "arsenal"
What is the Date of Tie no 3?
CREATE TABLE table_name_67 (date VARCHAR, tie_no VARCHAR)
SELECT date FROM table_name_67 WHERE tie_no = "3"
Which opponent has a record of 3–1?
CREATE TABLE table_name_94 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_94 WHERE record = "3–1"
What event has a Record of 4–2?
CREATE TABLE table_name_22 (event VARCHAR, record VARCHAR)
SELECT event FROM table_name_22 WHERE record = "4–2"
Which Opponent has a Time of 0:38?
CREATE TABLE table_name_18 (opponent VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_18 WHERE time = "0:38"
What was the score when the result was win, in Helsinki, competition was friendly?
CREATE TABLE table_name_50 (score VARCHAR, competition VARCHAR, result VARCHAR, location VARCHAR)
SELECT score FROM table_name_50 WHERE result = "win" AND location = "helsinki" AND competition = "friendly"
What competition has a Score of 7–0?
CREATE TABLE table_name_85 (competition VARCHAR, score VARCHAR)
SELECT competition FROM table_name_85 WHERE score = "7–0"
What date has a result of win, in a friendly competition in Porto?
CREATE TABLE table_name_79 (date VARCHAR, location VARCHAR, result VARCHAR, competition VARCHAR)
SELECT date FROM table_name_79 WHERE result = "win" AND competition = "friendly" AND location = "porto"
Who has the city Santiago?
CREATE TABLE table_name_41 (name VARCHAR, city VARCHAR)
SELECT name FROM table_name_41 WHERE city = "santiago"
What is the score for Set 2 at 15:21?
CREATE TABLE table_name_48 (score VARCHAR, set_2 VARCHAR)
SELECT score FROM table_name_48 WHERE set_2 = "15:21"
What Set 2 has a set one at 19:21?
CREATE TABLE table_name_3 (set_2 VARCHAR, set_1 VARCHAR)
SELECT set_2 FROM table_name_3 WHERE set_1 = "19:21"
What is the score for Set 1 at 19:21?
CREATE TABLE table_name_59 (score VARCHAR, set_1 VARCHAR)
SELECT score FROM table_name_59 WHERE set_1 = "19:21"
What is the Set 1 with set 2 at 21:17?
CREATE TABLE table_name_93 (set_1 VARCHAR, set_2 VARCHAR)
SELECT set_1 FROM table_name_93 WHERE set_2 = "21:17"
What Result F – A has a League position of 2nd, and Opponents of liverpool?
CREATE TABLE table_name_92 (result_f___a VARCHAR, league_position VARCHAR, opponents VARCHAR)
SELECT result_f___a FROM table_name_92 WHERE league_position = "2nd" AND opponents = "liverpool"
What League position has a Result F – A of 2 – 0, and Opponents of queens park rangers?
CREATE TABLE table_name_31 (league_position VARCHAR, result_f___a VARCHAR, opponents VARCHAR)
SELECT league_position FROM table_name_31 WHERE result_f___a = "2 – 0" AND opponents = "queens park rangers"
What is the smallest Attendance with H / A of h, and Opponents of nottingham forest?
CREATE TABLE table_name_4 (attendance INTEGER, h___a VARCHAR, opponents VARCHAR)
SELECT MIN(attendance) FROM table_name_4 WHERE h___a = "h" AND opponents = "nottingham forest"
What country has a place of 4?
CREATE TABLE table_name_66 (country VARCHAR, place VARCHAR)
SELECT country FROM table_name_66 WHERE place = "4"
What did the United States score in the T5?
CREATE TABLE table_name_88 (score VARCHAR, country VARCHAR, place VARCHAR)
SELECT score FROM table_name_88 WHERE country = "united states" AND place = "t5"
What was the to par at the T5 for the player with a score of 74-69-66=209?
CREATE TABLE table_name_39 (to_par VARCHAR, place VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_39 WHERE place = "t5" AND score = 74 - 69 - 66 = 209
Where did Trinidad and Tobago play?
CREATE TABLE table_name_99 (place VARCHAR, country VARCHAR)
SELECT place FROM table_name_99 WHERE country = "trinidad and tobago"
What was the to par for the game with a score of 74-69-66=209?
CREATE TABLE table_name_24 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_24 WHERE score = 74 - 69 - 66 = 209
Where is Eduardo Romero from?
CREATE TABLE table_name_64 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_64 WHERE player = "eduardo romero"
In what city is the Estonian University of Life Sciences located?
CREATE TABLE table_name_42 (city VARCHAR, name VARCHAR)
SELECT city FROM table_name_42 WHERE name = "estonian university of life sciences"
What is the abbreviation for the University of Tartu?
CREATE TABLE table_name_43 (abbr VARCHAR, name VARCHAR)
SELECT abbr FROM table_name_43 WHERE name = "university of tartu"
What place is Fred Funk in?
CREATE TABLE table_name_30 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_30 WHERE player = "fred funk"
What is Score, when Away Team is "Thame United"?
CREATE TABLE table_name_67 (score VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_67 WHERE away_team = "thame united"
What is Score, when Attendance is "76", and when Home Team is "Meir Ka"?
CREATE TABLE table_name_84 (score VARCHAR, attendance VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_84 WHERE attendance = "76" AND home_team = "meir ka"
What is Tie No, when Score is "Marlow United won 4–2 on penalties"?
CREATE TABLE table_name_89 (tie_no VARCHAR, score VARCHAR)
SELECT tie_no FROM table_name_89 WHERE score = "marlow united won 4–2 on penalties"
What is Home Team, when Attendance is "112", and when Away Team is "Kentish Town"?
CREATE TABLE table_name_94 (home_team VARCHAR, attendance VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_94 WHERE attendance = "112" AND away_team = "kentish town"
What was the April 7, 2008 score on a clay surface?
CREATE TABLE table_name_71 (score VARCHAR, surface VARCHAR, date VARCHAR)
SELECT score FROM table_name_71 WHERE surface = "clay" AND date = "april 7, 2008"
What date was the score 6–3, 3–6, 6–0?
CREATE TABLE table_name_55 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_55 WHERE score = "6–3, 3–6, 6–0"
What is 17th c., when American is "ə"?
CREATE TABLE table_name_25 (american VARCHAR)
SELECT 17 AS th_c FROM table_name_25 WHERE american = "ə"
What is 17th c., when Australian is "i, ɪ, ə", and when Examples is "œsophagus"?
CREATE TABLE table_name_25 (australian VARCHAR, examples VARCHAR)
SELECT 17 AS th_c FROM table_name_25 WHERE australian = "i, ɪ, ə" AND examples = "œsophagus"
What is Australian, when Examples is "amœba, anemone, ascesis"?
CREATE TABLE table_name_95 (australian VARCHAR, examples VARCHAR)
SELECT australian FROM table_name_95 WHERE examples = "amœba, anemone, ascesis"
What is British, when Australian is "i, ɪ, ə", and when Examples is "œsophagus"?
CREATE TABLE table_name_83 (british VARCHAR, australian VARCHAR, examples VARCHAR)
SELECT british FROM table_name_83 WHERE australian = "i, ɪ, ə" AND examples = "œsophagus"
What is Australian, when Examples is "elysium, emeritus, epitome, erotica"?
CREATE TABLE table_name_50 (australian VARCHAR, examples VARCHAR)
SELECT australian FROM table_name_50 WHERE examples = "elysium, emeritus, epitome, erotica"
Which report had a circuit of Cagliari?
CREATE TABLE table_name_33 (report VARCHAR, circuit VARCHAR)
SELECT report FROM table_name_33 WHERE circuit = "cagliari"
Which name had the circuit Monza?
CREATE TABLE table_name_49 (name VARCHAR, circuit VARCHAR)
SELECT name FROM table_name_49 WHERE circuit = "monza"
What day was the circuit Isle of Man?
CREATE TABLE table_name_72 (date VARCHAR, circuit VARCHAR)
SELECT date FROM table_name_72 WHERE circuit = "isle of man"
What is the 2nd leg for the team 2 Milano?
CREATE TABLE table_name_72 (team_2 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_72 WHERE team_2 = "milano"
What was the position of the player picked at 243?
CREATE TABLE table_name_32 (position VARCHAR, pick INTEGER)
SELECT position FROM table_name_32 WHERE pick > 243
Who was the visitor when the record was 24–14–2?
CREATE TABLE table_name_69 (visitor VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_69 WHERE record = "24–14–2"
On what date was the score 6–4?
CREATE TABLE table_name_1 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_1 WHERE score = "6–4"
What was the score on February 17?
CREATE TABLE table_name_77 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_77 WHERE date = "february 17"
What is the total number of Silver, when Gold is "1", and when Bronze is less than 0?
CREATE TABLE table_name_35 (silver VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT COUNT(silver) FROM table_name_35 WHERE gold = 1 AND bronze < 0
What is the highest Bronze, when Nation is "South Africa", and when Total is less than 20?
CREATE TABLE table_name_73 (bronze INTEGER, nation VARCHAR, total VARCHAR)
SELECT MAX(bronze) FROM table_name_73 WHERE nation = "south africa" AND total < 20
What is the highest Silver, when Gold is "8", and when Total is greater than 31?
CREATE TABLE table_name_61 (silver INTEGER, gold VARCHAR, total VARCHAR)
SELECT MAX(silver) FROM table_name_61 WHERE gold = 8 AND total > 31
What is the total number of Silver, when Gold is less than 34, when Rank is "6", and when Total is greater than 10?
CREATE TABLE table_name_81 (silver VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT COUNT(silver) FROM table_name_81 WHERE gold < 34 AND rank = "6" AND total > 10
What is Bronze, when Silver is less than 89, and when Total is "4"?
CREATE TABLE table_name_6 (bronze VARCHAR, silver VARCHAR, total VARCHAR)
SELECT bronze FROM table_name_6 WHERE silver < 89 AND total = 4
What's the production time with more than 2.737 built and a 280s model?
CREATE TABLE table_name_59 (production_time VARCHAR, number_built VARCHAR, model VARCHAR)
SELECT production_time FROM table_name_59 WHERE number_built > 2.737 AND model = "280s"
What's the total number built with a chassis code of w108.057?
CREATE TABLE table_name_45 (number_built VARCHAR, chassis_code VARCHAR)
SELECT COUNT(number_built) FROM table_name_45 WHERE chassis_code = "w108.057"
What's the chassis code for the 280s model?
CREATE TABLE table_name_17 (chassis_code VARCHAR, model VARCHAR)
SELECT chassis_code FROM table_name_17 WHERE model = "280s"
What is the lowest Jianshu number for Liu Yang ( hkg )?
CREATE TABLE table_name_29 (jianshu INTEGER, athlete VARCHAR)
SELECT MIN(jianshu) FROM table_name_29 WHERE athlete = "liu yang ( hkg )"
What is the lowest rank when Jianshu is smaller than 9.66, for Richard Devine ( gbr ), with a total smaller than 19.02?
CREATE TABLE table_name_25 (rank INTEGER, total VARCHAR, jianshu VARCHAR, athlete VARCHAR)
SELECT MIN(rank) FROM table_name_25 WHERE jianshu < 9.66 AND athlete = "richard devine ( gbr )" AND total < 19.02
What is the number of Jianshu when the total is more than 19.16, for Nguyen Huy Thanh ( vie ), and Qiangshu is more than 9.66?
CREATE TABLE table_name_76 (jianshu VARCHAR, qiangshu VARCHAR, total VARCHAR, athlete VARCHAR)
SELECT COUNT(jianshu) FROM table_name_76 WHERE total > 19.16 AND athlete = "nguyen huy thanh ( vie )" AND qiangshu > 9.66
What is the number of Qiangshu when rank is less than 10, with a total of 18.97, and Jianshu is larger than 9.51?
CREATE TABLE table_name_73 (qiangshu VARCHAR, jianshu VARCHAR, rank VARCHAR, total VARCHAR)
SELECT COUNT(qiangshu) FROM table_name_73 WHERE rank < 10 AND total = 18.97 AND jianshu > 9.51
Can you tell me the Place that has the Country of australia, and the Player of ian baker-finch?
CREATE TABLE table_name_22 (place VARCHAR, country VARCHAR, player VARCHAR)
SELECT place FROM table_name_22 WHERE country = "australia" AND player = "ian baker-finch"
Can you tell me the Place that has the Score of 68, and the Player of christy o'connor jnr?
CREATE TABLE table_name_70 (place VARCHAR, score VARCHAR, player VARCHAR)
SELECT place FROM table_name_70 WHERE score = 68 AND player = "christy o'connor jnr"
Can you tell me the Player that has the Score larger than 67?
CREATE TABLE table_name_60 (player VARCHAR, score INTEGER)
SELECT player FROM table_name_60 WHERE score > 67
What is the 2011 value with a 134 in 2008?
CREATE TABLE table_name_31 (Id VARCHAR)
SELECT 2011 FROM table_name_31 WHERE 2008 = "134"
What is the 2009 value with A in 2012 and q2 in 2011?
CREATE TABLE table_name_32 (Id VARCHAR)
SELECT 2009 FROM table_name_32 WHERE 2012 = "a" AND 2011 = "q2"
What is the 2011 value for the paris masters tournament with 1r in 2008?
CREATE TABLE table_name_5 (tournament VARCHAR)
SELECT 2011 FROM table_name_5 WHERE 2008 = "1r" AND tournament = "paris masters"
What is the 2011 value with nms in 2008?
CREATE TABLE table_name_54 (Id VARCHAR)
SELECT 2011 FROM table_name_54 WHERE 2008 = "nms"
Which Draws have a Club of burgos cf, and a Position larger than 8?
CREATE TABLE table_name_98 (draws INTEGER, club VARCHAR, position VARCHAR)
SELECT MIN(draws) FROM table_name_98 WHERE club = "burgos cf" AND position > 8
Which Played has a Goal Difference larger than 24?
CREATE TABLE table_name_35 (played INTEGER, goal_difference INTEGER)
SELECT AVG(played) FROM table_name_35 WHERE goal_difference > 24
Which Goals against has Wins of 13, and Goals for larger than 42, and more than 9 Losses?
CREATE TABLE table_name_45 (goals_against INTEGER, losses VARCHAR, wins VARCHAR, goals_for VARCHAR)
SELECT AVG(goals_against) FROM table_name_45 WHERE wins = 13 AND goals_for > 42 AND losses > 9
How many draws have less than 8 wins, and 31 goals for?
CREATE TABLE table_name_25 (draws INTEGER, wins VARCHAR, goals_for VARCHAR)
SELECT SUM(draws) FROM table_name_25 WHERE wins < 8 AND goals_for = 31
What event of this season had a time of 2:43?
CREATE TABLE table_name_36 (event VARCHAR, time VARCHAR)
SELECT event FROM table_name_36 WHERE time = "2:43"
How many penalties were there in the game with a G.F. of 40?
CREATE TABLE table_name_20 (penalties VARCHAR, gf VARCHAR)
SELECT penalties FROM table_name_20 WHERE gf = "40"
What's the P.I.M. for the G.F. of 55?
CREATE TABLE table_name_42 (pim VARCHAR, gf VARCHAR)
SELECT pim FROM table_name_42 WHERE gf = "55"
What's the G.A. when there were 2 losses and Scotland played?
CREATE TABLE table_name_33 (ga VARCHAR, losses VARCHAR, team VARCHAR)
SELECT ga FROM table_name_33 WHERE losses = "2" AND team = "scotland"
Which venue has 2:04.22 notes?
CREATE TABLE table_name_19 (venue VARCHAR, notes VARCHAR)
SELECT venue FROM table_name_19 WHERE notes = "2:04.22"
What years does Goreville High School have members?
CREATE TABLE table_name_62 (years_member VARCHAR, school VARCHAR)
SELECT years_member FROM table_name_62 WHERE school = "goreville high school"
What is the name of the school with the Tornadoes Lady Tornadoes?
CREATE TABLE table_name_41 (school VARCHAR, nickname_s_ VARCHAR)
SELECT school FROM table_name_41 WHERE nickname_s_ = "tornadoes lady tornadoes"
What is the school with the nickname Tornadoes Lady Tornadoes?
CREATE TABLE table_name_65 (school VARCHAR, nickname_s_ VARCHAR)
SELECT school FROM table_name_65 WHERE nickname_s_ = "tornadoes lady tornadoes"
What is the nickname with an enrollment (2013/14) of 160?
CREATE TABLE table_name_59 (nickname_s_ VARCHAR, enrollment__2013_14_ VARCHAR)
SELECT nickname_s_ FROM table_name_59 WHERE enrollment__2013_14_ = "160"
What is Notes, when Gold is "Thierry Gueorgiou", when Year is before 2008, and when Bronze is "Valentin Novikov"?
CREATE TABLE table_name_70 (notes VARCHAR, bronze VARCHAR, gold VARCHAR, year VARCHAR)
SELECT notes FROM table_name_70 WHERE gold = "thierry gueorgiou" AND year < 2008 AND bronze = "valentin novikov"
What is Notes, when Silver is "Jarkko Huovila"?
CREATE TABLE table_name_3 (notes VARCHAR, silver VARCHAR)
SELECT notes FROM table_name_3 WHERE silver = "jarkko huovila"
What is the total number of Year, when Bronze is "Jamie Stevenson"?
CREATE TABLE table_name_90 (year VARCHAR, bronze VARCHAR)
SELECT COUNT(year) FROM table_name_90 WHERE bronze = "jamie stevenson"
What is Notes, when Bronze is "Pasi Ikonen"?
CREATE TABLE table_name_20 (notes VARCHAR, bronze VARCHAR)
SELECT notes FROM table_name_20 WHERE bronze = "pasi ikonen"
What is Bronze, when Notes is "6.7km, 22controls"?
CREATE TABLE table_name_2 (bronze VARCHAR, notes VARCHAR)
SELECT bronze FROM table_name_2 WHERE notes = "6.7km, 22controls"
What is Silver, when Notes is "6.24km, 23controls"?
CREATE TABLE table_name_86 (silver VARCHAR, notes VARCHAR)
SELECT silver FROM table_name_86 WHERE notes = "6.24km, 23controls"
What position has siim ennemuist as the player?
CREATE TABLE table_name_52 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_52 WHERE player = "siim ennemuist"
What Player has a To par less than 15 and a Total of 149?
CREATE TABLE table_name_21 (player VARCHAR, to_par VARCHAR, total VARCHAR)
SELECT player FROM table_name_21 WHERE to_par < 15 AND total = 149
What is the Year(s) won of the Player with a To par of 5?
CREATE TABLE table_name_4 (year_s__won VARCHAR, to_par VARCHAR)
SELECT year_s__won FROM table_name_4 WHERE to_par = 5
What's the English word for apfel?
CREATE TABLE table_name_53 (english VARCHAR, german VARCHAR)
SELECT english FROM table_name_53 WHERE german = "apfel"
What's the Dutch word for Apel?
CREATE TABLE table_name_48 (dutch VARCHAR, crimean_gothic VARCHAR)
SELECT dutch FROM table_name_48 WHERE crimean_gothic = "apel"