answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT icelandic FROM table_name_47 WHERE norwegian__nynorsk_ = "kvitt/kvit"
CREATE TABLE table_name_47 (icelandic VARCHAR, norwegian__nynorsk_ VARCHAR)
Which Icelandic has a Norwegian (nynorsk) of kvitt/kvit?
SELECT faroese FROM table_name_83 WHERE english = "white"
CREATE TABLE table_name_83 (faroese VARCHAR, english VARCHAR)
Which Faroese has an English of white?
SELECT norwegian__nynorsk_ FROM table_name_12 WHERE danish = "farvel"
CREATE TABLE table_name_12 (norwegian__nynorsk_ VARCHAR, danish VARCHAR)
Which Norwegian (nynorsk) has a Danish of farvel?
SELECT english FROM table_name_69 WHERE danish = "rødt/rød"
CREATE TABLE table_name_69 (english VARCHAR, danish VARCHAR)
Which English has a Danish of rødt/rød?
SELECT congress FROM table_name_97 WHERE _number_of_cosponsors = 44
CREATE TABLE table_name_97 (congress VARCHAR, _number_of_cosponsors VARCHAR)
What number of Congress has 44 cosponsors?
SELECT sponsor FROM table_name_43 WHERE date_introduced = "april 22, 2004"
CREATE TABLE table_name_43 (sponsor VARCHAR, date_introduced VARCHAR)
Who was the sponsor on April 22, 2004?
SELECT score FROM table_name_98 WHERE home = "new york rangers"
CREATE TABLE table_name_98 (score VARCHAR, home VARCHAR)
What is the score of the game when the New York Rangers were the home team?
SELECT result FROM table_name_26 WHERE date = "8 october 1961"
CREATE TABLE table_name_26 (result VARCHAR, date VARCHAR)
What was the result on 8 October 1961?
SELECT venue FROM table_name_33 WHERE date = "27 april 1964"
CREATE TABLE table_name_33 (venue VARCHAR, date VARCHAR)
What was the venue of the game on 27 April 1964?
SELECT home_team AS score FROM table_name_1 WHERE away_team = "hawthorn"
CREATE TABLE table_name_1 (home_team VARCHAR, away_team VARCHAR)
What is the home team score when the away team was Hawthorn?
SELECT score FROM table_name_56 WHERE opponent_in_the_final = "divij sharan"
CREATE TABLE table_name_56 (score VARCHAR, opponent_in_the_final VARCHAR)
What was the score of the game against Divij Sharan?
SELECT score FROM table_name_85 WHERE surface = "hard" AND opponent_in_the_final = "peter gojowczyk"
CREATE TABLE table_name_85 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
What was the score of the match that was a played on a hard surface against Peter Gojowczyk?
SELECT COUNT(attendance) FROM table_name_59 WHERE record = "43-34"
CREATE TABLE table_name_59 (attendance VARCHAR, record VARCHAR)
How many attended the game with a record of 43-34?
SELECT opponents FROM table_name_81 WHERE partner = "michelle strebel"
CREATE TABLE table_name_81 (opponents VARCHAR, partner VARCHAR)
Who was Manuela Maleeva opponent when she played a match partnered with michelle strebel?
SELECT AVG(points) FROM table_name_61 WHERE pct__percentage > 0.685
CREATE TABLE table_name_61 (points INTEGER, pct__percentage INTEGER)
When the percent is larger than 0.685, what is the average number of points scored?
SELECT MIN(pct__percentage) FROM table_name_90 WHERE points < 37
CREATE TABLE table_name_90 (pct__percentage INTEGER, points INTEGER)
When less than 37 points are scored, what's the lowest Pct % found?
SELECT round FROM table_name_82 WHERE event = "rings: king of kings 2000 block a" AND record = "6-1"
CREATE TABLE table_name_82 (round VARCHAR, event VARCHAR, record VARCHAR)
How many rounds did the event rings: king of kings 2000 block a have with a record of 6-1?
SELECT time FROM table_name_72 WHERE event = "adrenaline mma 3"
CREATE TABLE table_name_72 (time VARCHAR, event VARCHAR)
How long was the fight 'adrenaline mma 3'?
SELECT record FROM table_name_60 WHERE opponent = "john salter"
CREATE TABLE table_name_60 (record VARCHAR, opponent VARCHAR)
What was roberto travern's record when he fought against john salter?
SELECT away_team AS score FROM table_name_16 WHERE venue = "mcg"
CREATE TABLE table_name_16 (away_team VARCHAR, venue VARCHAR)
What was the score of the away team at the MCG?
SELECT constructor FROM table_name_1 WHERE grid > 20 AND time_retired = "accident"
CREATE TABLE table_name_1 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)
Who constructed the car with a grid larger than 20 that got in an accident?
SELECT position FROM table_name_6 WHERE cfl_team = "montreal alouettes (via edmonton)"
CREATE TABLE table_name_6 (position VARCHAR, cfl_team VARCHAR)
Which Position has a CFL Team of montreal alouettes (via edmonton)?
SELECT player FROM table_name_23 WHERE cfl_team = "montreal alouettes (via hamilton via winnipeg)"
CREATE TABLE table_name_23 (player VARCHAR, cfl_team VARCHAR)
Which Player has a CFL Team of montreal alouettes (via hamilton via winnipeg)?
SELECT position FROM table_name_35 WHERE player = "patrick macdonald"
CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR)
Which Position has a Player of patrick macdonald?
SELECT SUM(series) FROM table_name_54 WHERE sixth_place = "joan tena"
CREATE TABLE table_name_54 (series INTEGER, sixth_place VARCHAR)
What series had Joan Tena in sixth place?
SELECT sixth_place FROM table_name_34 WHERE series = 7
CREATE TABLE table_name_34 (sixth_place VARCHAR, series VARCHAR)
Who was in sixth place in series 7?
SELECT sixth_place FROM table_name_19 WHERE fifth_place = "hugo salazar"
CREATE TABLE table_name_19 (sixth_place VARCHAR, fifth_place VARCHAR)
Who was sixth place when Hugo Salazar was fifth place?
SELECT third_place FROM table_name_78 WHERE fifth_place = "fran dieli"
CREATE TABLE table_name_78 (third_place VARCHAR, fifth_place VARCHAR)
Who was third place when Fran Dieli was fifth place?
SELECT order_and_title FROM table_name_88 WHERE elevated = "1261, december 17" AND faction = "angevin"
CREATE TABLE table_name_88 (order_and_title VARCHAR, elevated VARCHAR, faction VARCHAR)
What is the Order and Title with an Elevated with 1261, december 17, and a Faction with angevin?
SELECT elector FROM table_name_5 WHERE nationality = "roman" AND elevator = "urban iv" AND elevated = "1261, december 17"
CREATE TABLE table_name_5 (elector VARCHAR, elevated VARCHAR, nationality VARCHAR, elevator VARCHAR)
What is the Elector with a Nationality with roman, and an Elevator of urban iv, and an Elevated with 1261, december 17?
SELECT nationality FROM table_name_36 WHERE elector = "bertrand de saint-martin"
CREATE TABLE table_name_36 (nationality VARCHAR, elector VARCHAR)
What is the Nationality with an Elector with bertrand de saint-martin?
SELECT order_and_title FROM table_name_6 WHERE nationality = "roman" AND elector = "matteo orsini rosso"
CREATE TABLE table_name_6 (order_and_title VARCHAR, nationality VARCHAR, elector VARCHAR)
What is the Order and Title with a Nationality with roman, and an Elector with matteo orsini rosso?
SELECT elector FROM table_name_56 WHERE faction = "roman" AND elevated = "1244, may 28"
CREATE TABLE table_name_56 (elector VARCHAR, faction VARCHAR, elevated VARCHAR)
What is the Elector with a Faction of roman, and an Elevated with 1244, may 28?
SELECT mult FROM table_name_73 WHERE release_date = "q4 2007" AND model_number = "pentium dual-core t2310"
CREATE TABLE table_name_73 (mult VARCHAR, release_date VARCHAR, model_number VARCHAR)
What is the mult value of the microprocessor with a release date q4 2007 and model number pentium dual-core t2310?
SELECT l2_cache FROM table_name_91 WHERE model_number = "pentium dual-core t3400"
CREATE TABLE table_name_91 (l2_cache VARCHAR, model_number VARCHAR)
What is the L2 cache of the microprocessor with model number pentium dual-core t3400?
SELECT release_price___usd__ FROM table_name_32 WHERE model_number = "pentium dual-core t2330"
CREATE TABLE table_name_32 (release_price___usd__ VARCHAR, model_number VARCHAR)
What is the release price (USD) of the microprocessor with a model number pentium dual-core t2330?
SELECT date FROM table_name_35 WHERE fastest_lap = "patrick tambay"
CREATE TABLE table_name_35 (date VARCHAR, fastest_lap VARCHAR)
What day did Patrick Tambay have the fastest lap?
SELECT pole_position FROM table_name_41 WHERE location = "spa-francorchamps"
CREATE TABLE table_name_41 (pole_position VARCHAR, location VARCHAR)
Who held the pole position in SPA-Francorchamps?
SELECT constructor FROM table_name_24 WHERE location = "long beach"
CREATE TABLE table_name_24 (constructor VARCHAR, location VARCHAR)
Who was the Long Beach constructor?
SELECT home_team AS score FROM table_name_53 WHERE home_team = "st kilda"
CREATE TABLE table_name_53 (home_team VARCHAR)
What did St Kilda score when they were the home team?
SELECT home_team AS score FROM table_name_6 WHERE away_team = "south melbourne"
CREATE TABLE table_name_6 (home_team VARCHAR, away_team VARCHAR)
What did the home team score when South Melbourne was the away team?
SELECT leading_scorer FROM table_name_13 WHERE date = "april 12, 2008"
CREATE TABLE table_name_13 (leading_scorer VARCHAR, date VARCHAR)
Name the leading scorer for april 12, 2008
SELECT home_team AS score FROM table_name_52 WHERE venue = "brunswick street oval"
CREATE TABLE table_name_52 (home_team VARCHAR, venue VARCHAR)
What was the score for the home team that played at Brunswick Street Oval?
SELECT name FROM table_name_49 WHERE seasons = "1981" AND order > 807
CREATE TABLE table_name_49 (name VARCHAR, seasons VARCHAR, order VARCHAR)
what is the name for seasons 1981 and an order more than 807?
SELECT away_team FROM table_name_63 WHERE venue = "lake oval"
CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)
What away team played in Lake Oval?
SELECT tournament FROM table_name_30 WHERE 2009 = "11"
CREATE TABLE table_name_30 (tournament VARCHAR)
Which tournament was on 2009 with 11?
SELECT driver FROM table_name_57 WHERE laps = 59 AND grid = 11
CREATE TABLE table_name_57 (driver VARCHAR, laps VARCHAR, grid VARCHAR)
What driver went 59 laps on grid 11?
SELECT driver FROM table_name_38 WHERE grid = "22"
CREATE TABLE table_name_38 (driver VARCHAR, grid VARCHAR)
Which driver has a grid value of 22?
SELECT time_retired FROM table_name_29 WHERE driver = "jean alesi"
CREATE TABLE table_name_29 (time_retired VARCHAR, driver VARCHAR)
What is the value of time/retired for Jean Alesi?
SELECT laps FROM table_name_53 WHERE time_retired = "electrical" AND driver = "rubens barrichello"
CREATE TABLE table_name_53 (laps VARCHAR, time_retired VARCHAR, driver VARCHAR)
When the time/retired is electrical how many laps did Rubens Barrichello have?
SELECT laps FROM table_name_73 WHERE driver = "eddie irvine"
CREATE TABLE table_name_73 (laps VARCHAR, driver VARCHAR)
How many laps did Eddie Irvine have?
SELECT score FROM table_name_9 WHERE home = "hornets" AND visitor = "clippers"
CREATE TABLE table_name_9 (score VARCHAR, home VARCHAR, visitor VARCHAR)
In the game where the Hornets were the home team and Clippers the visiting team, what is the score?
SELECT finish FROM table_name_13 WHERE qual = "99.550"
CREATE TABLE table_name_13 (finish VARCHAR, qual VARCHAR)
Which finish has a 99.550 Qual?
SELECT qual FROM table_name_4 WHERE laps < 200 AND start = "11"
CREATE TABLE table_name_4 (qual VARCHAR, laps VARCHAR, start VARCHAR)
Which Qual with laps less than 200 and an 11 start?
SELECT rank FROM table_name_78 WHERE start = "totals"
CREATE TABLE table_name_78 (rank VARCHAR, start VARCHAR)
Which rank is the start of totals?
SELECT year FROM table_name_31 WHERE laps = 112
CREATE TABLE table_name_31 (year VARCHAR, laps VARCHAR)
Which year has 112 laps?
SELECT surface FROM table_name_47 WHERE score_in_the_final = "0–6, 4–6"
CREATE TABLE table_name_47 (surface VARCHAR, score_in_the_final VARCHAR)
On what surface was the score in the final 0–6, 4–6?
SELECT score_in_the_final FROM table_name_82 WHERE tournament = "$25,000 glasgow, great britain"
CREATE TABLE table_name_82 (score_in_the_final VARCHAR, tournament VARCHAR)
What score in the final had a tournament of $25,000 Glasgow, Great Britain?
SELECT surface FROM table_name_77 WHERE score_in_the_final = "4–6, 3–6"
CREATE TABLE table_name_77 (surface VARCHAR, score_in_the_final VARCHAR)
Which surface has a score in the final of 4–6, 3–6?
SELECT COUNT(silver) FROM table_name_44 WHERE nation = "united states" AND total > 1
CREATE TABLE table_name_44 (silver VARCHAR, nation VARCHAR, total VARCHAR)
how many times is the nation listed as united states with the total more than 1?
SELECT MIN(total) FROM table_name_30 WHERE rank < 2 AND bronze > 0
CREATE TABLE table_name_30 (total INTEGER, rank VARCHAR, bronze VARCHAR)
what is the lowest total when the rank is less than 2 and bronze is more than 0?
SELECT nation FROM table_name_62 WHERE total = 1 AND bronze < 1 AND rank = 3
CREATE TABLE table_name_62 (nation VARCHAR, rank VARCHAR, total VARCHAR, bronze VARCHAR)
what is the nation with a total of 1, bronze smaller than 1 and a rank of 3?
SELECT SUM(rank) FROM table_name_6 WHERE silver < 0
CREATE TABLE table_name_6 (rank INTEGER, silver INTEGER)
what is the rank when silver is less than 0?
SELECT AVG(silver) FROM table_name_6 WHERE gold = 2 AND rank > 1
CREATE TABLE table_name_6 (silver INTEGER, gold VARCHAR, rank VARCHAR)
what is the amount of silver when gold is 2 and the rank is more than 1?
SELECT home FROM table_name_9 WHERE decision = "kolzig" AND date = "november 5"
CREATE TABLE table_name_9 (home VARCHAR, decision VARCHAR, date VARCHAR)
Which home has a Decision of kolzig, and a Date of november 5?
SELECT score FROM table_name_29 WHERE decision = "johnson"
CREATE TABLE table_name_29 (score VARCHAR, decision VARCHAR)
Which score has a Decision of johnson?
SELECT date FROM table_name_78 WHERE home = "washington" AND visitor = "florida" AND record = "8-15-2"
CREATE TABLE table_name_78 (date VARCHAR, record VARCHAR, home VARCHAR, visitor VARCHAR)
Which date has a Home of washington, a Visitor of florida, and a Record of 8-15-2?
SELECT SUM(attendance) FROM table_name_69 WHERE record = "5-9-0"
CREATE TABLE table_name_69 (attendance INTEGER, record VARCHAR)
What is the total of attendance with a Record of 5-9-0?
SELECT score FROM table_name_2 WHERE date = "november 2"
CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)
Which score has a Date of november 2?
SELECT length FROM table_name_29 WHERE junctions = "sh 359 us 59" AND route_name = "fm 2895"
CREATE TABLE table_name_29 (length VARCHAR, junctions VARCHAR, route_name VARCHAR)
What's the length of route FM 2895 with junctions sh 359 us 59?
SELECT termini FROM table_name_2 WHERE junctions = "i-35 fm 3338 sh 255"
CREATE TABLE table_name_2 (termini VARCHAR, junctions VARCHAR)
What's the termini of the route with junctions of i-35 fm 3338 sh 255?
SELECT junctions FROM table_name_98 WHERE termini = "aguilares, texas us 59"
CREATE TABLE table_name_98 (junctions VARCHAR, termini VARCHAR)
What are the junctions of the route with termini aguilares, texas us 59?
SELECT route_name FROM table_name_49 WHERE termini = "fm 1472 sh 255"
CREATE TABLE table_name_49 (route_name VARCHAR, termini VARCHAR)
What route has termini of fm 1472 sh 255?
SELECT termini FROM table_name_40 WHERE population_area = "aguilares"
CREATE TABLE table_name_40 (termini VARCHAR, population_area VARCHAR)
What termini does the route with a population Area of aguilares have?
SELECT length FROM table_name_99 WHERE junctions = "ur 1472 sh 255"
CREATE TABLE table_name_99 (length VARCHAR, junctions VARCHAR)
What's the length of the route with junctions of ur 1472 sh 255?
SELECT champion FROM table_name_47 WHERE location = "morrisville, nc" AND semi_finalist__number2 = "clemson"
CREATE TABLE table_name_47 (champion VARCHAR, location VARCHAR, semi_finalist__number2 VARCHAR)
Which champion was from the location of Morrisville, NC, and whose SemiFinalist #2 of Clemson?
SELECT champion FROM table_name_78 WHERE score = "12-1"
CREATE TABLE table_name_78 (champion VARCHAR, score VARCHAR)
Which champion got a score of 12-1?
SELECT champion FROM table_name_36 WHERE year = 2005 AND semi_finalist__number1 = "western carolina"
CREATE TABLE table_name_36 (champion VARCHAR, year VARCHAR, semi_finalist__number1 VARCHAR)
Who was champion in 2005 where the semi-finalist was #1 in western Carolina?
SELECT runner_up FROM table_name_66 WHERE year < 2006 AND champion = "elon"
CREATE TABLE table_name_66 (runner_up VARCHAR, year VARCHAR, champion VARCHAR)
Which runner-up placed in a year prior to 2006 and whose Champion was Elon?
SELECT wheel_arrangement FROM table_name_5 WHERE builder’s_model = "cf-16-4" AND total_produced = 16
CREATE TABLE table_name_5 (wheel_arrangement VARCHAR, builder’s_model VARCHAR, total_produced VARCHAR)
What is the wheel arrangement of cf-16-4, and 16 produced?
SELECT power_output FROM table_name_88 WHERE wheel_arrangement = "b-b" AND build_date = "1952"
CREATE TABLE table_name_88 (power_output VARCHAR, wheel_arrangement VARCHAR, build_date VARCHAR)
What is the power of b-b wheel arrangement, built in 1952?
SELECT build_date FROM table_name_36 WHERE service = "freight" AND wheel_arrangement = "c-c"
CREATE TABLE table_name_36 (build_date VARCHAR, service VARCHAR, wheel_arrangement VARCHAR)
When was the build date for c-c wheel arrangement and freight service?
SELECT build_date FROM table_name_14 WHERE prr_class = "ff20" AND builder’s_model = "erie built"
CREATE TABLE table_name_14 (build_date VARCHAR, prr_class VARCHAR, builder’s_model VARCHAR)
When was the build date for ff20 PRR class and erie built builder's model?
SELECT AVG(debut) FROM table_name_33 WHERE player = "radoslava topalova" AND years_played < 2
CREATE TABLE table_name_33 (debut INTEGER, player VARCHAR, years_played VARCHAR)
what is the debut when the play er is radoslava topalova and the years played is less than 2?
SELECT average_attendance FROM table_name_46 WHERE season = "2011" AND games < 519 AND _number_of_teams > 14 AND sport = "association football"
CREATE TABLE table_name_46 (average_attendance VARCHAR, sport VARCHAR, _number_of_teams VARCHAR, season VARCHAR, games VARCHAR)
What was the average attendance of the 2011 season that had games smaller than 519 with several teams bigger than 14 that were also part of the sport of association football?
SELECT SUM(average_attendance) FROM table_name_11 WHERE games = 1311
CREATE TABLE table_name_11 (average_attendance INTEGER, games VARCHAR)
What was the total number of average attendance for games of 1311?
SELECT season FROM table_name_72 WHERE _number_of_teams > 14 AND league = "super rugby"
CREATE TABLE table_name_72 (season VARCHAR, _number_of_teams VARCHAR, league VARCHAR)
When was the season that had more teams larger than 14 in the super rugby league?
SELECT label FROM table_name_96 WHERE catalog__number = "83061-2"
CREATE TABLE table_name_96 (label VARCHAR, catalog__number VARCHAR)
What is the label for the album with a catalog number of 83061-2?
SELECT catalog__number FROM table_name_36 WHERE region = "united kingdom"
CREATE TABLE table_name_36 (catalog__number VARCHAR, region VARCHAR)
What is the catalog number of the album whose region is the United Kingdom?
SELECT region FROM table_name_60 WHERE catalog__number = "7567-83061-2"
CREATE TABLE table_name_60 (region VARCHAR, catalog__number VARCHAR)
What is the region for the album with a catalog number of 7567-83061-2?
SELECT label FROM table_name_84 WHERE catalog__number = "83061-4"
CREATE TABLE table_name_84 (label VARCHAR, catalog__number VARCHAR)
What is the label for the album with a catalog number of 83061-4?
SELECT catalog__number FROM table_name_8 WHERE label = "atlantic records" AND region = "united states"
CREATE TABLE table_name_8 (catalog__number VARCHAR, label VARCHAR, region VARCHAR)
What is the catalog number of the album whose label is Atlantic Records and region is the United States?
SELECT school_club_team FROM table_name_78 WHERE position = "center" AND player = "rafael araújo"
CREATE TABLE table_name_78 (school_club_team VARCHAR, position VARCHAR, player VARCHAR)
What school/club team did the center Rafael Araújo play for?
SELECT nationality FROM table_name_53 WHERE position = "guard" AND school_club_team = "florida international"
CREATE TABLE table_name_53 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)
What is the nationality of the guard who played for Florida International?
SELECT player FROM table_name_83 WHERE position = "guard/forward"
CREATE TABLE table_name_83 (player VARCHAR, position VARCHAR)
What player had the position guard/forward?
SELECT driver FROM table_name_62 WHERE laps = 45
CREATE TABLE table_name_62 (driver VARCHAR, laps VARCHAR)
Who is the driver for laps of 45
SELECT visitor FROM table_name_90 WHERE date = "december 17"
CREATE TABLE table_name_90 (visitor VARCHAR, date VARCHAR)
Who was the visiting team on December 17?
SELECT COUNT(attendance) FROM table_name_31 WHERE visitor = "miami" AND home = "washington"
CREATE TABLE table_name_31 (attendance VARCHAR, visitor VARCHAR, home VARCHAR)
How many people were at Washington's home game against Miami?
SELECT home FROM table_name_63 WHERE visitor = "minnesota"
CREATE TABLE table_name_63 (home VARCHAR, visitor VARCHAR)
Who was the home team that played against the visiting team Minnesota?
SELECT COUNT(attendance) FROM table_name_17 WHERE record = "17-7"
CREATE TABLE table_name_17 (attendance VARCHAR, record VARCHAR)
What was total attendance on the day they went 17-7?