question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
The K-1 MMA Romanex event went how many rounds?
CREATE TABLE table_name_38 (round VARCHAR, event VARCHAR)
SELECT COUNT(round) FROM table_name_38 WHERE event = "k-1 mma romanex"
What is the exited day where the celebrity is vic reeves?
CREATE TABLE table_14345690_5 (exited VARCHAR, celebrity VARCHAR)
SELECT exited FROM table_14345690_5 WHERE celebrity = "Vic Reeves"
What was the lowest number of wins for the team that scored more than 14 points and had a position of 7?
CREATE TABLE table_name_78 (wins INTEGER, position VARCHAR, scored VARCHAR)
SELECT MIN(wins) FROM table_name_78 WHERE position = 7 AND scored > 14
What was Collingwood's score at the home match against Richmond?
CREATE TABLE table_name_47 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_47 WHERE away_team = "richmond"
Name the end date for robert goebbels
CREATE TABLE table_name_50 (end_date VARCHAR, minister VARCHAR)
SELECT end_date FROM table_name_50 WHERE minister = "robert goebbels"
Which venue has a status of Five Nations and an against of 22?
CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR)
SELECT venue FROM table_name_16 WHERE status = "five nations" AND against = 22
What's the result when the Carolina Panthers were the opponent?
CREATE TABLE table_name_86 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_86 WHERE opponent = "carolina panthers"
What was the time of the driver in grid 2?
CREATE TABLE table_name_54 (time_retired VARCHAR, grid INTEGER)
SELECT time_retired FROM table_name_54 WHERE grid < 2
Which Game has a Score of 101-109 (ot)?
CREATE TABLE table_name_28 (game INTEGER, score VARCHAR)
SELECT AVG(game) FROM table_name_28 WHERE score = "101-109 (ot)"
What is the seat percentage when vote percentage is 2.4% (-8.3)?
CREATE TABLE table_name_73 (seat_percentage VARCHAR, vote_percentage VARCHAR)
SELECT seat_percentage FROM table_name_73 WHERE vote_percentage = "2.4% (-8.3)"
How many Indians were admitted in 2001?
CREATE TABLE table_1717824_3 (indians_admitted VARCHAR, year VARCHAR)
SELECT indians_admitted FROM table_1717824_3 WHERE year = 2001
Round of 11, and a Pick # larger than 14 is the highest overall pick?
CREATE TABLE table_name_64 (overall INTEGER, round VARCHAR, pick__number VARCHAR)
SELECT MAX(overall) FROM table_name_64 WHERE round = 11 AND pick__number > 14
What are the largest ethnic groups in gunaroš?
CREATE TABLE table_2562572_27 (largest_ethnic_group__2002_ VARCHAR, settlement VARCHAR)
SELECT largest_ethnic_group__2002_ FROM table_2562572_27 WHERE settlement = "Gunaroš"
Who won Bronze with Notes of 2.5km, 16controls?
CREATE TABLE table_name_31 (bronze VARCHAR, notes VARCHAR)
SELECT bronze FROM table_name_31 WHERE notes = "2.5km, 16controls"
what is the maximum norwegian americans (2000) where norwegian americans (1990) is 9170
CREATE TABLE table_1182314_5 (norwegian_americans__2000_ INTEGER, norwegian_americans__1990_ VARCHAR)
SELECT MAX(norwegian_americans__2000_) FROM table_1182314_5 WHERE norwegian_americans__1990_ = 9170
On broadcast date is 25april1970, how many people tuned in?
CREATE TABLE table_2102898_1 (viewers__in_millions_ VARCHAR, broadcast_date VARCHAR)
SELECT viewers__in_millions_ FROM table_2102898_1 WHERE broadcast_date = "25April1970"
What is the least round for the game played at Members Equity Stadium in from of 12,581 people?
CREATE TABLE table_name_50 (round INTEGER, stadium VARCHAR, attendance VARCHAR)
SELECT MIN(round) FROM table_name_50 WHERE stadium = "members equity stadium" AND attendance < 12 OFFSET 581
Name the number of score for january 12
CREATE TABLE table_27755603_8 (score VARCHAR, date VARCHAR)
SELECT COUNT(score) FROM table_27755603_8 WHERE date = "January 12"
What is the muzzle energy with grains (g) bullet weight and a max pressure of 35,000 psi?
CREATE TABLE table_name_67 (muzzle_energy VARCHAR, bullet_weight VARCHAR, max_pressure VARCHAR)
SELECT muzzle_energy FROM table_name_67 WHERE bullet_weight = "grains (g)" AND max_pressure = "35,000 psi"
When 8 is the rank what is the Saturday August 21st?
CREATE TABLE table_26986076_5 (sat_21_aug VARCHAR, rank VARCHAR)
SELECT sat_21_aug FROM table_26986076_5 WHERE rank = 8
what is the total number of rounds when method is tko (punches) and time is 0:40?
CREATE TABLE table_name_22 (round VARCHAR, method VARCHAR, time VARCHAR)
SELECT COUNT(round) FROM table_name_22 WHERE method = "tko (punches)" AND time = "0:40"
who is the opponent when the score is 7–5, 7–6 (8–6)?
CREATE TABLE table_name_86 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_86 WHERE score = "7–5, 7–6 (8–6)"
How many players were drafted by the Philadelphia Flyers?
CREATE TABLE table_2679061_11 (nationality VARCHAR, nhl_team VARCHAR)
SELECT COUNT(nationality) FROM table_2679061_11 WHERE nhl_team = "Philadelphia Flyers"
What are all the distinct details of the customers?
CREATE TABLE Customers (customer_details VARCHAR)
SELECT DISTINCT customer_details FROM Customers
What was the sum of the years, when the entrant was Scuderia Ferrari, and when the Chassis was Ferrari 312/66?
CREATE TABLE table_name_68 (year INTEGER, entrant VARCHAR, chassis VARCHAR)
SELECT SUM(year) FROM table_name_68 WHERE entrant = "scuderia ferrari" AND chassis = "ferrari 312/66"
What language is the Lyrics of the release with Catalog number 560 6111?
CREATE TABLE table_name_59 (lyrics VARCHAR, catalog_number VARCHAR)
SELECT lyrics FROM table_name_59 WHERE catalog_number = "560 6111"
What is the number of the name for number 4?
CREATE TABLE table_12803263_1 (name VARCHAR, _number VARCHAR)
SELECT COUNT(name) FROM table_12803263_1 WHERE _number = 4
What was the score on september 28?
CREATE TABLE table_name_58 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_58 WHERE date = "september 28"
Which class has a year prior to 2011 and audi r15 tdi as the chassis?
CREATE TABLE table_name_72 (class VARCHAR, year VARCHAR, chassis VARCHAR)
SELECT class FROM table_name_72 WHERE year < 2011 AND chassis = "audi r15 tdi"
In what Week was the Attendance 39,434?
CREATE TABLE table_name_78 (week VARCHAR, attendance INTEGER)
SELECT COUNT(week) FROM table_name_78 WHERE attendance < 39 OFFSET 434
What position did Roseau High School (USHS-MN) play?
CREATE TABLE table_2897457_7 (position VARCHAR, college_junior_club_team VARCHAR)
SELECT position FROM table_2897457_7 WHERE college_junior_club_team = "Roseau High School (USHS-MN)"
What is the highest Money ( £ ), when Player is "Peter Hedblom"?
CREATE TABLE table_name_95 (money___ INTEGER, player VARCHAR)
SELECT MAX(money___) AS £__ FROM table_name_95 WHERE player = "peter hedblom"
What rank does Rodney Marsh have?
CREATE TABLE table_21100348_15 (rank INTEGER, player VARCHAR)
SELECT MAX(rank) FROM table_21100348_15 WHERE player = "Rodney Marsh"
What is the longitude of Taurus?
CREATE TABLE table_name_98 (longitude_အင်္သာ VARCHAR, latin VARCHAR)
SELECT longitude_အင်္သာ FROM table_name_98 WHERE latin = "taurus"
state el canal de las estrellas where mañana es para siempre is impreuna pentru totdeauna
CREATE TABLE table_18498743_1 (el_canal_de_las_estrellas VARCHAR, mañana_es_para_siempre VARCHAR)
SELECT el_canal_de_las_estrellas FROM table_18498743_1 WHERE mañana_es_para_siempre = "Impreuna pentru totdeauna"
What was the first leg of the semi-final?
CREATE TABLE table_name_78 (first_leg VARCHAR, round VARCHAR)
SELECT first_leg FROM table_name_78 WHERE round = "semi-final"
What is the lowest overall pick for a player from Washington?
CREATE TABLE table_name_11 (overall INTEGER, college VARCHAR)
SELECT MIN(overall) FROM table_name_11 WHERE college = "washington"
Name the population 2000 census for 77 area
CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, area__km²_ VARCHAR)
SELECT population_2000_census FROM table_14986292_1 WHERE area__km²_ = "77"
What are the active pixels of the c-most model camera?
CREATE TABLE table_name_96 (active_pixels VARCHAR, model VARCHAR)
SELECT active_pixels FROM table_name_96 WHERE model = "c-most"
What was the result of the 1978 Atlanta Falcons season when the record was 1-2?
CREATE TABLE table_16710971_2 (result VARCHAR, record VARCHAR)
SELECT result FROM table_16710971_2 WHERE record = "1-2"
Name the party for hutchins g. burton
CREATE TABLE table_2668329_18 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_2668329_18 WHERE incumbent = "Hutchins G. Burton"
What is the socket for the processor with part number ADH2350IAA5DO?
CREATE TABLE table_name_27 (socket VARCHAR, part_number_s_ VARCHAR)
SELECT socket FROM table_name_27 WHERE part_number_s_ = "adh2350iaa5do"
Who wrote the episode when the director was dean white?
CREATE TABLE table_12451376_1 (writer_s_ VARCHAR, director VARCHAR)
SELECT writer_s_ FROM table_12451376_1 WHERE director = "Dean White"
Which district shows a first elected of 1980?
CREATE TABLE table_1341598_11 (district VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1341598_11 WHERE first_elected = 1980
What opponent had an attendance of 12,508 during weeks 1 through 8?
CREATE TABLE table_name_76 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_76 WHERE week < 8 AND attendance = "12,508"
Which Total has a Gold smaller than 0?
CREATE TABLE table_name_29 (total INTEGER, gold INTEGER)
SELECT SUM(total) FROM table_name_29 WHERE gold < 0
How many rounds were 2r?
CREATE TABLE table_11326124_3 (result VARCHAR, round VARCHAR)
SELECT COUNT(result) FROM table_11326124_3 WHERE round = "2R"
Who had the most rebounds on January 3?
CREATE TABLE table_name_7 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_name_7 WHERE date = "january 3"
Which driver has less than 37 wins and at 14.12%?
CREATE TABLE table_name_64 (entries INTEGER, wins VARCHAR, percentage VARCHAR)
SELECT AVG(entries) FROM table_name_64 WHERE wins < 37 AND percentage = "14.12%"
Which Category in Black has a Brown of 6,54%?
CREATE TABLE table_name_61 (black VARCHAR, brown VARCHAR)
SELECT black FROM table_name_61 WHERE brown = "6,54%"
How many air dates were there when Morgan was eliminated?
CREATE TABLE table_1893276_2 (air_date VARCHAR, eliminated VARCHAR)
SELECT COUNT(air_date) FROM table_1893276_2 WHERE eliminated = "Morgan"
What is the average building year for Superb?
CREATE TABLE table_name_75 (built INTEGER, name VARCHAR)
SELECT AVG(built) FROM table_name_75 WHERE name = "superb"
Who wrote the episode that was directed by dan lerner?
CREATE TABLE table_name_12 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_name_12 WHERE directed_by = "dan lerner"
What is the smallest number of European Parliament sets when the international affiliation is global greens, egp?
CREATE TABLE table_158282_1 (european_parliament_seats INTEGER, international_affiliation VARCHAR)
SELECT MIN(european_parliament_seats) FROM table_158282_1 WHERE international_affiliation = "Global Greens, EGP"
What is the plural if the singular is awu?
CREATE TABLE table_name_60 (plural VARCHAR, singular VARCHAR)
SELECT plural FROM table_name_60 WHERE singular = "awu"
What is the name of the gun with a shoulder that measures 10.688 (.420)?
CREATE TABLE table_name_45 (name VARCHAR, shoulder VARCHAR)
SELECT name FROM table_name_45 WHERE shoulder = "10.688 (.420)"
What was the score against fabrice martin?
CREATE TABLE table_name_66 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_66 WHERE opponent = "fabrice martin"
What is the Game # that scored 87-92?
CREATE TABLE table_name_46 (game INTEGER, score VARCHAR)
SELECT SUM(game) FROM table_name_46 WHERE score = "87-92"
What is the publication the observer music monthly highest year?
CREATE TABLE table_name_10 (year INTEGER, publication VARCHAR)
SELECT MAX(year) FROM table_name_10 WHERE publication = "the observer music monthly"
What teams used a track 3:29 long?
CREATE TABLE table_name_51 (team_s_ VARCHAR, time VARCHAR)
SELECT team_s_ FROM table_name_51 WHERE time = "3:29"
Tell me the number of weeks for bye
CREATE TABLE table_name_5 (week VARCHAR, date VARCHAR)
SELECT COUNT(week) FROM table_name_5 WHERE date = "bye"
What is the socket type for the processor with a multiplier 1 of 11.5x?
CREATE TABLE table_name_66 (socket VARCHAR, multiplier_1 VARCHAR)
SELECT socket FROM table_name_66 WHERE multiplier_1 = "11.5x"
How tall is Maksim Botin?
CREATE TABLE table_14038363_1 (height VARCHAR, player VARCHAR)
SELECT height FROM table_14038363_1 WHERE player = "Maksim Botin"
How many distinct birth places are there?
CREATE TABLE people (Birth_Place VARCHAR)
SELECT COUNT(DISTINCT Birth_Place) FROM people
Who was the co-driver in 1970 for the race of Targa Florio?
CREATE TABLE table_name_46 (co_driver VARCHAR, year VARCHAR, race VARCHAR)
SELECT co_driver FROM table_name_46 WHERE year = 1970 AND race = "targa florio"
What's the lowest Year with a World Rank of 5th, with a Result greater than 20.31?
CREATE TABLE table_name_65 (year INTEGER, world_rank VARCHAR, result VARCHAR)
SELECT MIN(year) FROM table_name_65 WHERE world_rank = "5th" AND result > 20.31
The episode with the production code E0208 is directed by who?
CREATE TABLE table_2618152_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT directed_by FROM table_2618152_1 WHERE production_code = "E0208"
The numbers 801-812 are in which country?
CREATE TABLE table_2351952_1 (country VARCHAR, numbers VARCHAR)
SELECT country FROM table_2351952_1 WHERE numbers = "801-812"
Name the league for 1996
CREATE TABLE table_name_90 (league VARCHAR, year VARCHAR)
SELECT league FROM table_name_90 WHERE year = "1996"
What was date was the attendance larger than 875 against Platense?
CREATE TABLE table_name_26 (date VARCHAR, attendance VARCHAR, home VARCHAR)
SELECT date FROM table_name_26 WHERE attendance > 875 AND home = "platense"
How many people whose age is greater 30 and job is engineer?
CREATE TABLE Person (age VARCHAR, job VARCHAR)
SELECT COUNT(*) FROM Person WHERE age > 30 AND job = 'engineer'
What is the score vs. Protoss when the score vs. Terran is 10 wins?
CREATE TABLE table_name_97 (vs_protoss VARCHAR, vs_terran VARCHAR)
SELECT vs_protoss FROM table_name_97 WHERE vs_terran = "10 wins"
What was the score for Geelong?
CREATE TABLE table_name_84 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_84 WHERE home_team = "geelong"
What was Buck Pierce's highest average when there were less than 2 fumbles?
CREATE TABLE table_name_41 (avg INTEGER, player VARCHAR, fumbles VARCHAR)
SELECT MAX(avg) FROM table_name_41 WHERE player = "buck pierce" AND fumbles < 2
If fitzroy was the home team what date did they play?
CREATE TABLE table_name_48 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_48 WHERE home_team = "fitzroy"
Which week had a theme of Heroes?
CREATE TABLE table_name_47 (week VARCHAR, theme VARCHAR)
SELECT week FROM table_name_47 WHERE theme = "heroes"
What is the lowest rank of the team with 0 bronze, 1 silver, and more than 0 gold?
CREATE TABLE table_name_69 (rank INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT MIN(rank) FROM table_name_69 WHERE bronze = 0 AND silver = 1 AND gold > 0
what's the winner with purse( $ ) value of bigger than 964017.2297960471 and date value of may 28
CREATE TABLE table_11621915_1 (winner VARCHAR, purse__$__ VARCHAR, date VARCHAR)
SELECT winner FROM table_11621915_1 WHERE purse__$__ > 964017.2297960471 AND date = "May 28"
What was the date of the finale for the season that premiered on September 22, 1976?
CREATE TABLE table_name_72 (finale VARCHAR, premiere VARCHAR)
SELECT finale FROM table_name_72 WHERE premiere = "september 22, 1976"
what is the highest platform number when the frequency (per hour) is 4, the operator is london overground and the destination is west croydon?
CREATE TABLE table_name_32 (platform INTEGER, destination VARCHAR, frequency__per_hour_ VARCHAR, operator VARCHAR)
SELECT MAX(platform) FROM table_name_32 WHERE frequency__per_hour_ = 4 AND operator = "london overground" AND destination = "west croydon"
On 15/04/07 in the competition Super League XII, what was the score?
CREATE TABLE table_name_94 (score VARCHAR, competition VARCHAR, date VARCHAR)
SELECT score FROM table_name_94 WHERE competition = "super league xii" AND date = "15/04/07"
how many turns were completed to make a mean of 34.0
CREATE TABLE table_1354805_6 (number_of_dances VARCHAR, average VARCHAR)
SELECT COUNT(number_of_dances) FROM table_1354805_6 WHERE average = "34.0"
What was the oilers record for the game on November 27 when the Edmonton oilers were playing at home and the Chicago Blackhawks were the visiting team?
CREATE TABLE table_name_85 (record VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)
SELECT record FROM table_name_85 WHERE home = "edmonton oilers" AND visitor = "chicago blackhawks" AND date = "november 27"
What country is Lee Trevino from?
CREATE TABLE table_name_41 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_41 WHERE player = "lee trevino"
What is the sum of To par when the Finish is t11?
CREATE TABLE table_name_59 (to_par INTEGER, finish VARCHAR)
SELECT SUM(to_par) FROM table_name_59 WHERE finish = "t11"
Name the 1991-1992 for river plate
CREATE TABLE table_14390413_1 (team VARCHAR)
SELECT 1991 AS _1992 FROM table_14390413_1 WHERE team = "River Plate"
What event was a loss in 5:00?
CREATE TABLE table_name_52 (event VARCHAR, res VARCHAR, time VARCHAR)
SELECT event FROM table_name_52 WHERE res = "loss" AND time = "5:00"
Which date had less than 3 goals and a result of (w) 2-0?
CREATE TABLE table_name_23 (date VARCHAR, goals VARCHAR, result VARCHAR)
SELECT date FROM table_name_23 WHERE goals < 3 AND result = "(w) 2-0"
Which position's round was 3 when pick was 70?
CREATE TABLE table_name_29 (position VARCHAR, round VARCHAR, pick VARCHAR)
SELECT position FROM table_name_29 WHERE round = "3" AND pick = "70"
What date was the game in Minneapolis?
CREATE TABLE table_name_21 (date VARCHAR, city VARCHAR)
SELECT date FROM table_name_21 WHERE city = "minneapolis"
Name the position for eifelland racing
CREATE TABLE table_25794532_1 (position VARCHAR, team VARCHAR)
SELECT position FROM table_25794532_1 WHERE team = "Eifelland Racing"
How many wins are with Dodge vehicles?
CREATE TABLE table_2241841_1 (miles__km_ VARCHAR, manufacturer VARCHAR)
SELECT COUNT(miles__km_) FROM table_2241841_1 WHERE manufacturer = "Dodge"
What's the broadcasting hours of NBT?
CREATE TABLE table_name_47 (broadcasting_hours VARCHAR, network VARCHAR)
SELECT broadcasting_hours FROM table_name_47 WHERE network = "nbt"
What venue held that game against the Queens Park Rangers?
CREATE TABLE table_name_32 (venue VARCHAR, opponents VARCHAR)
SELECT venue FROM table_name_32 WHERE opponents = "queens park rangers"
What is the highest 2011 population when the ethnic group is asian or asian british: asian other?
CREATE TABLE table_282413_3 (ethnic_group VARCHAR)
SELECT MAX(2011 AS _population) FROM table_282413_3 WHERE ethnic_group = "Asian or Asian British: Asian Other"
Who has the high points when 53-27 is the record?
CREATE TABLE table_23284271_10 (high_points VARCHAR, record VARCHAR)
SELECT high_points FROM table_23284271_10 WHERE record = "53-27"
Find the grade studying in room 105.
CREATE TABLE list (grade VARCHAR, classroom VARCHAR)
SELECT DISTINCT grade FROM list WHERE classroom = 105
What was the result in round qf?
CREATE TABLE table_name_56 (result VARCHAR, round VARCHAR)
SELECT result FROM table_name_56 WHERE round = "qf"
Name the qual for year of 1960
CREATE TABLE table_name_25 (qual VARCHAR, year VARCHAR)
SELECT qual FROM table_name_25 WHERE year = "1960"
Who was the away team for the match with a home team of Citizen Team A?
CREATE TABLE table_name_78 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_78 WHERE home_team = "citizen team a"