question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
If second is Sergey Sirotkin, what is the third name? | CREATE TABLE table_25563779_4 (third VARCHAR, second VARCHAR) | SELECT third FROM table_25563779_4 WHERE second = "Sergey Sirotkin" |
If the third name is Bruno Bonifacio, what is the champion? | CREATE TABLE table_25563779_4 (champion VARCHAR, third VARCHAR) | SELECT champion FROM table_25563779_4 WHERE third = "Bruno Bonifacio" |
Who is the champion if the national trophy/rookie is not held? | CREATE TABLE table_25563779_4 (champion VARCHAR, national_trophy_rookie VARCHAR) | SELECT champion FROM table_25563779_4 WHERE national_trophy_rookie = "not held" |
If the national trophy/rookie is Simone Iaquinta, what is the season total number? | CREATE TABLE table_25563779_4 (season VARCHAR, national_trophy_rookie VARCHAR) | SELECT COUNT(season) FROM table_25563779_4 WHERE national_trophy_rookie = "Simone Iaquinta" |
If the national trophy/rookie is Gerrard Barrabeig, what is the name of the second? | CREATE TABLE table_25563779_4 (second VARCHAR, national_trophy_rookie VARCHAR) | SELECT second FROM table_25563779_4 WHERE national_trophy_rookie = "Gerrard Barrabeig" |
What was the location when the winning driver was Nathanaël Berthon? | CREATE TABLE table_25572068_1 (location VARCHAR, winning_driver VARCHAR) | SELECT location FROM table_25572068_1 WHERE winning_driver = "Nathanaël Berthon" |
Who was the winning driver in the FR2.0 11 series? | CREATE TABLE table_25572068_1 (winning_driver VARCHAR, series VARCHAR) | SELECT winning_driver FROM table_25572068_1 WHERE series = "FR2.0 11" |
What circuit was the FR3.5 11 series on? | CREATE TABLE table_25572068_1 (circuit VARCHAR, series VARCHAR) | SELECT circuit FROM table_25572068_1 WHERE series = "FR3.5 11" |
When was the F4 7 series? | CREATE TABLE table_25572068_1 (date VARCHAR, series VARCHAR) | SELECT date FROM table_25572068_1 WHERE series = "F4 7" |
In what series was TDS Racing the winning team on 9 October? | CREATE TABLE table_25572068_1 (series VARCHAR, winning_team VARCHAR, date VARCHAR) | SELECT series FROM table_25572068_1 WHERE winning_team = "TDS Racing" AND date = "9 October" |
What were the LOA metres for the yacht ichi ban? | CREATE TABLE table_25594271_2 (loa__metres_ VARCHAR, yacht VARCHAR) | SELECT loa__metres_ FROM table_25594271_2 WHERE yacht = "Ichi Ban" |
How many LOA metres were there when the skipper is lou abrahams? | CREATE TABLE table_25594271_2 (loa__metres_ VARCHAR, skipper VARCHAR) | SELECT loa__metres_ FROM table_25594271_2 WHERE skipper = "Lou Abrahams" |
What is the position for sail number aus 03? | CREATE TABLE table_25594271_2 (position INTEGER, sail_number VARCHAR) | SELECT MIN(position) FROM table_25594271_2 WHERE sail_number = "AUS 03" |
What yacht had LOA Metres of 13.34? | CREATE TABLE table_25594271_2 (yacht VARCHAR, loa__metres_ VARCHAR) | SELECT yacht FROM table_25594271_2 WHERE loa__metres_ = "13.34" |
How many episodes in the season are episode 142 in the series? | CREATE TABLE table_25604014_8 (no_in_season VARCHAR, no_in_series VARCHAR) | SELECT COUNT(no_in_season) FROM table_25604014_8 WHERE no_in_series = 142 |
What is the name of the episode that William M. Finkelstein wrote? | CREATE TABLE table_25604014_8 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_25604014_8 WHERE written_by = "William M. Finkelstein" |
Who was the artist with a start date of 1966-10-23? | CREATE TABLE table_2560677_1 (artist_s_ VARCHAR, start_date VARCHAR) | SELECT artist_s_ FROM table_2560677_1 WHERE start_date = "1966-10-23" |
What is the end date for the artist s. moldoff/j. giella/c. infantino? | CREATE TABLE table_2560677_1 (end_date VARCHAR, artist_s_ VARCHAR) | SELECT end_date FROM table_2560677_1 WHERE artist_s_ = "S. Moldoff/J. Giella/C. Infantino" |
How many artist(s) have a start date is 1966-12-12? | CREATE TABLE table_2560677_1 (artist_s_ VARCHAR, start_date VARCHAR) | SELECT COUNT(artist_s_) FROM table_2560677_1 WHERE start_date = "1966-12-12" |
What is the fan title with an end date of 1967-11-12? | CREATE TABLE table_2560677_1 (fan_title VARCHAR, end_date VARCHAR) | SELECT fan_title FROM table_2560677_1 WHERE end_date = "1967-11-12" |
How many writers where there for episode # 06? | CREATE TABLE table_2560677_1 (writer VARCHAR, episode__number VARCHAR) | SELECT COUNT(writer) FROM table_2560677_1 WHERE episode__number = "06" |
Name the dominant religion for станишић | CREATE TABLE table_2562572_22 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_22 WHERE cyrillic_name_other_names = "Станишић" |
Name the population for kolut | CREATE TABLE table_2562572_22 (population__2011_ VARCHAR, settlement VARCHAR) | SELECT COUNT(population__2011_) FROM table_2562572_22 WHERE settlement = "Kolut" |
Name the number of cyrillic name for stanišić | CREATE TABLE table_2562572_22 (cyrillic_name_other_names VARCHAR, settlement VARCHAR) | SELECT COUNT(cyrillic_name_other_names) FROM table_2562572_22 WHERE settlement = "Stanišić" |
Name the population for бачки моноштор (croatian: monoštor) | CREATE TABLE table_2562572_22 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT population__2011_ FROM table_2562572_22 WHERE cyrillic_name_other_names = "Бачки Моноштор (Croatian: Monoštor)" |
Name the number of population for врбас | CREATE TABLE table_2562572_20 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT COUNT(population__2011_) FROM table_2562572_20 WHERE cyrillic_name_other_names = "Врбас" |
Name the largest ethnic group for 24112 | CREATE TABLE table_2562572_20 (largest_ethnic_group__2002_ VARCHAR, population__2011_ VARCHAR) | SELECT largest_ethnic_group__2002_ FROM table_2562572_20 WHERE population__2011_ = 24112 |
Name the dominant religion for village for бачко добро поље | CREATE TABLE table_2562572_20 (dominant_religion__2002_ VARCHAR, type VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_20 WHERE type = "village" AND cyrillic_name_other_names = "Бачко Добро Поље" |
Name the cyrillic name for orthodox christianity village and bačko dobro polje | CREATE TABLE table_2562572_20 (cyrillic_name_other_names VARCHAR, settlement VARCHAR, dominant_religion__2002_ VARCHAR, type VARCHAR) | SELECT cyrillic_name_other_names FROM table_2562572_20 WHERE dominant_religion__2002_ = "Orthodox Christianity" AND type = "village" AND settlement = "Bačko Dobro Polje" |
Name the largest ethnic group for kosančić | CREATE TABLE table_2562572_20 (largest_ethnic_group__2002_ VARCHAR, settlement VARCHAR) | SELECT largest_ethnic_group__2002_ FROM table_2562572_20 WHERE settlement = "Kosančić" |
Name the cyrillic name for melenci | CREATE TABLE table_2562572_35 (cyrillic_name_other_names VARCHAR, settlement VARCHAR) | SELECT cyrillic_name_other_names FROM table_2562572_35 WHERE settlement = "Melenci" |
Name the dominant religion 2002 for village banatski despotovac | CREATE TABLE table_2562572_35 (dominant_religion__2002_ VARCHAR, type VARCHAR, settlement VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_35 WHERE type = "village" AND settlement = "Banatski Despotovac" |
Name the cyrillic name for lazarevo | CREATE TABLE table_2562572_35 (cyrillic_name_other_names VARCHAR, settlement VARCHAR) | SELECT cyrillic_name_other_names FROM table_2562572_35 WHERE settlement = "Lazarevo" |
Name the population 2011 for mihajlovo | CREATE TABLE table_2562572_35 (population__2011_ VARCHAR, settlement VARCHAR) | SELECT COUNT(population__2011_) FROM table_2562572_35 WHERE settlement = "Mihajlovo" |
Name the dominant religion 2002 for меленци | CREATE TABLE table_2562572_35 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_35 WHERE cyrillic_name_other_names = "Меленци" |
Name the total number of population 2011 for perlez | CREATE TABLE table_2562572_35 (population__2011_ VARCHAR, settlement VARCHAR) | SELECT COUNT(population__2011_) FROM table_2562572_35 WHERE settlement = "Perlez" |
What is the type when the settlement is subotište? | CREATE TABLE table_2562572_52 (type VARCHAR, settlement VARCHAR) | SELECT type FROM table_2562572_52 WHERE settlement = "Subotište" |
how many times is the cyrillic name сибач? | CREATE TABLE table_2562572_52 (dominant_religion__2002_ VARCHAR, cyrillic_name VARCHAR) | SELECT COUNT(dominant_religion__2002_) FROM table_2562572_52 WHERE cyrillic_name = "Сибач" |
What is the largest ethnic group (2002) when cyrillic name is брестач? | CREATE TABLE table_2562572_52 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name VARCHAR) | SELECT largest_ethnic_group__2002_ FROM table_2562572_52 WHERE cyrillic_name = "Брестач" |
How many times is the settlement karlovčić? | CREATE TABLE table_2562572_52 (dominant_religion__2002_ VARCHAR, settlement VARCHAR) | SELECT COUNT(dominant_religion__2002_) FROM table_2562572_52 WHERE settlement = "Karlovčić" |
What is the cyrillic name when the settlement is ašanja? | CREATE TABLE table_2562572_52 (cyrillic_name VARCHAR, settlement VARCHAR) | SELECT cyrillic_name FROM table_2562572_52 WHERE settlement = "Ašanja" |
Name the least population for 2002 for 2011 being 9564 | CREATE TABLE table_2562572_5 (population__2002_ INTEGER, population__2011_ VARCHAR) | SELECT MIN(population__2002_) FROM table_2562572_5 WHERE population__2011_ = 9564 |
Name the total number of population for 1991 for 9564 for 2011 | CREATE TABLE table_2562572_5 (population__1991_ VARCHAR, population__2011_ VARCHAR) | SELECT COUNT(population__1991_) FROM table_2562572_5 WHERE population__2011_ = 9564 |
Name the city for kanjiža | CREATE TABLE table_2562572_5 (city___municipality VARCHAR, urban_settlement VARCHAR) | SELECT city___municipality FROM table_2562572_5 WHERE urban_settlement = "Kanjiža" |
Name the city for ада | CREATE TABLE table_2562572_5 (city___municipality VARCHAR, cyrillic_name VARCHAR) | SELECT city___municipality FROM table_2562572_5 WHERE cyrillic_name = "Ада" |
Name the population for 2002 being ada | CREATE TABLE table_2562572_5 (population__2002_ INTEGER, urban_settlement VARCHAR) | SELECT MIN(population__2002_) FROM table_2562572_5 WHERE urban_settlement = "Ada" |
Name the most no votes | CREATE TABLE table_256286_14 (no_votes INTEGER) | SELECT MAX(no_votes) FROM table_256286_14 |
Name the least yes votes for yes passed | CREATE TABLE table_256286_14 (yes_votes INTEGER, passed VARCHAR) | SELECT MIN(yes_votes) FROM table_256286_14 WHERE passed = "YES" |
Name the % yes for yes votes for 78961 | CREATE TABLE table_256286_14 (_percentage_yes VARCHAR, yes_votes VARCHAR) | SELECT _percentage_yes FROM table_256286_14 WHERE yes_votes = 78961 |
What is every description if NO votes is 233759? | CREATE TABLE table_256286_43 (description VARCHAR, no_votes VARCHAR) | SELECT description FROM table_256286_43 WHERE no_votes = 233759 |
What is every entry for passed when NO votes is 312187? | CREATE TABLE table_256286_43 (passed VARCHAR, no_votes VARCHAR) | SELECT passed FROM table_256286_43 WHERE no_votes = 312187 |
What is every value for %yes when type is ref? | CREATE TABLE table_256286_43 (_percentage_yes VARCHAR, type VARCHAR) | SELECT _percentage_yes FROM table_256286_43 WHERE type = "Ref" |
What is every entry for description when the value of %yes is 51.82%? | CREATE TABLE table_256286_43 (description VARCHAR, _percentage_yes VARCHAR) | SELECT description FROM table_256286_43 WHERE _percentage_yes = "51.82%" |
What is the episode title for episode number 12? | CREATE TABLE table_25640730_7 (title VARCHAR, _number VARCHAR) | SELECT title FROM table_25640730_7 WHERE _number = 12 |
If the UK air date is February 18, 2013, who was the episode written by? | CREATE TABLE table_25640730_7 (written_by VARCHAR, uk_air_date VARCHAR) | SELECT written_by FROM table_25640730_7 WHERE uk_air_date = "February 18, 2013" |
If the director is Yannick Bisson, what was the Canadian amount of viewers? | CREATE TABLE table_25640730_7 (canadian_viewers__millions_ VARCHAR, directed_by VARCHAR) | SELECT COUNT(canadian_viewers__millions_) FROM table_25640730_7 WHERE directed_by = "Yannick Bisson" |
Did the legislation pass that had 42.87% yes votes? | CREATE TABLE table_256286_63 (passed VARCHAR, _percentage_yes VARCHAR) | SELECT passed FROM table_256286_63 WHERE _percentage_yes = "42.87%" |
How many no votes were there in the partial public funding of election campaigns legislation? | CREATE TABLE table_256286_63 (no_votes VARCHAR, description VARCHAR) | SELECT no_votes FROM table_256286_63 WHERE description = "Partial public funding of election campaigns" |
How many touchdowns did Sam Babcock get? | CREATE TABLE table_25642873_2 (touchdowns INTEGER, player VARCHAR) | SELECT MAX(touchdowns) FROM table_25642873_2 WHERE player = "Sam Babcock" |
How many extra points catagories are there for the na player? | CREATE TABLE table_25642873_2 (extra_points VARCHAR, player VARCHAR) | SELECT COUNT(extra_points) FROM table_25642873_2 WHERE player = "na" |
The player who had 5 touchdowns had how many extra points? | CREATE TABLE table_25642873_2 (extra_points VARCHAR, touchdowns VARCHAR) | SELECT extra_points FROM table_25642873_2 WHERE touchdowns = 5 |
What is the smallest number of safeties? | CREATE TABLE table_25642873_2 (safeties INTEGER) | SELECT MIN(safeties) FROM table_25642873_2 |
If the longitude is 157.941° e, what is the latitude? | CREATE TABLE table_25675509_1 (latitude VARCHAR, longitude VARCHAR) | SELECT latitude FROM table_25675509_1 WHERE longitude = "157.941° E" |
If the latitude is 08.979° s, what is the depth? | CREATE TABLE table_25675509_1 (depth VARCHAR, latitude VARCHAR) | SELECT depth FROM table_25675509_1 WHERE latitude = "08.979° S" |
At what latitude did the shock at time 13:10:02 occur? | CREATE TABLE table_25675509_1 (latitude VARCHAR, time__utc_ VARCHAR) | SELECT latitude FROM table_25675509_1 WHERE time__utc_ = "13:10:02" |
On which date did the shock at latitude 08.909° s occur? | CREATE TABLE table_25675509_1 (date__yyyy_mm_dd_ VARCHAR, latitude VARCHAR) | SELECT date__yyyy_mm_dd_ FROM table_25675509_1 WHERE latitude = "08.909° S" |
What was the longitude for the shock that occured on 2010-01-09? | CREATE TABLE table_25675509_1 (longitude VARCHAR, date__yyyy_mm_dd_ VARCHAR) | SELECT longitude FROM table_25675509_1 WHERE date__yyyy_mm_dd_ = "2010-01-09" |
If the longitude is 158.091° e, what is the depth? | CREATE TABLE table_25675509_1 (depth VARCHAR, longitude VARCHAR) | SELECT depth FROM table_25675509_1 WHERE longitude = "158.091° E" |
What is the highest number for W? | CREATE TABLE table_25689740_2 (w INTEGER) | SELECT MAX(w) FROM table_25689740_2 |
What is shown for ends lost when pa is 44? | CREATE TABLE table_25689740_2 (Ends VARCHAR, pa VARCHAR) | SELECT Ends AS lost FROM table_25689740_2 WHERE pa = 44 |
What was the original airdate of episode #733? | CREATE TABLE table_25691838_6 (original_airdate VARCHAR, episode__number VARCHAR) | SELECT original_airdate FROM table_25691838_6 WHERE episode__number = 733 |
What was The Word for production code 6084? | CREATE TABLE table_25691838_6 (the_wørd VARCHAR, production_code VARCHAR) | SELECT the_wørd FROM table_25691838_6 WHERE production_code = 6084 |
What was the number of "The Word" segments for episode number 727? | CREATE TABLE table_25691838_6 (the_wørd VARCHAR, episode__number VARCHAR) | SELECT COUNT(the_wørd) FROM table_25691838_6 WHERE episode__number = 727 |
Compute the number of times Dennis Rodman recordedhigh rebounds given a regular season | CREATE TABLE table_25696729_8 (rebounding_high VARCHAR, season VARCHAR) | SELECT COUNT(rebounding_high) FROM table_25696729_8 WHERE season = "Regular season" |
List all rebounds equal to 10 for Dennis Rodman 's 1991–92 season | CREATE TABLE table_25696729_8 (season VARCHAR) | SELECT 10 AS _rebounds FROM table_25696729_8 WHERE season = "1991–92" |
What is the highest rebound Dennis Rodman obtained within the 20 rebounds category given two of the following:points, rebounds, assists, steals, and blocked shots (points) greater equal to 5 | CREATE TABLE table_25696729_8 (double_double VARCHAR) | SELECT MAX(20 AS _rebounds) FROM table_25696729_8 WHERE double_double = 5 |
If the episode number is 2-01 what is the original UK air date? | CREATE TABLE table_2570269_2 (original_air_date__uk_ VARCHAR, episode__number VARCHAR) | SELECT original_air_date__uk_ FROM table_2570269_2 WHERE episode__number = "2-01" |
If the episode title is Pressures, what are the names of the cast? | CREATE TABLE table_2570269_2 (cast VARCHAR, episode_title VARCHAR) | SELECT cast FROM table_2570269_2 WHERE episode_title = "Pressures" |
What is the episode number for episode title Leave Takers? | CREATE TABLE table_2570269_2 (episode__number VARCHAR, episode_title VARCHAR) | SELECT episode__number FROM table_2570269_2 WHERE episode_title = "Leave Takers" |
For episode number 2-03, what are the names of the cast? | CREATE TABLE table_2570269_2 (cast VARCHAR, episode__number VARCHAR) | SELECT cast FROM table_2570269_2 WHERE episode__number = "2-03" |
What is the total number of birth/2012 for January–December 2012 in Kurgan Oblast? | CREATE TABLE table_25703_2 (birth_2012 VARCHAR, january_december_2012 VARCHAR) | SELECT COUNT(birth_2012) FROM table_25703_2 WHERE january_december_2012 = "Kurgan Oblast" |
What were the total number of 2012 deaths when 2012 births were 127? | CREATE TABLE table_25703_2 (death_2012 VARCHAR, birth_2012 VARCHAR) | SELECT death_2012 FROM table_25703_2 WHERE birth_2012 = 127 |
What were the total number of 2012 births for the January–December 2012 Tver Oblast region? | CREATE TABLE table_25703_2 (birth_2012 INTEGER, january_december_2012 VARCHAR) | SELECT MIN(birth_2012) FROM table_25703_2 WHERE january_december_2012 = "Tver Oblast" |
What were the total 2012 births when the 2012 deaths were 163? | CREATE TABLE table_25703_2 (birth_2012 INTEGER, death_2012 VARCHAR) | SELECT MIN(birth_2012) FROM table_25703_2 WHERE death_2012 = 163 |
How many pf catagories are listed for the skip that had 3 for l | CREATE TABLE table_25714995_2 (pf VARCHAR, l VARCHAR) | SELECT COUNT(pf) FROM table_25714995_2 WHERE l = 3 |
How many l's are there for the skip with 3 for w? | CREATE TABLE table_25714995_2 (l INTEGER, w VARCHAR) | SELECT MAX(l) FROM table_25714995_2 WHERE w = 3 |
How many ends won catagories are listed when there are 8 stolen ends? | CREATE TABLE table_25714995_2 (Ends VARCHAR, stolen_ends VARCHAR) | SELECT COUNT(Ends) AS won FROM table_25714995_2 WHERE stolen_ends = 8 |
How many extra points did Germany Schultz score? | CREATE TABLE table_25711913_14 (extra_points_1_point VARCHAR, player VARCHAR) | SELECT extra_points_1_point FROM table_25711913_14 WHERE player = "Germany Schultz" |
What is the least number of field goals scored by a player? | CREATE TABLE table_25711913_14 (field_goals__4_points_ INTEGER) | SELECT MIN(field_goals__4_points_) FROM table_25711913_14 |
How many field goals were scored by the player that got 7 touchdowns? | CREATE TABLE table_25711913_14 (field_goals__4_points_ VARCHAR, touchdowns__5_points_ VARCHAR) | SELECT field_goals__4_points_ FROM table_25711913_14 WHERE touchdowns__5_points_ = 7 |
How many ends were won where the blank ends are smaller than 3.0? | CREATE TABLE table_25718552_2 (Ends VARCHAR, blank_ends INTEGER) | SELECT Ends AS won FROM table_25718552_2 WHERE blank_ends < 3.0 |
What is the largest amount of ends won when stolen ends were 3? | CREATE TABLE table_25718552_2 (Ends INTEGER, stolen_ends VARCHAR) | SELECT MAX(Ends) AS won FROM table_25718552_2 WHERE stolen_ends = 3 |
How many counties are at milepost 69.5? | CREATE TABLE table_2572788_1 (county VARCHAR, milepost VARCHAR) | SELECT COUNT(county) FROM table_2572788_1 WHERE milepost = "69.5" |
In what city or town is Stratford (limited service)? | CREATE TABLE table_2572788_1 (town_city VARCHAR, station VARCHAR) | SELECT town_city FROM table_2572788_1 WHERE station = "Stratford (Limited service)" |
At what city or town is milepost 71.1? | CREATE TABLE table_2572788_1 (town_city VARCHAR, milepost VARCHAR) | SELECT town_city FROM table_2572788_1 WHERE milepost = "71.1" |
How many towns or cities are at milepost 71.1? | CREATE TABLE table_2572788_1 (town_city VARCHAR, milepost VARCHAR) | SELECT COUNT(town_city) FROM table_2572788_1 WHERE milepost = "71.1" |
At what milepost is Beacon Falls? | CREATE TABLE table_2572788_1 (milepost VARCHAR, town_city VARCHAR) | SELECT milepost FROM table_2572788_1 WHERE town_city = "Beacon Falls" |
How many people wrote episode number 2 of the season? | CREATE TABLE table_25737761_4 (writer VARCHAR, _number VARCHAR) | SELECT COUNT(writer) FROM table_25737761_4 WHERE _number = 2 |
What episode number of the season did Tony Basgallop write? | CREATE TABLE table_25737761_4 (_number INTEGER, writer VARCHAR) | SELECT MIN(_number) FROM table_25737761_4 WHERE writer = "Tony Basgallop" |
What episode number of the season is episode number 11 in the series? | CREATE TABLE table_25737761_4 (_number INTEGER, no VARCHAR) | SELECT MAX(_number) FROM table_25737761_4 WHERE no = 11 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.