question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the institution with the nickname seahawks?
CREATE TABLE table_261927_1 (institution VARCHAR, nickname VARCHAR)
SELECT institution FROM table_261927_1 WHERE nickname = "Seahawks"
### Context: CREATE TABLE table_261927_1 (institution VARCHAR, nickname VARCHAR) ### Question: What is the institution with the nickname seahawks? ### Answer: SELECT institution FROM table_261927_1 WHERE nickname = "Seahawks"
What is the colors for the nickname engineers?
CREATE TABLE table_261927_1 (colors VARCHAR, nickname VARCHAR)
SELECT colors FROM table_261927_1 WHERE nickname = "Engineers"
### Context: CREATE TABLE table_261927_1 (colors VARCHAR, nickname VARCHAR) ### Question: What is the colors for the nickname engineers? ### Answer: SELECT colors FROM table_261927_1 WHERE nickname = "Engineers"
How many have the colors blue & gold?
CREATE TABLE table_261927_1 (institution VARCHAR, colors VARCHAR)
SELECT COUNT(institution) FROM table_261927_1 WHERE colors = "Blue & Gold"
### Context: CREATE TABLE table_261927_1 (institution VARCHAR, colors VARCHAR) ### Question: How many have the colors blue & gold? ### Answer: SELECT COUNT(institution) FROM table_261927_1 WHERE colors = "Blue & Gold"
What is the institution with the nickname engineers?
CREATE TABLE table_261927_1 (institution VARCHAR, nickname VARCHAR)
SELECT institution FROM table_261927_1 WHERE nickname = "Engineers"
### Context: CREATE TABLE table_261927_1 (institution VARCHAR, nickname VARCHAR) ### Question: What is the institution with the nickname engineers? ### Answer: SELECT institution FROM table_261927_1 WHERE nickname = "Engineers"
What is the enrollment for the colors green & black?
CREATE TABLE table_261927_1 (enrollment VARCHAR, colors VARCHAR)
SELECT enrollment FROM table_261927_1 WHERE colors = "Green & Black"
### Context: CREATE TABLE table_261927_1 (enrollment VARCHAR, colors VARCHAR) ### Question: What is the enrollment for the colors green & black? ### Answer: SELECT enrollment FROM table_261927_1 WHERE colors = "Green & Black"
What institution(s) are located in wilkes-barre, pennsylvania?
CREATE TABLE table_261906_2 (institution VARCHAR, location VARCHAR)
SELECT institution FROM table_261906_2 WHERE location = "Wilkes-Barre, Pennsylvania"
### Context: CREATE TABLE table_261906_2 (institution VARCHAR, location VARCHAR) ### Question: What institution(s) are located in wilkes-barre, pennsylvania? ### Answer: SELECT institution FROM table_261906_2 WHERE location = "Wilkes-Barre, Pennsylvania"
What is the highest enrollment schools that joined the mac in 1997?
CREATE TABLE table_261906_2 (enrollment INTEGER, joined_mac VARCHAR)
SELECT MAX(enrollment) FROM table_261906_2 WHERE joined_mac = 1997
### Context: CREATE TABLE table_261906_2 (enrollment INTEGER, joined_mac VARCHAR) ### Question: What is the highest enrollment schools that joined the mac in 1997? ### Answer: SELECT MAX(enrollment) FROM table_261906_2 WHERE joined_mac = 1997
What is the enrollment at delaware valley college?
CREATE TABLE table_261906_2 (joined_mac INTEGER, institution VARCHAR)
SELECT MAX(joined_mac) FROM table_261906_2 WHERE institution = "Delaware Valley College"
### Context: CREATE TABLE table_261906_2 (joined_mac INTEGER, institution VARCHAR) ### Question: What is the enrollment at delaware valley college? ### Answer: SELECT MAX(joined_mac) FROM table_261906_2 WHERE institution = "Delaware Valley College"
What year did the the school with the nickname eagles join the mac?
CREATE TABLE table_261906_2 (joined_mac INTEGER, nickname VARCHAR)
SELECT MIN(joined_mac) FROM table_261906_2 WHERE nickname = "Eagles"
### Context: CREATE TABLE table_261906_2 (joined_mac INTEGER, nickname VARCHAR) ### Question: What year did the the school with the nickname eagles join the mac? ### Answer: SELECT MIN(joined_mac) FROM table_261906_2 WHERE nickname = "Eagles"
Which institution's nickname is the Bobcats?
CREATE TABLE table_261931_2 (institution VARCHAR, nickname VARCHAR)
SELECT institution FROM table_261931_2 WHERE nickname = "Bobcats"
### Context: CREATE TABLE table_261931_2 (institution VARCHAR, nickname VARCHAR) ### Question: Which institution's nickname is the Bobcats? ### Answer: SELECT institution FROM table_261931_2 WHERE nickname = "Bobcats"
What is the enrollment at the institution in New London, Connecticut?
CREATE TABLE table_261931_2 (enrollment VARCHAR, location VARCHAR)
SELECT enrollment FROM table_261931_2 WHERE location = "New London, Connecticut"
### Context: CREATE TABLE table_261931_2 (enrollment VARCHAR, location VARCHAR) ### Question: What is the enrollment at the institution in New London, Connecticut? ### Answer: SELECT enrollment FROM table_261931_2 WHERE location = "New London, Connecticut"
When did the institution located in Lewiston, Maine join the conference?
CREATE TABLE table_261931_2 (joined VARCHAR, location VARCHAR)
SELECT joined FROM table_261931_2 WHERE location = "Lewiston, Maine"
### Context: CREATE TABLE table_261931_2 (joined VARCHAR, location VARCHAR) ### Question: When did the institution located in Lewiston, Maine join the conference? ### Answer: SELECT joined FROM table_261931_2 WHERE location = "Lewiston, Maine"
Which institution's nickname is the Polar Bears?
CREATE TABLE table_261931_2 (institution VARCHAR, nickname VARCHAR)
SELECT institution FROM table_261931_2 WHERE nickname = "Polar Bears"
### Context: CREATE TABLE table_261931_2 (institution VARCHAR, nickname VARCHAR) ### Question: Which institution's nickname is the Polar Bears? ### Answer: SELECT institution FROM table_261931_2 WHERE nickname = "Polar Bears"
What is the nickname of Linfield College?
CREATE TABLE table_261941_1 (nickname VARCHAR, institution VARCHAR)
SELECT nickname FROM table_261941_1 WHERE institution = "Linfield College"
### Context: CREATE TABLE table_261941_1 (nickname VARCHAR, institution VARCHAR) ### Question: What is the nickname of Linfield College? ### Answer: SELECT nickname FROM table_261941_1 WHERE institution = "Linfield College"
When was the private/baptist school founded?
CREATE TABLE table_261941_1 (founded VARCHAR, type VARCHAR)
SELECT founded FROM table_261941_1 WHERE type = "Private/Baptist"
### Context: CREATE TABLE table_261941_1 (founded VARCHAR, type VARCHAR) ### Question: When was the private/baptist school founded? ### Answer: SELECT founded FROM table_261941_1 WHERE type = "Private/Baptist"
How many different items appear in the enrollment column that joined in 1931, 1949 1?
CREATE TABLE table_261941_1 (enrollment VARCHAR, joined VARCHAR)
SELECT COUNT(enrollment) FROM table_261941_1 WHERE joined = "1931, 1949 1"
### Context: CREATE TABLE table_261941_1 (enrollment VARCHAR, joined VARCHAR) ### Question: How many different items appear in the enrollment column that joined in 1931, 1949 1? ### Answer: SELECT COUNT(enrollment) FROM table_261941_1 WHERE joined = "1931, 1949 1"
What is the location of the University that joined in 1926, 1996 2?
CREATE TABLE table_261941_1 (location VARCHAR, joined VARCHAR)
SELECT location FROM table_261941_1 WHERE joined = "1926, 1996 2"
### Context: CREATE TABLE table_261941_1 (location VARCHAR, joined VARCHAR) ### Question: What is the location of the University that joined in 1926, 1996 2? ### Answer: SELECT location FROM table_261941_1 WHERE joined = "1926, 1996 2"
When was the earliest founded university?
CREATE TABLE table_261941_1 (founded INTEGER)
SELECT MIN(founded) FROM table_261941_1
### Context: CREATE TABLE table_261941_1 (founded INTEGER) ### Question: When was the earliest founded university? ### Answer: SELECT MIN(founded) FROM table_261941_1
What was the team standing if the won 130 goals against another team?
CREATE TABLE table_2619469_1 (standing VARCHAR, goals_against VARCHAR)
SELECT standing FROM table_2619469_1 WHERE goals_against = 130
### Context: CREATE TABLE table_2619469_1 (standing VARCHAR, goals_against VARCHAR) ### Question: What was the team standing if the won 130 goals against another team? ### Answer: SELECT standing FROM table_2619469_1 WHERE goals_against = 130
What is every type for the location of Roanoke, Virginia?
CREATE TABLE table_261954_1 (type VARCHAR, location VARCHAR)
SELECT type FROM table_261954_1 WHERE location = "Roanoke, Virginia"
### Context: CREATE TABLE table_261954_1 (type VARCHAR, location VARCHAR) ### Question: What is every type for the location of Roanoke, Virginia? ### Answer: SELECT type FROM table_261954_1 WHERE location = "Roanoke, Virginia"
How many values for joined occur at Guilford College?
CREATE TABLE table_261954_1 (joined VARCHAR, institution VARCHAR)
SELECT COUNT(joined) FROM table_261954_1 WHERE institution = "Guilford College"
### Context: CREATE TABLE table_261954_1 (joined VARCHAR, institution VARCHAR) ### Question: How many values for joined occur at Guilford College? ### Answer: SELECT COUNT(joined) FROM table_261954_1 WHERE institution = "Guilford College"
What is every institution with the nickname of Quakers?
CREATE TABLE table_261954_1 (institution VARCHAR, nickname VARCHAR)
SELECT institution FROM table_261954_1 WHERE nickname = "Quakers"
### Context: CREATE TABLE table_261954_1 (institution VARCHAR, nickname VARCHAR) ### Question: What is every institution with the nickname of Quakers? ### Answer: SELECT institution FROM table_261954_1 WHERE nickname = "Quakers"
What is the least value of joined?
CREATE TABLE table_261954_1 (joined INTEGER)
SELECT MIN(joined) FROM table_261954_1
### Context: CREATE TABLE table_261954_1 (joined INTEGER) ### Question: What is the least value of joined? ### Answer: SELECT MIN(joined) FROM table_261954_1
What is every institution with the nickname of Wildcats?
CREATE TABLE table_261954_1 (institution VARCHAR, nickname VARCHAR)
SELECT institution FROM table_261954_1 WHERE nickname = "WildCats"
### Context: CREATE TABLE table_261954_1 (institution VARCHAR, nickname VARCHAR) ### Question: What is every institution with the nickname of Wildcats? ### Answer: SELECT institution FROM table_261954_1 WHERE nickname = "WildCats"
What is the title of the episode with production code 2alf03?
CREATE TABLE table_26199130_1 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_26199130_1 WHERE production_code = "2ALF03"
### Context: CREATE TABLE table_26199130_1 (title VARCHAR, production_code VARCHAR) ### Question: What is the title of the episode with production code 2alf03? ### Answer: SELECT title FROM table_26199130_1 WHERE production_code = "2ALF03"
What was the rank (week) for episode number 34?
CREATE TABLE table_26199130_1 (rank__week_ VARCHAR, no VARCHAR)
SELECT rank__week_ FROM table_26199130_1 WHERE no = 34
### Context: CREATE TABLE table_26199130_1 (rank__week_ VARCHAR, no VARCHAR) ### Question: What was the rank (week) for episode number 34? ### Answer: SELECT rank__week_ FROM table_26199130_1 WHERE no = 34
What numbered episode had 11.96 million US viewers?
CREATE TABLE table_26199130_1 (no INTEGER, us_viewers__million_ VARCHAR)
SELECT MAX(no) FROM table_26199130_1 WHERE us_viewers__million_ = "11.96"
### Context: CREATE TABLE table_26199130_1 (no INTEGER, us_viewers__million_ VARCHAR) ### Question: What numbered episode had 11.96 million US viewers? ### Answer: SELECT MAX(no) FROM table_26199130_1 WHERE us_viewers__million_ = "11.96"
What was the ranking of episode #19?
CREATE TABLE table_26200084_1 (rank__week_ VARCHAR, _number VARCHAR)
SELECT rank__week_ FROM table_26200084_1 WHERE _number = 19
### Context: CREATE TABLE table_26200084_1 (rank__week_ VARCHAR, _number VARCHAR) ### Question: What was the ranking of episode #19? ### Answer: SELECT rank__week_ FROM table_26200084_1 WHERE _number = 19
What was the production code of the episode ranked 28?
CREATE TABLE table_26200084_1 (production_code VARCHAR, rank__week_ VARCHAR)
SELECT production_code FROM table_26200084_1 WHERE rank__week_ = "28"
### Context: CREATE TABLE table_26200084_1 (production_code VARCHAR, rank__week_ VARCHAR) ### Question: What was the production code of the episode ranked 28? ### Answer: SELECT production_code FROM table_26200084_1 WHERE rank__week_ = "28"
What was the title of the episode directed by David Mamet?
CREATE TABLE table_26200084_1 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_26200084_1 WHERE directed_by = "David Mamet"
### Context: CREATE TABLE table_26200084_1 (title VARCHAR, directed_by VARCHAR) ### Question: What was the title of the episode directed by David Mamet? ### Answer: SELECT title FROM table_26200084_1 WHERE directed_by = "David Mamet"
What is the production code for the episode that had 18.07 million viewers?
CREATE TABLE table_26198709_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)
SELECT production_code FROM table_26198709_1 WHERE us_viewers__million_ = "18.07"
### Context: CREATE TABLE table_26198709_1 (production_code VARCHAR, us_viewers__million_ VARCHAR) ### Question: What is the production code for the episode that had 18.07 million viewers? ### Answer: SELECT production_code FROM table_26198709_1 WHERE us_viewers__million_ = "18.07"
What is the weeks rank for the episode with the production code 1alf05?
CREATE TABLE table_26198709_1 (rank__week_ INTEGER, production_code VARCHAR)
SELECT MAX(rank__week_) FROM table_26198709_1 WHERE production_code = "1ALF05"
### Context: CREATE TABLE table_26198709_1 (rank__week_ INTEGER, production_code VARCHAR) ### Question: What is the weeks rank for the episode with the production code 1alf05? ### Answer: SELECT MAX(rank__week_) FROM table_26198709_1 WHERE production_code = "1ALF05"
How many air dates does the episode with 15.50 million viewers have?
CREATE TABLE table_26198709_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
SELECT COUNT(original_air_date) FROM table_26198709_1 WHERE us_viewers__million_ = "15.50"
### Context: CREATE TABLE table_26198709_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR) ### Question: How many air dates does the episode with 15.50 million viewers have? ### Answer: SELECT COUNT(original_air_date) FROM table_26198709_1 WHERE us_viewers__million_ = "15.50"
Who wrote the episode with 18.07 million viewers?
CREATE TABLE table_26198709_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT written_by FROM table_26198709_1 WHERE us_viewers__million_ = "18.07"
### Context: CREATE TABLE table_26198709_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who wrote the episode with 18.07 million viewers? ### Answer: SELECT written_by FROM table_26198709_1 WHERE us_viewers__million_ = "18.07"
How many points were scored against the Toronto Rebels?
CREATE TABLE table_26200568_16 (points_against INTEGER, club VARCHAR)
SELECT MAX(points_against) FROM table_26200568_16 WHERE club = "Toronto Rebels"
### Context: CREATE TABLE table_26200568_16 (points_against INTEGER, club VARCHAR) ### Question: How many points were scored against the Toronto Rebels? ### Answer: SELECT MAX(points_against) FROM table_26200568_16 WHERE club = "Toronto Rebels"
How many points did the Toronto Downtown Dingos score?
CREATE TABLE table_26200568_16 (points_for INTEGER, club VARCHAR)
SELECT MIN(points_for) FROM table_26200568_16 WHERE club = "Toronto Downtown Dingos"
### Context: CREATE TABLE table_26200568_16 (points_for INTEGER, club VARCHAR) ### Question: How many points did the Toronto Downtown Dingos score? ### Answer: SELECT MIN(points_for) FROM table_26200568_16 WHERE club = "Toronto Downtown Dingos"
How many losses does Toronto Downtown Dingos have?
CREATE TABLE table_26200568_16 (losses VARCHAR, club VARCHAR)
SELECT losses FROM table_26200568_16 WHERE club = "Toronto Downtown Dingos"
### Context: CREATE TABLE table_26200568_16 (losses VARCHAR, club VARCHAR) ### Question: How many losses does Toronto Downtown Dingos have? ### Answer: SELECT losses FROM table_26200568_16 WHERE club = "Toronto Downtown Dingos"
What is the percentage listed for the team who scored 63 points?
CREATE TABLE table_26200568_16 (percentage VARCHAR, points_for VARCHAR)
SELECT percentage FROM table_26200568_16 WHERE points_for = 63
### Context: CREATE TABLE table_26200568_16 (percentage VARCHAR, points_for VARCHAR) ### Question: What is the percentage listed for the team who scored 63 points? ### Answer: SELECT percentage FROM table_26200568_16 WHERE points_for = 63
How many losses does Central Blues have?
CREATE TABLE table_26200568_16 (losses INTEGER, club VARCHAR)
SELECT MAX(losses) FROM table_26200568_16 WHERE club = "Central Blues"
### Context: CREATE TABLE table_26200568_16 (losses INTEGER, club VARCHAR) ### Question: How many losses does Central Blues have? ### Answer: SELECT MAX(losses) FROM table_26200568_16 WHERE club = "Central Blues"
If the calculated activity (CI) is 4.96×10 −11, what is the specimen weight/size?
CREATE TABLE table_26211058_1 (specimen_weight_size VARCHAR, calculated_activity___ci__ VARCHAR)
SELECT specimen_weight_size FROM table_26211058_1 WHERE calculated_activity___ci__ = "4.96×10 −11"
### Context: CREATE TABLE table_26211058_1 (specimen_weight_size VARCHAR, calculated_activity___ci__ VARCHAR) ### Question: If the calculated activity (CI) is 4.96×10 −11, what is the specimen weight/size? ### Answer: SELECT specimen_weight_size FROM table_26211058_1 WHERE calculated_activity___ci__ = "4.96×10 −11"
If the specimen weight/size is 1000 g / 8.79 cm, what is the calculated activity?
CREATE TABLE table_26211058_1 (calculated_activity___bq__ VARCHAR, specimen_weight_size VARCHAR)
SELECT COUNT(calculated_activity___bq__) FROM table_26211058_1 WHERE specimen_weight_size = "1000 g / 8.79 cm"
### Context: CREATE TABLE table_26211058_1 (calculated_activity___bq__ VARCHAR, specimen_weight_size VARCHAR) ### Question: If the specimen weight/size is 1000 g / 8.79 cm, what is the calculated activity? ### Answer: SELECT COUNT(calculated_activity___bq__) FROM table_26211058_1 WHERE specimen_weight_size = "1000 g / 8.79 cm"
If the new points were 5760, what is the RK?
CREATE TABLE table_26218783_6 (rk VARCHAR, new_points VARCHAR)
SELECT rk FROM table_26218783_6 WHERE new_points = 5760
### Context: CREATE TABLE table_26218783_6 (rk VARCHAR, new_points VARCHAR) ### Question: If the new points were 5760, what is the RK? ### Answer: SELECT rk FROM table_26218783_6 WHERE new_points = 5760
How many times is player Stanislas Wawrinka on the list?
CREATE TABLE table_26218783_6 (points VARCHAR, player VARCHAR)
SELECT COUNT(points) AS defending FROM table_26218783_6 WHERE player = "Stanislas Wawrinka"
### Context: CREATE TABLE table_26218783_6 (points VARCHAR, player VARCHAR) ### Question: How many times is player Stanislas Wawrinka on the list? ### Answer: SELECT COUNT(points) AS defending FROM table_26218783_6 WHERE player = "Stanislas Wawrinka"
how many time was points 6675?
CREATE TABLE table_26218783_7 (points VARCHAR)
SELECT COUNT(points) AS won FROM table_26218783_7 WHERE points = 6675
### Context: CREATE TABLE table_26218783_7 (points VARCHAR) ### Question: how many time was points 6675? ### Answer: SELECT COUNT(points) AS won FROM table_26218783_7 WHERE points = 6675
What is the lowest points won from player victoria azarenka?
CREATE TABLE table_26218783_7 (points INTEGER, player VARCHAR)
SELECT MIN(points) AS won FROM table_26218783_7 WHERE player = "Victoria Azarenka"
### Context: CREATE TABLE table_26218783_7 (points INTEGER, player VARCHAR) ### Question: What is the lowest points won from player victoria azarenka? ### Answer: SELECT MIN(points) AS won FROM table_26218783_7 WHERE player = "Victoria Azarenka"
What is the status when sd is 15?
CREATE TABLE table_26218783_7 (status VARCHAR, sd VARCHAR)
SELECT status FROM table_26218783_7 WHERE sd = 15
### Context: CREATE TABLE table_26218783_7 (status VARCHAR, sd VARCHAR) ### Question: What is the status when sd is 15? ### Answer: SELECT status FROM table_26218783_7 WHERE sd = 15
What is the highest sd when the status is second round lost to iveta benešová?
CREATE TABLE table_26218783_7 (sd INTEGER, status VARCHAR)
SELECT MAX(sd) FROM table_26218783_7 WHERE status = "Second round lost to Iveta Benešová"
### Context: CREATE TABLE table_26218783_7 (sd INTEGER, status VARCHAR) ### Question: What is the highest sd when the status is second round lost to iveta benešová? ### Answer: SELECT MAX(sd) FROM table_26218783_7 WHERE status = "Second round lost to Iveta Benešová"
How many clubs were founded in the westfalenstadion stadium?
CREATE TABLE table_26218124_1 (founded VARCHAR, stadium VARCHAR)
SELECT COUNT(founded) FROM table_26218124_1 WHERE stadium = "Westfalenstadion"
### Context: CREATE TABLE table_26218124_1 (founded VARCHAR, stadium VARCHAR) ### Question: How many clubs were founded in the westfalenstadion stadium? ### Answer: SELECT COUNT(founded) FROM table_26218124_1 WHERE stadium = "Westfalenstadion"
Which club was originally named hapoel katamon jerusalem f.c.?
CREATE TABLE table_26218124_1 (original_club VARCHAR, name VARCHAR)
SELECT original_club FROM table_26218124_1 WHERE name = "Hapoel Katamon Jerusalem F.C."
### Context: CREATE TABLE table_26218124_1 (original_club VARCHAR, name VARCHAR) ### Question: Which club was originally named hapoel katamon jerusalem f.c.? ### Answer: SELECT original_club FROM table_26218124_1 WHERE name = "Hapoel Katamon Jerusalem F.C."
How many clubs were founded in belo horizonte?
CREATE TABLE table_26218124_1 (founded VARCHAR, city VARCHAR)
SELECT COUNT(founded) FROM table_26218124_1 WHERE city = "Belo Horizonte"
### Context: CREATE TABLE table_26218124_1 (founded VARCHAR, city VARCHAR) ### Question: How many clubs were founded in belo horizonte? ### Answer: SELECT COUNT(founded) FROM table_26218124_1 WHERE city = "Belo Horizonte"
Which club was originally named the newcastle falcons?
CREATE TABLE table_26218124_1 (original_club VARCHAR, name VARCHAR)
SELECT original_club FROM table_26218124_1 WHERE name = "Newcastle Falcons"
### Context: CREATE TABLE table_26218124_1 (original_club VARCHAR, name VARCHAR) ### Question: Which club was originally named the newcastle falcons? ### Answer: SELECT original_club FROM table_26218124_1 WHERE name = "Newcastle Falcons"
What is the minimum number of f/laps?
CREATE TABLE table_26222468_1 (f_laps INTEGER)
SELECT MIN(f_laps) FROM table_26222468_1
### Context: CREATE TABLE table_26222468_1 (f_laps INTEGER) ### Question: What is the minimum number of f/laps? ### Answer: SELECT MIN(f_laps) FROM table_26222468_1
How many seasons have points totals of N/A?
CREATE TABLE table_26222468_1 (season VARCHAR, points VARCHAR)
SELECT COUNT(season) FROM table_26222468_1 WHERE points = "N/A"
### Context: CREATE TABLE table_26222468_1 (season VARCHAR, points VARCHAR) ### Question: How many seasons have points totals of N/A? ### Answer: SELECT COUNT(season) FROM table_26222468_1 WHERE points = "N/A"
What is the maximum number of wins?
CREATE TABLE table_26222468_1 (wins INTEGER)
SELECT MAX(wins) FROM table_26222468_1
### Context: CREATE TABLE table_26222468_1 (wins INTEGER) ### Question: What is the maximum number of wins? ### Answer: SELECT MAX(wins) FROM table_26222468_1
How many different starts had an average finish of 17.9?
CREATE TABLE table_2622469_1 (starts VARCHAR, avg_finish VARCHAR)
SELECT COUNT(starts) FROM table_2622469_1 WHERE avg_finish = "17.9"
### Context: CREATE TABLE table_2622469_1 (starts VARCHAR, avg_finish VARCHAR) ### Question: How many different starts had an average finish of 17.9? ### Answer: SELECT COUNT(starts) FROM table_2622469_1 WHERE avg_finish = "17.9"
What were the wins of 1983?
CREATE TABLE table_2622469_1 (wins VARCHAR, year VARCHAR)
SELECT wins FROM table_2622469_1 WHERE year = 1983
### Context: CREATE TABLE table_2622469_1 (wins VARCHAR, year VARCHAR) ### Question: What were the wins of 1983? ### Answer: SELECT wins FROM table_2622469_1 WHERE year = 1983
Which episodes in season 3 were written by Mark Drop?
CREATE TABLE table_2623498_4 (Season VARCHAR, written_by VARCHAR)
SELECT Season AS episode__number FROM table_2623498_4 WHERE written_by = "Mark Drop"
### Context: CREATE TABLE table_2623498_4 (Season VARCHAR, written_by VARCHAR) ### Question: Which episodes in season 3 were written by Mark Drop? ### Answer: SELECT Season AS episode__number FROM table_2623498_4 WHERE written_by = "Mark Drop"
what is the number where the player was jimmy demaret
CREATE TABLE table_262383_1 (runner_s__up VARCHAR)
SELECT 54 AS _holes FROM table_262383_1 WHERE runner_s__up = "Jimmy Demaret"
### Context: CREATE TABLE table_262383_1 (runner_s__up VARCHAR) ### Question: what is the number where the player was jimmy demaret ### Answer: SELECT 54 AS _holes FROM table_262383_1 WHERE runner_s__up = "Jimmy Demaret"
what is the space where the next one was mike turnesa
CREATE TABLE table_262383_1 (margin VARCHAR, runner_s__up VARCHAR)
SELECT margin FROM table_262383_1 WHERE runner_s__up = "Mike Turnesa"
### Context: CREATE TABLE table_262383_1 (margin VARCHAR, runner_s__up VARCHAR) ### Question: what is the space where the next one was mike turnesa ### Answer: SELECT margin FROM table_262383_1 WHERE runner_s__up = "Mike Turnesa"
what is the space where the next winner is skee riegel
CREATE TABLE table_262383_1 (margin VARCHAR, runner_s__up VARCHAR)
SELECT margin FROM table_262383_1 WHERE runner_s__up = "Skee Riegel"
### Context: CREATE TABLE table_262383_1 (margin VARCHAR, runner_s__up VARCHAR) ### Question: what is the space where the next winner is skee riegel ### Answer: SELECT margin FROM table_262383_1 WHERE runner_s__up = "Skee Riegel"
what is the old English name of Saturday?
CREATE TABLE table_2624098_1 (old_english_day_name VARCHAR, modern_english_day_name VARCHAR)
SELECT old_english_day_name FROM table_2624098_1 WHERE modern_english_day_name = "Saturday"
### Context: CREATE TABLE table_2624098_1 (old_english_day_name VARCHAR, modern_english_day_name VARCHAR) ### Question: what is the old English name of Saturday? ### Answer: SELECT old_english_day_name FROM table_2624098_1 WHERE modern_english_day_name = "Saturday"
how mant different day names in old English were coined from the Latin day name "dies iovis"?
CREATE TABLE table_2624098_1 (old_english_day_name VARCHAR, glossed_from_latin_day_name VARCHAR)
SELECT COUNT(old_english_day_name) FROM table_2624098_1 WHERE glossed_from_latin_day_name = "Dies Iovis"
### Context: CREATE TABLE table_2624098_1 (old_english_day_name VARCHAR, glossed_from_latin_day_name VARCHAR) ### Question: how mant different day names in old English were coined from the Latin day name "dies iovis"? ### Answer: SELECT COUNT(old_english_day_name) FROM table_2624098_1 WHERE glossed_from_latin_day_name = "Dies Iovis"
how many different meanings does Wednesday have?
CREATE TABLE table_2624098_1 (english_day_name_meaning VARCHAR, modern_english_day_name VARCHAR)
SELECT COUNT(english_day_name_meaning) FROM table_2624098_1 WHERE modern_english_day_name = "Wednesday"
### Context: CREATE TABLE table_2624098_1 (english_day_name_meaning VARCHAR, modern_english_day_name VARCHAR) ### Question: how many different meanings does Wednesday have? ### Answer: SELECT COUNT(english_day_name_meaning) FROM table_2624098_1 WHERE modern_english_day_name = "Wednesday"
what is the English meaning of the old English name "sæturnesdæg"?
CREATE TABLE table_2624098_1 (english_day_name_meaning VARCHAR, old_english_day_name VARCHAR)
SELECT english_day_name_meaning FROM table_2624098_1 WHERE old_english_day_name = "Sæturnesdæg"
### Context: CREATE TABLE table_2624098_1 (english_day_name_meaning VARCHAR, old_english_day_name VARCHAR) ### Question: what is the English meaning of the old English name "sæturnesdæg"? ### Answer: SELECT english_day_name_meaning FROM table_2624098_1 WHERE old_english_day_name = "Sæturnesdæg"
what is the meaning of the latin day name "dies saturni"?
CREATE TABLE table_2624098_1 (latin_day_name_meaning VARCHAR, glossed_from_latin_day_name VARCHAR)
SELECT latin_day_name_meaning FROM table_2624098_1 WHERE glossed_from_latin_day_name = "Dies Saturni"
### Context: CREATE TABLE table_2624098_1 (latin_day_name_meaning VARCHAR, glossed_from_latin_day_name VARCHAR) ### Question: what is the meaning of the latin day name "dies saturni"? ### Answer: SELECT latin_day_name_meaning FROM table_2624098_1 WHERE glossed_from_latin_day_name = "Dies Saturni"
Which opponents conference has the result L, 62-10?
CREATE TABLE table_26240481_1 (opponents_conference VARCHAR, result VARCHAR)
SELECT opponents_conference FROM table_26240481_1 WHERE result = "L, 62-10"
### Context: CREATE TABLE table_26240481_1 (opponents_conference VARCHAR, result VARCHAR) ### Question: Which opponents conference has the result L, 62-10? ### Answer: SELECT opponents_conference FROM table_26240481_1 WHERE result = "L, 62-10"
Who was the opponents head coach with the result L, 56-6?
CREATE TABLE table_26240481_1 (opponents_head_coach VARCHAR, result VARCHAR)
SELECT opponents_head_coach FROM table_26240481_1 WHERE result = "L, 56-6"
### Context: CREATE TABLE table_26240481_1 (opponents_head_coach VARCHAR, result VARCHAR) ### Question: Who was the opponents head coach with the result L, 56-6? ### Answer: SELECT opponents_head_coach FROM table_26240481_1 WHERE result = "L, 56-6"
Who is Charleston Southerns head coach where the result is L, 56-6?-
CREATE TABLE table_26240481_1 (charleston_southerns_head_coach VARCHAR, result VARCHAR)
SELECT charleston_southerns_head_coach FROM table_26240481_1 WHERE result = "L, 56-6"
### Context: CREATE TABLE table_26240481_1 (charleston_southerns_head_coach VARCHAR, result VARCHAR) ### Question: Who is Charleston Southerns head coach where the result is L, 56-6?- ### Answer: SELECT charleston_southerns_head_coach FROM table_26240481_1 WHERE result = "L, 56-6"
Who played FBS where the result was L, 62-3?
CREATE TABLE table_26240481_1 (fbs_opponent VARCHAR, result VARCHAR)
SELECT fbs_opponent FROM table_26240481_1 WHERE result = "L, 62-3"
### Context: CREATE TABLE table_26240481_1 (fbs_opponent VARCHAR, result VARCHAR) ### Question: Who played FBS where the result was L, 62-3? ### Answer: SELECT fbs_opponent FROM table_26240481_1 WHERE result = "L, 62-3"
When was alfred university founded?
CREATE TABLE table_262476_3 (founded INTEGER, institution VARCHAR)
SELECT MAX(founded) FROM table_262476_3 WHERE institution = "Alfred University"
### Context: CREATE TABLE table_262476_3 (founded INTEGER, institution VARCHAR) ### Question: When was alfred university founded? ### Answer: SELECT MAX(founded) FROM table_262476_3 WHERE institution = "Alfred University"
Name where bethany college is
CREATE TABLE table_262476_1 (location VARCHAR, institution VARCHAR)
SELECT location FROM table_262476_1 WHERE institution = "Bethany College"
### Context: CREATE TABLE table_262476_1 (location VARCHAR, institution VARCHAR) ### Question: Name where bethany college is ### Answer: SELECT location FROM table_262476_1 WHERE institution = "Bethany College"
Name the location for golden tornadoes
CREATE TABLE table_262476_1 (location VARCHAR, nickname VARCHAR)
SELECT location FROM table_262476_1 WHERE nickname = "Golden Tornadoes"
### Context: CREATE TABLE table_262476_1 (location VARCHAR, nickname VARCHAR) ### Question: Name the location for golden tornadoes ### Answer: SELECT location FROM table_262476_1 WHERE nickname = "Golden Tornadoes"
Name the number of locations for geneva college
CREATE TABLE table_262476_1 (location VARCHAR, institution VARCHAR)
SELECT COUNT(location) FROM table_262476_1 WHERE institution = "Geneva College"
### Context: CREATE TABLE table_262476_1 (location VARCHAR, institution VARCHAR) ### Question: Name the number of locations for geneva college ### Answer: SELECT COUNT(location) FROM table_262476_1 WHERE institution = "Geneva College"
Name the enrollment for tomcats
CREATE TABLE table_262476_1 (enrollment VARCHAR, nickname VARCHAR)
SELECT enrollment FROM table_262476_1 WHERE nickname = "Tomcats"
### Context: CREATE TABLE table_262476_1 (enrollment VARCHAR, nickname VARCHAR) ### Question: Name the enrollment for tomcats ### Answer: SELECT enrollment FROM table_262476_1 WHERE nickname = "Tomcats"
How many season 4 appearances are there by Mrs. Jennifer Knight?
CREATE TABLE table_26240046_1 (season_4 INTEGER, character VARCHAR)
SELECT MIN(season_4) FROM table_26240046_1 WHERE character = "Mrs. Jennifer Knight"
### Context: CREATE TABLE table_26240046_1 (season_4 INTEGER, character VARCHAR) ### Question: How many season 4 appearances are there by Mrs. Jennifer Knight? ### Answer: SELECT MIN(season_4) FROM table_26240046_1 WHERE character = "Mrs. Jennifer Knight"
How many season 3 appearances by Morgan the Dog?
CREATE TABLE table_26240046_1 (season_3 INTEGER, played_by VARCHAR)
SELECT MAX(season_3) FROM table_26240046_1 WHERE played_by = "Morgan the Dog"
### Context: CREATE TABLE table_26240046_1 (season_3 INTEGER, played_by VARCHAR) ### Question: How many season 3 appearances by Morgan the Dog? ### Answer: SELECT MAX(season_3) FROM table_26240046_1 WHERE played_by = "Morgan the Dog"
What episode was the first appearance of the character who appears 7 times in season 4?
CREATE TABLE table_26240046_1 (first_appearance VARCHAR, season_4 VARCHAR)
SELECT first_appearance FROM table_26240046_1 WHERE season_4 = 7
### Context: CREATE TABLE table_26240046_1 (first_appearance VARCHAR, season_4 VARCHAR) ### Question: What episode was the first appearance of the character who appears 7 times in season 4? ### Answer: SELECT first_appearance FROM table_26240046_1 WHERE season_4 = 7
How many season 3 appearances by the character played by Stefan Van Ray?
CREATE TABLE table_26240046_1 (season_3 INTEGER, played_by VARCHAR)
SELECT MIN(season_3) FROM table_26240046_1 WHERE played_by = "Stefan van Ray"
### Context: CREATE TABLE table_26240046_1 (season_3 INTEGER, played_by VARCHAR) ### Question: How many season 3 appearances by the character played by Stefan Van Ray? ### Answer: SELECT MIN(season_3) FROM table_26240046_1 WHERE played_by = "Stefan van Ray"
What is the first appearance of the character played by Obdul Reid?
CREATE TABLE table_26240046_1 (first_appearance VARCHAR, played_by VARCHAR)
SELECT first_appearance FROM table_26240046_1 WHERE played_by = "Obdul Reid"
### Context: CREATE TABLE table_26240046_1 (first_appearance VARCHAR, played_by VARCHAR) ### Question: What is the first appearance of the character played by Obdul Reid? ### Answer: SELECT first_appearance FROM table_26240046_1 WHERE played_by = "Obdul Reid"
What was the primary conference when joining the cslf for the institution that was founded in 1894
CREATE TABLE table_262501_1 (primary_conference_when_joining_the_csfl VARCHAR, founded VARCHAR)
SELECT primary_conference_when_joining_the_csfl FROM table_262501_1 WHERE founded = 1894
### Context: CREATE TABLE table_262501_1 (primary_conference_when_joining_the_csfl VARCHAR, founded VARCHAR) ### Question: What was the primary conference when joining the cslf for the institution that was founded in 1894 ### Answer: SELECT primary_conference_when_joining_the_csfl FROM table_262501_1 WHERE founded = 1894
what was the primary conference when joining the csfl for the institution that joined in 2004-05?
CREATE TABLE table_262501_1 (primary_conference_when_joining_the_csfl VARCHAR, joined VARCHAR)
SELECT primary_conference_when_joining_the_csfl FROM table_262501_1 WHERE joined = "2004-05"
### Context: CREATE TABLE table_262501_1 (primary_conference_when_joining_the_csfl VARCHAR, joined VARCHAR) ### Question: what was the primary conference when joining the csfl for the institution that joined in 2004-05? ### Answer: SELECT primary_conference_when_joining_the_csfl FROM table_262501_1 WHERE joined = "2004-05"
How may results had the theme inspirational?
CREATE TABLE table_26250151_1 (result VARCHAR, theme VARCHAR)
SELECT COUNT(result) FROM table_26250151_1 WHERE theme = "Inspirational"
### Context: CREATE TABLE table_26250151_1 (result VARCHAR, theme VARCHAR) ### Question: How may results had the theme inspirational? ### Answer: SELECT COUNT(result) FROM table_26250151_1 WHERE theme = "Inspirational"
Which episode had Lavern Baker?
CREATE TABLE table_26250151_1 (episode VARCHAR, original_recording_artist VARCHAR)
SELECT episode FROM table_26250151_1 WHERE original_recording_artist = "LaVern Baker"
### Context: CREATE TABLE table_26250151_1 (episode VARCHAR, original_recording_artist VARCHAR) ### Question: Which episode had Lavern Baker? ### Answer: SELECT episode FROM table_26250151_1 WHERE original_recording_artist = "LaVern Baker"
What was the order # or Erma Franklin?
CREATE TABLE table_26250151_1 (order__number VARCHAR, original_recording_artist VARCHAR)
SELECT order__number FROM table_26250151_1 WHERE original_recording_artist = "Erma Franklin"
### Context: CREATE TABLE table_26250151_1 (order__number VARCHAR, original_recording_artist VARCHAR) ### Question: What was the order # or Erma Franklin? ### Answer: SELECT order__number FROM table_26250151_1 WHERE original_recording_artist = "Erma Franklin"
What is the theme for the original artist Alicia Keys?
CREATE TABLE table_26250145_1 (theme VARCHAR, original_artist VARCHAR)
SELECT theme FROM table_26250145_1 WHERE original_artist = "Alicia Keys"
### Context: CREATE TABLE table_26250145_1 (theme VARCHAR, original_artist VARCHAR) ### Question: What is the theme for the original artist Alicia Keys? ### Answer: SELECT theme FROM table_26250145_1 WHERE original_artist = "Alicia Keys"
How many times is the original artist Alicia keys?
CREATE TABLE table_26250145_1 (result VARCHAR, original_artist VARCHAR)
SELECT COUNT(result) FROM table_26250145_1 WHERE original_artist = "Alicia Keys"
### Context: CREATE TABLE table_26250145_1 (result VARCHAR, original_artist VARCHAR) ### Question: How many times is the original artist Alicia keys? ### Answer: SELECT COUNT(result) FROM table_26250145_1 WHERE original_artist = "Alicia Keys"
What is the order # for the original artist sarah mclachlan?
CREATE TABLE table_26250145_1 (order__number VARCHAR, original_artist VARCHAR)
SELECT order__number FROM table_26250145_1 WHERE original_artist = "Sarah McLachlan"
### Context: CREATE TABLE table_26250145_1 (order__number VARCHAR, original_artist VARCHAR) ### Question: What is the order # for the original artist sarah mclachlan? ### Answer: SELECT order__number FROM table_26250145_1 WHERE original_artist = "Sarah McLachlan"
WHat is the them for the order #2?
CREATE TABLE table_26250145_1 (theme VARCHAR, order__number VARCHAR)
SELECT theme FROM table_26250145_1 WHERE order__number = "2"
### Context: CREATE TABLE table_26250145_1 (theme VARCHAR, order__number VARCHAR) ### Question: WHat is the them for the order #2? ### Answer: SELECT theme FROM table_26250145_1 WHERE order__number = "2"
When pointers are the nickname what is the type?
CREATE TABLE table_262495_1 (type VARCHAR, nickname VARCHAR)
SELECT type FROM table_262495_1 WHERE nickname = "Pointers"
### Context: CREATE TABLE table_262495_1 (type VARCHAR, nickname VARCHAR) ### Question: When pointers are the nickname what is the type? ### Answer: SELECT type FROM table_262495_1 WHERE nickname = "Pointers"
When falcons are the nickname what is the type?
CREATE TABLE table_262495_1 (type VARCHAR, nickname VARCHAR)
SELECT type FROM table_262495_1 WHERE nickname = "Falcons"
### Context: CREATE TABLE table_262495_1 (type VARCHAR, nickname VARCHAR) ### Question: When falcons are the nickname what is the type? ### Answer: SELECT type FROM table_262495_1 WHERE nickname = "Falcons"
When 9386 is the undergraduate enrollment what is the nickname?
CREATE TABLE table_262495_1 (nickname VARCHAR, undergraduate_enrollment VARCHAR)
SELECT nickname FROM table_262495_1 WHERE undergraduate_enrollment = 9386
### Context: CREATE TABLE table_262495_1 (nickname VARCHAR, undergraduate_enrollment VARCHAR) ### Question: When 9386 is the undergraduate enrollment what is the nickname? ### Answer: SELECT nickname FROM table_262495_1 WHERE undergraduate_enrollment = 9386
What was the choice of song where the original artist was Stevie Wonder?
CREATE TABLE table_26250189_1 (song_choice VARCHAR, original_artist VARCHAR)
SELECT song_choice FROM table_26250189_1 WHERE original_artist = "Stevie Wonder"
### Context: CREATE TABLE table_26250189_1 (song_choice VARCHAR, original_artist VARCHAR) ### Question: What was the choice of song where the original artist was Stevie Wonder? ### Answer: SELECT song_choice FROM table_26250189_1 WHERE original_artist = "Stevie Wonder"
What was Katie's order number when the theme was The Rolling Stones?
CREATE TABLE table_26250189_1 (order__number VARCHAR, theme VARCHAR)
SELECT order__number FROM table_26250189_1 WHERE theme = "The Rolling Stones"
### Context: CREATE TABLE table_26250189_1 (order__number VARCHAR, theme VARCHAR) ### Question: What was Katie's order number when the theme was The Rolling Stones? ### Answer: SELECT order__number FROM table_26250189_1 WHERE theme = "The Rolling Stones"
Who was the original artist of the chosen song when the theme was The Rolling Stones?
CREATE TABLE table_26250189_1 (original_artist VARCHAR, theme VARCHAR)
SELECT original_artist FROM table_26250189_1 WHERE theme = "The Rolling Stones"
### Context: CREATE TABLE table_26250189_1 (original_artist VARCHAR, theme VARCHAR) ### Question: Who was the original artist of the chosen song when the theme was The Rolling Stones? ### Answer: SELECT original_artist FROM table_26250189_1 WHERE theme = "The Rolling Stones"
Who was the original artist of the First solo theme?
CREATE TABLE table_26250155_1 (original_artist VARCHAR, theme VARCHAR)
SELECT original_artist FROM table_26250155_1 WHERE theme = "First Solo"
### Context: CREATE TABLE table_26250155_1 (original_artist VARCHAR, theme VARCHAR) ### Question: Who was the original artist of the First solo theme? ### Answer: SELECT original_artist FROM table_26250155_1 WHERE theme = "First Solo"
What is the number of song choices where the original artist was Bright Eyes?
CREATE TABLE table_26250155_1 (song_choice VARCHAR, original_artist VARCHAR)
SELECT COUNT(song_choice) FROM table_26250155_1 WHERE original_artist = "Bright Eyes"
### Context: CREATE TABLE table_26250155_1 (song_choice VARCHAR, original_artist VARCHAR) ### Question: What is the number of song choices where the original artist was Bright Eyes? ### Answer: SELECT COUNT(song_choice) FROM table_26250155_1 WHERE original_artist = "Bright Eyes"
Who was the original artist of the group performance theme?
CREATE TABLE table_26250155_1 (original_artist VARCHAR, theme VARCHAR)
SELECT original_artist FROM table_26250155_1 WHERE theme = "Group Performance"
### Context: CREATE TABLE table_26250155_1 (original_artist VARCHAR, theme VARCHAR) ### Question: Who was the original artist of the group performance theme? ### Answer: SELECT original_artist FROM table_26250155_1 WHERE theme = "Group Performance"
What is the order number of the Billboard Hot 100 Hits theme and the original artist was Sixpence None the Richer?
CREATE TABLE table_26250155_1 (order__number VARCHAR, theme VARCHAR, original_artist VARCHAR)
SELECT order__number FROM table_26250155_1 WHERE theme = "Billboard Hot 100 Hits" AND original_artist = "Sixpence None the Richer"
### Context: CREATE TABLE table_26250155_1 (order__number VARCHAR, theme VARCHAR, original_artist VARCHAR) ### Question: What is the order number of the Billboard Hot 100 Hits theme and the original artist was Sixpence None the Richer? ### Answer: SELECT order__number FROM table_26250155_1 WHERE theme = "Billboard Hot 100 Hits" AND original_artist = "Sixpence None the Richer"
What was the number of weeks that had a Billboard Hot 100 Hits theme, an order number of 3, and an original artist of Sixpence None the Richer?
CREATE TABLE table_26250155_1 (week__number VARCHAR, original_artist VARCHAR, theme VARCHAR, order__number VARCHAR)
SELECT COUNT(week__number) FROM table_26250155_1 WHERE theme = "Billboard Hot 100 Hits" AND order__number = "3" AND original_artist = "Sixpence None the Richer"
### Context: CREATE TABLE table_26250155_1 (week__number VARCHAR, original_artist VARCHAR, theme VARCHAR, order__number VARCHAR) ### Question: What was the number of weeks that had a Billboard Hot 100 Hits theme, an order number of 3, and an original artist of Sixpence None the Richer? ### Answer: SELECT COUNT(week__number) FROM table_26250155_1 WHERE theme = "Billboard Hot 100 Hits" AND order__number = "3" AND original_artist = "Sixpence None the Richer"
How many joined the Warriors?
CREATE TABLE table_262508_1 (joined VARCHAR, nickname VARCHAR)
SELECT COUNT(joined) FROM table_262508_1 WHERE nickname = "Warriors"
### Context: CREATE TABLE table_262508_1 (joined VARCHAR, nickname VARCHAR) ### Question: How many joined the Warriors? ### Answer: SELECT COUNT(joined) FROM table_262508_1 WHERE nickname = "Warriors"