question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What's the Bible Gothic for the word hand?
CREATE TABLE table_name_7 (bible_gothic VARCHAR, english VARCHAR)
SELECT bible_gothic FROM table_name_7 WHERE english = "hand"
What's the Icelandic word for rain?
CREATE TABLE table_name_12 (icelandic VARCHAR, english VARCHAR)
SELECT icelandic FROM table_name_12 WHERE english = "rain"
What's the Icelandic word for the German word for hand?
CREATE TABLE table_name_85 (icelandic VARCHAR, german VARCHAR)
SELECT icelandic FROM table_name_85 WHERE german = "hand"
What was the score for Nick Faldo?
CREATE TABLE table_name_76 (score INTEGER, player VARCHAR)
SELECT AVG(score) FROM table_name_76 WHERE player = "nick faldo"
What is the score when the to par was –5, for Peter Jacobsen?
CREATE TABLE table_name_9 (score INTEGER, to_par VARCHAR, player VARCHAR)
SELECT SUM(score) FROM table_name_9 WHERE to_par = "–5" AND player = "peter jacobsen"
Which Run 4 has a Country of united states, and an Athlete of bree schaaf emily azevedo, and a Run 3 smaller than 58.04?
CREATE TABLE table_name_78 (run_4 INTEGER, run_3 VARCHAR, country VARCHAR, athlete VARCHAR)
SELECT SUM(run_4) FROM table_name_78 WHERE country = "united states" AND athlete = "bree schaaf emily azevedo" AND run_3 < 58.04
How much Run 2 has a Run 4 of 57.68, and a Run 3 smaller than 57.9?
CREATE TABLE table_name_53 (run_2 VARCHAR, run_4 VARCHAR, run_3 VARCHAR)
SELECT COUNT(run_2) FROM table_name_53 WHERE run_4 = 57.68 AND run_3 < 57.9
Which Run 4 has a Run 1 of 57.37, and a Run 3 smaller than 57.45?
CREATE TABLE table_name_32 (run_4 INTEGER, run_1 VARCHAR, run_3 VARCHAR)
SELECT SUM(run_4) FROM table_name_32 WHERE run_1 = 57.37 AND run_3 < 57.45
Which Athlete has a Run 1 larger than 57.37, and a Run 4 smaller than 59.05, and a Run 3 of 58.08?
CREATE TABLE table_name_15 (athlete VARCHAR, run_3 VARCHAR, run_1 VARCHAR, run_4 VARCHAR)
SELECT athlete FROM table_name_15 WHERE run_1 > 57.37 AND run_4 < 59.05 AND run_3 = 58.08
What is the total for the first exercise and has 18 as the second exercise?
CREATE TABLE table_name_2 (first_exercise INTEGER, second_exercise VARCHAR)
SELECT SUM(first_exercise) FROM table_name_2 WHERE second_exercise = 18
What is the to par of the player with a 68-67-75=210?
CREATE TABLE table_name_99 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_99 WHERE score = 68 - 67 - 75 = 210
Who is the player with a 68-67-75=210 score?
CREATE TABLE table_name_29 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_29 WHERE score = 68 - 67 - 75 = 210
Who is the player with a 70-68-74=212 score?
CREATE TABLE table_name_73 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_73 WHERE score = 70 - 68 - 74 = 212
What is the highest Byes by Anakie who has an Against smaller than 2275?
CREATE TABLE table_name_14 (byes INTEGER, geelong_dfl VARCHAR, against VARCHAR)
SELECT MAX(byes) FROM table_name_14 WHERE geelong_dfl = "anakie" AND against < 2275
For entries with a lost of 5, what is the sum of the draw entry?
CREATE TABLE table_name_23 (draw INTEGER, lost VARCHAR)
SELECT SUM(draw) FROM table_name_23 WHERE lost = 5
What is the lowest place with more than 26 goals scored, 18 goals conceded, and a draw entry of 6?
CREATE TABLE table_name_10 (place INTEGER, goals_scored VARCHAR, draw VARCHAR, goals_conceded VARCHAR)
SELECT MIN(place) FROM table_name_10 WHERE draw = 6 AND goals_conceded = 18 AND goals_scored > 26
What is the highest place that has a draw entry smaller than 6 and goal score of 28?
CREATE TABLE table_name_99 (place INTEGER, goals_scored VARCHAR, draw VARCHAR)
SELECT MAX(place) FROM table_name_99 WHERE goals_scored = 28 AND draw < 6
What is the lowest number of goals scored for the entry with goals conceded larger than 30, lost larger than 3, and fewer than 6 draws?
CREATE TABLE table_name_94 (goals_scored INTEGER, goals_conceded VARCHAR, draw VARCHAR, lost VARCHAR)
SELECT MIN(goals_scored) FROM table_name_94 WHERE draw < 6 AND lost > 3 AND goals_conceded > 30
What was the shooter when the rank points was olympic bronze medalist?
CREATE TABLE table_name_36 (shooter VARCHAR, rank_points VARCHAR)
SELECT shooter FROM table_name_36 WHERE rank_points = "olympic bronze medalist"
What were the rank points when the score was 7 and the total was 15?
CREATE TABLE table_name_59 (rank_points VARCHAR, total VARCHAR, score_points VARCHAR)
SELECT rank_points FROM table_name_59 WHERE total = "15" AND score_points = "7"
What were the rank points when the total was 11?
CREATE TABLE table_name_72 (rank_points VARCHAR, total VARCHAR)
SELECT rank_points FROM table_name_72 WHERE total = "11"
What is the smallest number of silver medals for a nation with fewer than 1 bronze?
CREATE TABLE table_name_51 (silver INTEGER, bronze INTEGER)
SELECT MIN(silver) FROM table_name_51 WHERE bronze < 1
How many gold medals for the nation ranked 6?
CREATE TABLE table_name_19 (gold VARCHAR, rank VARCHAR)
SELECT gold FROM table_name_19 WHERE rank = "6"
Name the District which has a Reserved for ( SC / ST /None) of sc?
CREATE TABLE table_name_94 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR)
SELECT district FROM table_name_94 WHERE reserved_for___sc___st__none_ = "sc"
Name the District that has a Reserved for ( SC / ST /None) of none and a Constituency number of 242?
CREATE TABLE table_name_19 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)
SELECT district FROM table_name_19 WHERE reserved_for___sc___st__none_ = "none" AND constituency_number = "242"
Name the Number of electorates (2009 which has a Reserved for ( SC / ST /None) of none, and a Name of jahanabad?
CREATE TABLE table_name_40 (number_of_electorates__2009_ INTEGER, reserved_for___sc___st__none_ VARCHAR, name VARCHAR)
SELECT MIN(number_of_electorates__2009_) FROM table_name_40 WHERE reserved_for___sc___st__none_ = "none" AND name = "jahanabad"
Count the Number of electorates (2009) that has a District of fatehpur and jahanabad?
CREATE TABLE table_name_11 (number_of_electorates__2009_ INTEGER, district VARCHAR, name VARCHAR)
SELECT SUM(number_of_electorates__2009_) FROM table_name_11 WHERE district = "fatehpur" AND name = "jahanabad"
What Score has a Date of 11 september 2010?
CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_25 WHERE date = "11 september 2010"
What Date has an Outcome of runner up, and a Partner of tyra calderwood?
CREATE TABLE table_name_30 (date VARCHAR, outcome VARCHAR, partner VARCHAR)
SELECT date FROM table_name_30 WHERE outcome = "runner up" AND partner = "tyra calderwood"
What Score has a Tournament of tanjung selor, indonesia?
CREATE TABLE table_name_76 (score VARCHAR, tournament VARCHAR)
SELECT score FROM table_name_76 WHERE tournament = "tanjung selor, indonesia"
What Date has Opponents of sun shengnan han xinyun?
CREATE TABLE table_name_2 (date VARCHAR, opponents VARCHAR)
SELECT date FROM table_name_2 WHERE opponents = "sun shengnan han xinyun"
What is the highest position of club lietava-2 jonava, which has more than 12 points and more than 7 wins?
CREATE TABLE table_name_75 (position INTEGER, wins VARCHAR, points VARCHAR, club VARCHAR)
SELECT MAX(position) FROM table_name_75 WHERE points > 12 AND club = "lietava-2 jonava" AND wins > 7
What is the total number of goals of the club with 4 wins and less than 0 draws?
CREATE TABLE table_name_45 (goals_conceded VARCHAR, wins VARCHAR, draws VARCHAR)
SELECT COUNT(goals_conceded) FROM table_name_45 WHERE wins = 4 AND draws < 0
What is the total number of games played of the club with less than 40 goals scored, 9 losses, 39 goals conceded, and more than 2 draws?
CREATE TABLE table_name_33 (games_played VARCHAR, draws VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR, loses VARCHAR)
SELECT COUNT(games_played) FROM table_name_33 WHERE goals_scored < 40 AND loses = 9 AND goals_conceded = 39 AND draws > 2
What is the total number of goals scored of the club with more than 3 draws, more than 1 loses, and less than 26 points?
CREATE TABLE table_name_15 (goals_scored VARCHAR, points VARCHAR, draws VARCHAR, loses VARCHAR)
SELECT COUNT(goals_scored) FROM table_name_15 WHERE draws > 3 AND loses > 1 AND points < 26
What is the sum of the position with less than 0 draws?
CREATE TABLE table_name_39 (position INTEGER, draws INTEGER)
SELECT SUM(position) FROM table_name_39 WHERE draws < 0
What is Home Team, when Tie No is "7"?
CREATE TABLE table_name_5 (home_team VARCHAR, tie_no VARCHAR)
SELECT home_team FROM table_name_5 WHERE tie_no = "7"
What is Home Team, when Away Team is "Brentford"?
CREATE TABLE table_name_67 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_67 WHERE away_team = "brentford"
What is Home Team, when Date is "6 December 1986", and when Tie No is "4"?
CREATE TABLE table_name_49 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR)
SELECT home_team FROM table_name_49 WHERE date = "6 december 1986" AND tie_no = "4"
What is Date, when Home Team is "Chester City"?
CREATE TABLE table_name_18 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_18 WHERE home_team = "chester city"
What is Tie no, when Home Team is "Gillingham"?
CREATE TABLE table_name_96 (tie_no VARCHAR, home_team VARCHAR)
SELECT tie_no FROM table_name_96 WHERE home_team = "gillingham"
From what Country is T2 Finish Player Gary Player?
CREATE TABLE table_name_60 (country VARCHAR, finish VARCHAR, player VARCHAR)
SELECT country FROM table_name_60 WHERE finish = "t2" AND player = "gary player"
What is the total for the player with a Finish of T39?
CREATE TABLE table_name_96 (total VARCHAR, finish VARCHAR)
SELECT total FROM table_name_96 WHERE finish = "t39"
What is the Finish of the Player with a Total of 273?
CREATE TABLE table_name_20 (finish VARCHAR, total VARCHAR)
SELECT finish FROM table_name_20 WHERE total = 273
What is the To par of the player with a Finish of T20?
CREATE TABLE table_name_67 (to_par VARCHAR, finish VARCHAR)
SELECT to_par FROM table_name_67 WHERE finish = "t20"
Which byes are high when losses are larger than 7, wins smaller than 6, and draws are smaller than 0?
CREATE TABLE table_name_88 (byes INTEGER, draws VARCHAR, losses VARCHAR, wins VARCHAR)
SELECT MAX(byes) FROM table_name_88 WHERE losses > 7 AND wins < 6 AND draws < 0
What is the sum of losses when draws are larger than 0?
CREATE TABLE table_name_11 (losses VARCHAR, draws INTEGER)
SELECT COUNT(losses) FROM table_name_11 WHERE draws > 0
What draws are the lowest when wins are larger than 18?
CREATE TABLE table_name_44 (draws INTEGER, wins INTEGER)
SELECT MIN(draws) FROM table_name_44 WHERE wins > 18
What is the sum of byes when wins are 8, and losses are larger than 10?
CREATE TABLE table_name_96 (byes VARCHAR, wins VARCHAR, losses VARCHAR)
SELECT COUNT(byes) FROM table_name_96 WHERE wins = 8 AND losses > 10
Which against has the lowest when byes are larger than 0?
CREATE TABLE table_name_99 (against INTEGER, byes INTEGER)
SELECT MIN(against) FROM table_name_99 WHERE byes > 0
What are the highest losses when byes are larger than 0?
CREATE TABLE table_name_95 (losses INTEGER, byes INTEGER)
SELECT MAX(losses) FROM table_name_95 WHERE byes > 0
Which player was previously on the New York Knicks?
CREATE TABLE table_name_24 (player VARCHAR, previous_team VARCHAR)
SELECT player FROM table_name_24 WHERE previous_team = "new york knicks"
What is the nationality of the player with 2 years of NBA experience for the previously played for the Los Angeles Lakers?
CREATE TABLE table_name_23 (nationality VARCHAR, previous_team VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR)
SELECT nationality FROM table_name_23 WHERE years_of_nba_experience_[a_] = 2 AND previous_team = "los angeles lakers"
What is the Record in a week later than 7 against the San Diego Chargers?
CREATE TABLE table_name_25 (record VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_25 WHERE week > 7 AND opponent = "san diego chargers"
What is the result week 1?
CREATE TABLE table_name_2 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_2 WHERE week = 1
What is the lowest attendance on October 3, 1965?
CREATE TABLE table_name_17 (attendance INTEGER, date VARCHAR)
SELECT MIN(attendance) FROM table_name_17 WHERE date = "october 3, 1965"
What are the manuals with a kind of r, and an opus of 144?
CREATE TABLE table_name_89 (manuals VARCHAR, kind VARCHAR, opus VARCHAR)
SELECT manuals FROM table_name_89 WHERE kind = "r" AND opus = "144"
What are the manuals with an opus of 147?
CREATE TABLE table_name_2 (manuals VARCHAR, opus VARCHAR)
SELECT manuals FROM table_name_2 WHERE opus = "147"
What kind is in the year 1978 and a manual of ii/p?
CREATE TABLE table_name_79 (kind VARCHAR, year VARCHAR, manuals VARCHAR)
SELECT kind FROM table_name_79 WHERE year = "1978" AND manuals = "ii/p"
What manuals have the opus of 135?
CREATE TABLE table_name_31 (manuals VARCHAR, opus VARCHAR)
SELECT manuals FROM table_name_31 WHERE opus = "135"
What year was it the town of Eugene?
CREATE TABLE table_name_30 (year VARCHAR, town VARCHAR)
SELECT year FROM table_name_30 WHERE town = "eugene"
What town has 15 stops and a NB kind?
CREATE TABLE table_name_82 (town VARCHAR, stops VARCHAR, kind VARCHAR)
SELECT town FROM table_name_82 WHERE stops = "15" AND kind = "nb"
In which district is anna university - tiruchirappalli campus, whose website is http://www.annauniv.edu, located?
CREATE TABLE table_name_3 (district VARCHAR, weblink VARCHAR, college_or_campus_name VARCHAR)
SELECT district FROM table_name_3 WHERE weblink = "http://www.annauniv.edu" AND college_or_campus_name = "anna university - tiruchirappalli campus"
In what year was anna university - panruti campus established?
CREATE TABLE table_name_14 (estd INTEGER, college_or_campus_name VARCHAR)
SELECT SUM(estd) FROM table_name_14 WHERE college_or_campus_name = "anna university - panruti campus"
Which district was established in 1942?
CREATE TABLE table_name_82 (district VARCHAR, estd VARCHAR)
SELECT district FROM table_name_82 WHERE estd = 1942
What is the affiliation for the Cuddalore District?
CREATE TABLE table_name_18 (affiliation VARCHAR, district VARCHAR)
SELECT affiliation FROM table_name_18 WHERE district = "cuddalore district"
Which College or campus has a website of http://www.aucev.edu.in/?
CREATE TABLE table_name_79 (college_or_campus_name VARCHAR, weblink VARCHAR)
SELECT college_or_campus_name FROM table_name_79 WHERE weblink = "http://www.aucev.edu.in/"
What is the name of the available rock single/pack by REO Speedwagon?
CREATE TABLE table_name_30 (single___pack_name VARCHAR, genre VARCHAR, artist VARCHAR)
SELECT single___pack_name FROM table_name_30 WHERE genre = "rock" AND artist = "reo speedwagon"
What is the highest gold with 1 silver, and more than 1 altogether?
CREATE TABLE table_name_40 (gold INTEGER, silver VARCHAR, total VARCHAR)
SELECT MAX(gold) FROM table_name_40 WHERE silver = 1 AND total > 1
What is the latest year when the best finish is 2 and the scoring average is less than 71.24?
CREATE TABLE table_name_51 (year INTEGER, best_finish VARCHAR, scoring_average VARCHAR)
SELECT MAX(year) FROM table_name_51 WHERE best_finish = "2" AND scoring_average < 71.24
What was the average scoring the the top 10s is 4?
CREATE TABLE table_name_51 (scoring_average INTEGER, top_10s VARCHAR)
SELECT AVG(scoring_average) FROM table_name_51 WHERE top_10s = 4
What is the country of the player with a score less than 68?
CREATE TABLE table_name_40 (country VARCHAR, score INTEGER)
SELECT country FROM table_name_40 WHERE score < 68
What state is Ding and has a royal house of Ji?
CREATE TABLE table_name_87 (state VARCHAR, royal_house VARCHAR, name VARCHAR)
SELECT state FROM table_name_87 WHERE royal_house = "ji" AND name = "ding"
Which name has a state of Yan?
CREATE TABLE table_name_44 (name VARCHAR, state VARCHAR)
SELECT name FROM table_name_44 WHERE state = "yan"
Which state has a royal house of Ying?
CREATE TABLE table_name_66 (state VARCHAR, royal_house VARCHAR)
SELECT state FROM table_name_66 WHERE royal_house = "ying"
Which state has a royal house of Jiang?
CREATE TABLE table_name_5 (state VARCHAR, royal_house VARCHAR)
SELECT state FROM table_name_5 WHERE royal_house = "jiang"
How tall is the person born on 1976-12-27?
CREATE TABLE table_name_2 (height VARCHAR, date_of_birth VARCHAR)
SELECT height FROM table_name_2 WHERE date_of_birth = "1976-12-27"
What is the birth date of a member of the Club of bvsc vízilabda?
CREATE TABLE table_name_39 (date_of_birth VARCHAR, club VARCHAR)
SELECT date_of_birth FROM table_name_39 WHERE club = "bvsc vízilabda"
Who has the height of m (ft 9in) and was born on 1980-03-05?
CREATE TABLE table_name_57 (name VARCHAR, height VARCHAR, date_of_birth VARCHAR)
SELECT name FROM table_name_57 WHERE height = "m (ft 9in)" AND date_of_birth = "1980-03-05"
Who has a Height of head coach: tamás faragó?
CREATE TABLE table_name_65 (name VARCHAR, height VARCHAR)
SELECT name FROM table_name_65 WHERE height = "head coach: tamás faragó"
What is the highest Pick, when Nationality is "France", and when Draft is less than 1979?
CREATE TABLE table_name_27 (pick INTEGER, nationality VARCHAR, draft VARCHAR)
SELECT MAX(pick) FROM table_name_27 WHERE nationality = "france" AND draft < 1979
What is the sum of Draft, when Round is greater than 9?
CREATE TABLE table_name_56 (draft INTEGER, round INTEGER)
SELECT SUM(draft) FROM table_name_56 WHERE round > 9
What is the highest Round, when Draft is greater than 1980, and when Player is "Shane Doan Category:Articles with hCards"?
CREATE TABLE table_name_46 (round INTEGER, draft VARCHAR, player VARCHAR)
SELECT MAX(round) FROM table_name_46 WHERE draft > 1980 AND player = "shane doan category:articles with hcards"
What is the lowest Draft, when Nationality is "Canada", when Player is "Shane Doan Category:Articles with hCards", and when Round is less than 1?
CREATE TABLE table_name_7 (draft INTEGER, round VARCHAR, nationality VARCHAR, player VARCHAR)
SELECT MIN(draft) FROM table_name_7 WHERE nationality = "canada" AND player = "shane doan category:articles with hcards" AND round < 1
What is the lowest Draft, when Player is "Dave Christian Category:Articles with hCards"?
CREATE TABLE table_name_74 (draft INTEGER, player VARCHAR)
SELECT MIN(draft) FROM table_name_74 WHERE player = "dave christian category:articles with hcards"
What party has the district Georgia 7?
CREATE TABLE table_name_46 (party VARCHAR, district VARCHAR)
SELECT party FROM table_name_46 WHERE district = "georgia 7"
Which district has an incumbent of Sanford Bishop?
CREATE TABLE table_name_92 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_name_92 WHERE incumbent = "sanford bishop"
What is the Score of the Hereford United Away game?
CREATE TABLE table_name_88 (score VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_88 WHERE away_team = "hereford united"
What is the Home team of the Lincoln City Away game?
CREATE TABLE table_name_5 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_5 WHERE away_team = "lincoln city"
What is the Away team at Bristol Rovers' Home game?
CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_33 WHERE home_team = "bristol rovers"
What is the Away team at Mansfield Town's Home game?
CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_53 WHERE home_team = "mansfield town"
What is the Tie no at the Hull City Home game with a Score of 1–1?
CREATE TABLE table_name_80 (tie_no VARCHAR, score VARCHAR, home_team VARCHAR)
SELECT tie_no FROM table_name_80 WHERE score = "1–1" AND home_team = "hull city"
Which Byes have an Against larger than 1235, and Losses smaller than 10, and Wins larger than 7?
CREATE TABLE table_name_87 (byes INTEGER, wins VARCHAR, against VARCHAR, losses VARCHAR)
SELECT MAX(byes) FROM table_name_87 WHERE against > 1235 AND losses < 10 AND wins > 7
Which Losses have an Against smaller than 1464, and Draws smaller than 1, and Wins larger than 7?
CREATE TABLE table_name_58 (losses INTEGER, wins VARCHAR, against VARCHAR, draws VARCHAR)
SELECT MIN(losses) FROM table_name_58 WHERE against < 1464 AND draws < 1 AND wins > 7
Which Draws have a Lexton Plains of skipton, and an Against larger than 1212?
CREATE TABLE table_name_85 (draws INTEGER, lexton_plains VARCHAR, against VARCHAR)
SELECT MAX(draws) FROM table_name_85 WHERE lexton_plains = "skipton" AND against > 1212
Which against has 14 losses?
CREATE TABLE table_name_24 (against VARCHAR, losses VARCHAR)
SELECT against FROM table_name_24 WHERE losses = 14
What is S.K. Ho's Country?
CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_58 WHERE player = "s.k. ho"
What Player has a Place of 2?
CREATE TABLE table_name_78 (player VARCHAR, place VARCHAR)
SELECT player FROM table_name_78 WHERE place = "2"
From what Country is Gary Evans?
CREATE TABLE table_name_81 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_81 WHERE player = "gary evans"
What is the Country of the Player with a To par of +1 and a Score of 74-70-70=214?
CREATE TABLE table_name_12 (country VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT country FROM table_name_12 WHERE to_par = "+1" AND score = 74 - 70 - 70 = 214