answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT MAX(field_goals) FROM table_19722233_5 WHERE assists = 27
CREATE TABLE table_19722233_5 (field_goals INTEGER, assists VARCHAR)
what is the highest number of goals did the player with 27 asists score
SELECT assists FROM table_19722233_5 WHERE points = 251
CREATE TABLE table_19722233_5 (assists VARCHAR, points VARCHAR)
how many assists did the player who scored 251 points make
SELECT prod__number FROM table_1971734_1 WHERE filmed = "Aug/Sept 1968"
CREATE TABLE table_1971734_1 (prod__number VARCHAR, filmed VARCHAR)
What was the production number of the episode filmed in aug/sept 1968?
SELECT MAX(enrollment) FROM table_1971074_1
CREATE TABLE table_1971074_1 (enrollment INTEGER)
What's the highest enrollment among the schools?
SELECT joined FROM table_1971074_1 WHERE location = "Logan Township, Pennsylvania"
CREATE TABLE table_1971074_1 (joined VARCHAR, location VARCHAR)
When did the school from Logan Township, Pennsylvania join the Conference?
SELECT founded FROM table_1971074_1 WHERE type = "Private/Non-sectarian"
CREATE TABLE table_1971074_1 (founded VARCHAR, type VARCHAR)
When was the private/non-sectarian school founded?
SELECT location FROM table_1971074_1 WHERE nickname = "Panthers"
CREATE TABLE table_1971074_1 (location VARCHAR, nickname VARCHAR)
Where is the school whose students are nicknamed Panthers located?
SELECT COUNT(enrollment) FROM table_1971074_1 WHERE nickname = "Barons"
CREATE TABLE table_1971074_1 (enrollment VARCHAR, nickname VARCHAR)
How many different enrollment numbers are there for the school whose students are nicknamed Barons?
SELECT COUNT(joined) FROM table_1971074_1 WHERE location = "Logan Township, Pennsylvania"
CREATE TABLE table_1971074_1 (joined VARCHAR, location VARCHAR)
In how many different years did schools located in Logan Township, Pennsylvania join the Conference?
SELECT COUNT(isolation) FROM table_19716903_1 WHERE mountain_peak = "Jack Mountain"
CREATE TABLE table_19716903_1 (isolation VARCHAR, mountain_peak VARCHAR)
How many different isolation numbers does the Jack Mountain peak have?
SELECT steals FROM table_19722664_5 WHERE player = "Nicole Levandusky"
CREATE TABLE table_19722664_5 (steals VARCHAR, player VARCHAR)
How many steals did Nicole Levandusky make?
SELECT MAX(rebounds) FROM table_19722664_5 WHERE player = "Rhonda Mapp"
CREATE TABLE table_19722664_5 (rebounds INTEGER, player VARCHAR)
How many rebounds did Rhonda Mapp make?
SELECT MAX(assists) FROM table_19722664_5 WHERE player = "Nicole Levandusky"
CREATE TABLE table_19722664_5 (assists INTEGER, player VARCHAR)
What is the largest amount of assists that Nicole Levandusky made?
SELECT MAX(blocks) FROM table_19722664_5 WHERE rebounds = 35
CREATE TABLE table_19722664_5 (blocks INTEGER, rebounds VARCHAR)
What is the maximum number of blocks where rebounds equal 35?
SELECT assists FROM table_19722664_5 WHERE player = "DeLisha Milton-Jones"
CREATE TABLE table_19722664_5 (assists VARCHAR, player VARCHAR)
How many assists did Delisha Milton-Jones make?
SELECT MAX(total_apps) FROM table_19730892_1 WHERE name = "Eddie Carr"
CREATE TABLE table_19730892_1 (total_apps INTEGER, name VARCHAR)
Name the total apps for eddie carr
SELECT fa_cup_apps FROM table_19730892_1 WHERE name = "Arthur Morton"
CREATE TABLE table_19730892_1 (fa_cup_apps VARCHAR, name VARCHAR)
Name the fa cup apps for arthur morton
SELECT position FROM table_19730892_1 WHERE name = "Billy Price"
CREATE TABLE table_19730892_1 (position VARCHAR, name VARCHAR)
Name the position for billy price
SELECT COUNT(position) FROM table_19730892_1 WHERE name = "Don Clegg"
CREATE TABLE table_19730892_1 (position VARCHAR, name VARCHAR)
Name the total number of position for don clegg
SELECT nation FROM table_19730892_1 WHERE name = "Jeff Barker"
CREATE TABLE table_19730892_1 (nation VARCHAR, name VARCHAR)
Name the nation where jeff barker is from
SELECT fa_cup_apps FROM table_19730892_1 WHERE name = "George Green"
CREATE TABLE table_19730892_1 (fa_cup_apps VARCHAR, name VARCHAR)
Name the fa cup apps for george green
SELECT institution FROM table_1973648_1 WHERE founded = 1950
CREATE TABLE table_1973648_1 (institution VARCHAR, founded VARCHAR)
Name the school that was founded in 1950
SELECT MAX(founded) FROM table_1973648_1 WHERE nickname = "Sea Gulls"
CREATE TABLE table_1973648_1 (founded INTEGER, nickname VARCHAR)
Name the most founded for sea gulls
SELECT location FROM table_1973648_1 WHERE nickname = "Eagles"
CREATE TABLE table_1973648_1 (location VARCHAR, nickname VARCHAR)
Name the location for eagles
SELECT enrollment FROM table_1973648_1 WHERE joined = "2007-08"
CREATE TABLE table_1973648_1 (enrollment VARCHAR, joined VARCHAR)
Name the enrollment for 2007-08
SELECT MIN(new_points) FROM table_1973321_5 WHERE player = "Steffi Graf"
CREATE TABLE table_1973321_5 (new_points INTEGER, player VARCHAR)
Name the least new points for steffi graf
SELECT MAX(points) FROM table_1973321_5 WHERE status = "Champion, won in the final against Amélie Mauresmo"
CREATE TABLE table_1973321_5 (points INTEGER, status VARCHAR)
Name the most points for champion, won in the final against amélie mauresmo
SELECT further_cities FROM table_197286_4 WHERE country = "Slovakia" AND direction = "West"
CREATE TABLE table_197286_4 (further_cities VARCHAR, country VARCHAR, direction VARCHAR)
Name the further cities for slovakia and west direction
SELECT distance FROM table_197286_4 WHERE direction = "North"
CREATE TABLE table_197286_4 (distance VARCHAR, direction VARCHAR)
Name the distance from north
SELECT further_cities FROM table_197286_4 WHERE direction = "East" AND country = "Romania"
CREATE TABLE table_197286_4 (further_cities VARCHAR, direction VARCHAR, country VARCHAR)
Name the further cities for east romania
SELECT COUNT(direction) FROM table_197286_4 WHERE further_cities = "Debrecen"
CREATE TABLE table_197286_4 (direction VARCHAR, further_cities VARCHAR)
Name the number of direction for debrecen
SELECT nickname FROM table_1973816_1 WHERE founded = 1933
CREATE TABLE table_1973816_1 (nickname VARCHAR, founded VARCHAR)
What's the nickname of the students of the school founded in 1933?
SELECT COUNT(location) FROM table_1973816_1 WHERE institution = "Saint Joseph's College of Maine"
CREATE TABLE table_1973816_1 (location VARCHAR, institution VARCHAR)
On how many locations is the Saint Joseph's College of Maine located?
SELECT COUNT(joined) FROM table_1973842_1 WHERE location = "Chestnut Hill, Massachusetts"
CREATE TABLE table_1973842_1 (joined VARCHAR, location VARCHAR)
On how many different dates did schools from Chestnut Hill, Massachusetts join the conference?
SELECT type FROM table_1973842_1 WHERE nickname = "Tigers"
CREATE TABLE table_1973842_1 (type VARCHAR, nickname VARCHAR)
What is the type of the school whose students' nickname is tigers?
SELECT type FROM table_1973842_1 WHERE nickname = "Spirits"
CREATE TABLE table_1973842_1 (type VARCHAR, nickname VARCHAR)
What's the type of the school whose students' name is spirits?
SELECT institution FROM table_1973842_1 WHERE location = "Chestnut Hill, Massachusetts"
CREATE TABLE table_1973842_1 (institution VARCHAR, location VARCHAR)
What school is located in Chestnut Hill, Massachusetts?
SELECT type FROM table_1973842_1 WHERE location = "Macon, Georgia"
CREATE TABLE table_1973842_1 (type VARCHAR, location VARCHAR)
What type is the school located in Macon, Georgia?
SELECT nickname FROM table_1973842_2 WHERE location = "Maryville, Tennessee"
CREATE TABLE table_1973842_2 (nickname VARCHAR, location VARCHAR)
What's the nickname of the school in Maryville, Tennessee?
SELECT location FROM table_1973842_2 WHERE nickname = "Tigers"
CREATE TABLE table_1973842_2 (location VARCHAR, nickname VARCHAR)
Where is the school with nickname Tigers located?
SELECT nickname FROM table_1973842_2 WHERE joined = 2010
CREATE TABLE table_1973842_2 (nickname VARCHAR, joined VARCHAR)
What's the nickname of the students of the school that joined the Conference in 2010?
SELECT founded FROM table_1973816_2 WHERE institution = "Daniel Webster College"
CREATE TABLE table_1973816_2 (founded VARCHAR, institution VARCHAR)
When was Daniel Webster College founded?
SELECT location FROM table_1973816_2 WHERE institution = "Southern Vermont College"
CREATE TABLE table_1973816_2 (location VARCHAR, institution VARCHAR)
Where is Southern Vermont College located?
SELECT left FROM table_1973816_2 WHERE enrollment = 650
CREATE TABLE table_1973816_2 (left VARCHAR, enrollment VARCHAR)
In what year did the school with enrollment of 650 leave?
SELECT MIN(races) FROM table_19741316_1 WHERE position = "14th"
CREATE TABLE table_19741316_1 (races INTEGER, position VARCHAR)
What was the number of races in the season in which the team placed on the 14th position?
SELECT MIN(wins) FROM table_19741316_1
CREATE TABLE table_19741316_1 (wins INTEGER)
What is the lowest number of wins of a team?
SELECT institution FROM table_1974482_1 WHERE nickname = "Statesmen"
CREATE TABLE table_1974482_1 (institution VARCHAR, nickname VARCHAR)
Name the institution for statesmen
SELECT institution FROM table_1974482_1 WHERE nickname = "Yellowjackets"
CREATE TABLE table_1974482_1 (institution VARCHAR, nickname VARCHAR)
Name the institution for yellowjackets
SELECT type FROM table_1974482_1 WHERE institution = "Hobart College"
CREATE TABLE table_1974482_1 (type VARCHAR, institution VARCHAR)
Name the type for hobart college
SELECT location FROM table_1974482_1 WHERE founded = 1829
CREATE TABLE table_1974482_1 (location VARCHAR, founded VARCHAR)
Name the location for 1829
SELECT location FROM table_1974482_1 WHERE nickname = "Statesmen"
CREATE TABLE table_1974482_1 (location VARCHAR, nickname VARCHAR)
Name the location of statesmen
SELECT location FROM table_197446_1 WHERE term_ended = "January 3, 2011"
CREATE TABLE table_197446_1 (location VARCHAR, term_ended VARCHAR)
What location was the congressional service of which the term ended in January 3, 2011?
SELECT branch FROM table_197446_1 WHERE term_began = "January 3, 1985"
CREATE TABLE table_197446_1 (branch VARCHAR, term_began VARCHAR)
What branch was involved when the term began in January 3, 1985?
SELECT elected FROM table_197446_1 WHERE term_began = "January 3, 1989"
CREATE TABLE table_197446_1 (elected VARCHAR, term_began VARCHAR)
What year was the congressional service elected for a term beginning on January 3, 1989?
SELECT office FROM table_197446_1 WHERE term_ended = "January 3, 1993"
CREATE TABLE table_197446_1 (office VARCHAR, term_ended VARCHAR)
What group was in office when the term ended in January 3, 1993?
SELECT COUNT(term_began) FROM table_197446_1 WHERE term_ended = "January 3, 1989"
CREATE TABLE table_197446_1 (term_began VARCHAR, term_ended VARCHAR)
How many terms began when the term ended in January 3, 1989?
SELECT COUNT(total) FROM table_19744915_22 WHERE rank = 5
CREATE TABLE table_19744915_22 (total VARCHAR, rank VARCHAR)
How many different total points does the couple ranked at number 5 have?
SELECT couple FROM table_19744915_22 WHERE vote_percentage = "21.843%"
CREATE TABLE table_19744915_22 (couple VARCHAR, vote_percentage VARCHAR)
What couple had vote percentage of 21.843%?
SELECT MAX(judges) FROM table_19744915_22 WHERE rank = 5
CREATE TABLE table_19744915_22 (judges INTEGER, rank VARCHAR)
How many judges points did the couple ranked at number 5 have?
SELECT couple FROM table_19744915_22 WHERE public < 2.0
CREATE TABLE table_19744915_22 (couple VARCHAR, public INTEGER)
What couple had less than 2.0 points from the public?
SELECT COUNT(result) FROM table_19744915_17 WHERE couple = "Ellery and Frankie"
CREATE TABLE table_19744915_17 (result VARCHAR, couple VARCHAR)
What was the total result for couple Ellery and Frankie?
SELECT MIN(rank) FROM table_19744915_17 WHERE vote_percentage = "2.111%"
CREATE TABLE table_19744915_17 (rank INTEGER, vote_percentage VARCHAR)
If the vote percentage is 2.111%, what was the minimum rank?
SELECT MAX(rank) FROM table_19744915_17 WHERE total = 17
CREATE TABLE table_19744915_17 (rank INTEGER, total VARCHAR)
If the total is 17, what was the maximum rank amount?
SELECT vote_percentage FROM table_19744915_17 WHERE couple = "Todd and Susie"
CREATE TABLE table_19744915_17 (vote_percentage VARCHAR, couple VARCHAR)
For couple Todd and Susie, what was the vote percentage?
SELECT couple FROM table_19744915_18 WHERE rank = 9
CREATE TABLE table_19744915_18 (couple VARCHAR, rank VARCHAR)
When 9 is the rank who are the couple?
SELECT MAX(rank) FROM table_19744915_18 WHERE couple = "Roxanne and Daniel"
CREATE TABLE table_19744915_18 (rank INTEGER, couple VARCHAR)
When roxanne and daniel are the couple what is the highest rank?
SELECT MAX(total) FROM table_19744915_18 WHERE couple = "Ellery and Frankie"
CREATE TABLE table_19744915_18 (total INTEGER, couple VARCHAR)
When ellery and frankie are the couple what is the highest total?
SELECT result FROM table_19744915_18 WHERE public = 8
CREATE TABLE table_19744915_18 (result VARCHAR, public VARCHAR)
When 8 is the public what are the results?
SELECT MAX(rank) FROM table_19744915_18 WHERE result = "Safe" AND public = 8
CREATE TABLE table_19744915_18 (rank INTEGER, result VARCHAR, public VARCHAR)
When 8 is the public and the result is safe what is the highest rank?
SELECT karen FROM table_19744915_4 WHERE nicky = "2.5"
CREATE TABLE table_19744915_4 (karen VARCHAR, nicky VARCHAR)
Name the karen when nicky is 2.5
SELECT capacity FROM table_1974545_3 WHERE baseball_stadium = "Owl Athletic Complex"
CREATE TABLE table_1974545_3 (capacity VARCHAR, baseball_stadium VARCHAR)
What is the capacity for the school that has the Owl Athletic Complex baseball stadium?
SELECT softball_stadium FROM table_1974545_3 WHERE baseball_stadium = "Eastern Baseball Stadium"
CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, baseball_stadium VARCHAR)
What is the name of the softball stadium for the school that has Eastern Baseball Stadium?
SELECT softball_stadium FROM table_1974545_3 WHERE school = "UMass Boston"
CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, school VARCHAR)
What is the name of UMass Boston's softball stadium?
SELECT softball_stadium FROM table_1974545_3 WHERE school = "Rhode Island College"
CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, school VARCHAR)
What is the name of Rhode Island College's softball stadium?
SELECT COUNT(basketball_arena) FROM table_1974545_3 WHERE capacity = "3,000"
CREATE TABLE table_1974545_3 (basketball_arena VARCHAR, capacity VARCHAR)
How many basketball arenas are there that belong to a school with a capacity of 3,000?
SELECT baseball_stadium FROM table_1974545_3 WHERE basketball_arena = "The Murray Center"
CREATE TABLE table_1974545_3 (baseball_stadium VARCHAR, basketball_arena VARCHAR)
What is the name of the baseball stadium for the school with the Murray Center basketball arena?
SELECT location FROM table_1974545_2 WHERE institution = "Westfield State University"
CREATE TABLE table_1974545_2 (location VARCHAR, institution VARCHAR)
Where is the Westfield State University located?
SELECT founded FROM table_1974545_2 WHERE location = "Salem, Massachusetts"
CREATE TABLE table_1974545_2 (founded VARCHAR, location VARCHAR)
When was the school in Salem, Massachusetts located?
SELECT nickname FROM table_1974545_2 WHERE institution = "Westfield State University"
CREATE TABLE table_1974545_2 (nickname VARCHAR, institution VARCHAR)
What's the nickname of Westfield State University's students?
SELECT lec_sport FROM table_1974545_2 WHERE institution = "Fitchburg State University"
CREATE TABLE table_1974545_2 (lec_sport VARCHAR, institution VARCHAR)
What's Fitchburg State University's LEC sport?
SELECT location FROM table_1974545_2 WHERE nickname = "Falcons"
CREATE TABLE table_1974545_2 (location VARCHAR, nickname VARCHAR)
Where is the school whose students are nicknamed falcons located?
SELECT primary_conference FROM table_1974545_2 WHERE institution = "Salem State University"
CREATE TABLE table_1974545_2 (primary_conference VARCHAR, institution VARCHAR)
What's Salem State University's primary conference?
SELECT incumbent FROM table_19753079_36 WHERE district = "North Carolina 9"
CREATE TABLE table_19753079_36 (incumbent VARCHAR, district VARCHAR)
Name the incumbent for north carolina 9
SELECT COUNT(party) FROM table_19753079_36 WHERE district = "North Carolina 7"
CREATE TABLE table_19753079_36 (party VARCHAR, district VARCHAR)
Name the total party for north carolina 7
SELECT incumbent FROM table_19753079_36 WHERE candidates = "Sue Myrick (R) 69.0% Jeff Doctor (D) 31.0%"
CREATE TABLE table_19753079_36 (incumbent VARCHAR, candidates VARCHAR)
Name the incumbent for sue myrick (r) 69.0% jeff doctor (d) 31.0%
SELECT result FROM table_19753079_36 WHERE district = "North Carolina 7"
CREATE TABLE table_19753079_36 (result VARCHAR, district VARCHAR)
Name the result for north carolina 7
SELECT MAX(enrollment) FROM table_1974782_1 WHERE institution = "Babson College"
CREATE TABLE table_1974782_1 (enrollment INTEGER, institution VARCHAR)
What's Babson College's enrollment?
SELECT MAX(joined) FROM table_1974782_1 WHERE institution = "Clark University"
CREATE TABLE table_1974782_1 (joined INTEGER, institution VARCHAR)
When has Clark University joined the Conference?
SELECT type FROM table_1974782_1 WHERE location = "New London, Connecticut"
CREATE TABLE table_1974782_1 (type VARCHAR, location VARCHAR)
What's the type of the school in New London, Connecticut?
SELECT MAX(founded) FROM table_1974782_1 WHERE location = "Springfield, Massachusetts"
CREATE TABLE table_1974782_1 (founded INTEGER, location VARCHAR)
When was the school in Springfield, Massachusetts founded?
SELECT institution FROM table_1974782_1 WHERE location = "Worcester, Massachusetts"
CREATE TABLE table_1974782_1 (institution VARCHAR, location VARCHAR)
What school is located in Worcester, Massachusetts?
SELECT candidates FROM table_19753079_12 WHERE district = "Florida 13"
CREATE TABLE table_19753079_12 (candidates VARCHAR, district VARCHAR)
Who are the candidates in Florida 13 district?
SELECT COUNT(candidates) FROM table_19753079_12 WHERE first_elected = 1988
CREATE TABLE table_19753079_12 (candidates VARCHAR, first_elected VARCHAR)
How many different pairs of candidates were there for the district first elected in 1988?
SELECT candidates FROM table_19753079_12 WHERE district = "Florida 10"
CREATE TABLE table_19753079_12 (candidates VARCHAR, district VARCHAR)
Who were candidates in Florida 10 district?
SELECT party FROM table_19753079_12 WHERE district = "Florida 9"
CREATE TABLE table_19753079_12 (party VARCHAR, district VARCHAR)
What party got elected in Florida 9 district?
SELECT MIN(rnd) FROM table_19751479_4 WHERE fastest_lap = "#67 The Racer's Group"
CREATE TABLE table_19751479_4 (rnd INTEGER, fastest_lap VARCHAR)
What is the first round that had #67 the racer's group with the fastest lap?
SELECT COUNT(fastest_lap) FROM table_19751479_4 WHERE rnd = 10 AND pole_position = "#99 GAINSCO/Bob Stallings Racing"
CREATE TABLE table_19751479_4 (fastest_lap VARCHAR, rnd VARCHAR, pole_position VARCHAR)
How many races had #99 gainsco/bob stallings racing in round 10?
SELECT incumbent FROM table_19753079_8 WHERE first_elected = 2009
CREATE TABLE table_19753079_8 (incumbent VARCHAR, first_elected VARCHAR)
What incumbent was first elected in 2009?
SELECT first_elected FROM table_19753079_8 WHERE district = "California 7"
CREATE TABLE table_19753079_8 (first_elected VARCHAR, district VARCHAR)
How many were first elected in California 7?
SELECT district FROM table_19753079_8 WHERE incumbent = "George Miller"
CREATE TABLE table_19753079_8 (district VARCHAR, incumbent VARCHAR)
What district did George Miller belong to?