text
stringlengths
114
1.06k
### question: Which party has a first elected number bigger than 1939.0? ### answer: SELECT party FROM table_1342233_5 WHERE first_elected > 1939.0 ### context: CREATE TABLE table_1342233_5 (party VARCHAR, first_elected INTEGER)
### question: How many incumbents had a district of Arkansas 3? ### answer: SELECT COUNT(incumbent) FROM table_1342233_5 WHERE district = "Arkansas 3" ### context: CREATE TABLE table_1342233_5 (incumbent VARCHAR, district VARCHAR)
### question: What party did the incumbent from the Arkansas 5 district belong to? ### answer: SELECT party FROM table_1342249_5 WHERE district = "Arkansas 5" ### context: CREATE TABLE table_1342249_5 (party VARCHAR, district VARCHAR)
### question: What party did the incumbent of the Arkansas 6 district belong to? ### answer: SELECT party FROM table_1342249_5 WHERE district = "Arkansas 6" ### context: CREATE TABLE table_1342249_5 (party VARCHAR, district VARCHAR)
### question: What is the earliest years any of the incumbents were first elected? ### answer: SELECT MIN(first_elected) FROM table_1342249_5 ### context: CREATE TABLE table_1342249_5 (first_elected INTEGER)
### question: What party did incumbent Brooks Hays belong to? ### answer: SELECT party FROM table_1342249_5 WHERE incumbent = "Brooks Hays" ### context: CREATE TABLE table_1342249_5 (party VARCHAR, incumbent VARCHAR)
### question: What kind of party is the district in Alabama 1? ### answer: SELECT party FROM table_1342338_3 WHERE district = "Alabama 1" ### context: CREATE TABLE table_1342338_3 (party VARCHAR, district VARCHAR)
### question: How many in lost renomination results were elected first? ### answer: SELECT first_elected FROM table_1342338_3 WHERE result = "Lost renomination" ### context: CREATE TABLE table_1342338_3 (first_elected VARCHAR, result VARCHAR)
### question: How many in total were elected first in lost renomination? ### answer: SELECT COUNT(first_elected) FROM table_1342338_3 WHERE result = "Lost renomination" ### context: CREATE TABLE table_1342338_3 (first_elected VARCHAR, result VARCHAR)
### question: In what district was John E. Miller the incumbent? ### answer: SELECT district FROM table_1342338_5 WHERE incumbent = "John E. Miller" ### context: CREATE TABLE table_1342338_5 (district VARCHAR, incumbent VARCHAR)
### question: In how many districts was the incumbent David Delano Glover? ### answer: SELECT COUNT(district) FROM table_1342338_5 WHERE incumbent = "David Delano Glover" ### context: CREATE TABLE table_1342338_5 (district VARCHAR, incumbent VARCHAR)
### question: What year was incumbent Claude Fuller first elected? ### answer: SELECT first_elected FROM table_1342338_5 WHERE incumbent = "Claude Fuller" ### context: CREATE TABLE table_1342338_5 (first_elected VARCHAR, incumbent VARCHAR)
### question: Who ran in the election where Claude Fuller was the incumbent? ### answer: SELECT candidates FROM table_1342338_5 WHERE incumbent = "Claude Fuller" ### context: CREATE TABLE table_1342338_5 (candidates VARCHAR, incumbent VARCHAR)
### question: What is the result for thomas s. mcmillan? ### answer: SELECT result FROM table_1342359_39 WHERE incumbent = "Thomas S. McMillan" ### context: CREATE TABLE table_1342359_39 (result VARCHAR, incumbent VARCHAR)
### question: Name the candidate for south carolina 1? ### answer: SELECT candidates FROM table_1342359_39 WHERE district = "South Carolina 1" ### context: CREATE TABLE table_1342359_39 (candidates VARCHAR, district VARCHAR)
### question: What is the party for south carolina 3? ### answer: SELECT party FROM table_1342359_39 WHERE district = "South Carolina 3" ### context: CREATE TABLE table_1342359_39 (party VARCHAR, district VARCHAR)
### question: What is the result for south carolina 4? ### answer: SELECT result FROM table_1342359_39 WHERE district = "South Carolina 4" ### context: CREATE TABLE table_1342359_39 (result VARCHAR, district VARCHAR)
### question: what's the district with incumbent being richard j. welch ### answer: SELECT district FROM table_1342359_5 WHERE incumbent = "Richard J. Welch" ### context: CREATE TABLE table_1342359_5 (district VARCHAR, incumbent VARCHAR)
### question: what's the districtwith party being democratic ### answer: SELECT district FROM table_1342359_5 WHERE party = "Democratic" ### context: CREATE TABLE table_1342359_5 (district VARCHAR, party VARCHAR)
### question: what's the district with candidates being harry lane englebright (r) unopposed ### answer: SELECT district FROM table_1342359_5 WHERE candidates = "Harry Lane Englebright (R) Unopposed" ### context: CREATE TABLE table_1342359_5 (district VARCHAR, candidates VARCHAR)
### question: how many candidates with district being california 7 ### answer: SELECT COUNT(candidates) FROM table_1342359_5 WHERE district = "California 7" ### context: CREATE TABLE table_1342359_5 (candidates VARCHAR, district VARCHAR)
### question: what's the party with incumbent being william e. evans ### answer: SELECT party FROM table_1342359_5 WHERE incumbent = "William E. Evans" ### context: CREATE TABLE table_1342359_5 (party VARCHAR, incumbent VARCHAR)
### question: What was the result of the election featuring william madison whittington? ### answer: SELECT result FROM table_1342370_23 WHERE incumbent = "William Madison Whittington" ### context: CREATE TABLE table_1342370_23 (result VARCHAR, incumbent VARCHAR)
### question: what is the total number of results where the district is south carolina 5? ### answer: SELECT COUNT(result) FROM table_1342370_39 WHERE district = "South Carolina 5" ### context: CREATE TABLE table_1342370_39 (result VARCHAR, district VARCHAR)
### question: who is the candidate in district south carolina 2? ### answer: SELECT candidates FROM table_1342370_39 WHERE district = "South Carolina 2" ### context: CREATE TABLE table_1342370_39 (candidates VARCHAR, district VARCHAR)
### question: what year was william francis stevenson first elected? ### answer: SELECT first_elected FROM table_1342370_39 WHERE incumbent = "William Francis Stevenson" ### context: CREATE TABLE table_1342370_39 (first_elected VARCHAR, incumbent VARCHAR)
### question: What political party for burton e. sweet? ### answer: SELECT party FROM table_1342451_13 WHERE incumbent = "Burton E. Sweet" ### context: CREATE TABLE table_1342451_13 (party VARCHAR, incumbent VARCHAR)
### question: how many locations have a record of 14-38? ### answer: SELECT COUNT(location_attendance) FROM table_13464416_7 WHERE record = "14-38" ### context: CREATE TABLE table_13464416_7 (location_attendance VARCHAR, record VARCHAR)
### question: Who wrote the episode that received 1.83 million U.S. viewers? ### answer: SELECT written_by FROM table_13477468_3 WHERE us_viewers__millions_ = "1.83" ### context: CREATE TABLE table_13477468_3 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
### question: What is the original air date of the episode directed by Jeff Melman? ### answer: SELECT original_air_date FROM table_13477468_3 WHERE directed_by = "Jeff Melman" ### context: CREATE TABLE table_13477468_3 (original_air_date VARCHAR, directed_by VARCHAR)
### question: Which launch date involved the Driade? ### answer: SELECT launched FROM table_13537940_1 WHERE name = "Driade" ### context: CREATE TABLE table_13537940_1 (launched VARCHAR, name VARCHAR)
### question: What is the median household income of sacramento? ### answer: SELECT median_household_income FROM table_1356555_2 WHERE county = "Sacramento" ### context: CREATE TABLE table_1356555_2 (median_household_income VARCHAR, county VARCHAR)
### question: What is the per capita income of shasta? ### answer: SELECT per_capita_income FROM table_1356555_2 WHERE county = "Shasta" ### context: CREATE TABLE table_1356555_2 (per_capita_income VARCHAR, county VARCHAR)
### question: Name the median family income for riverside ### answer: SELECT median_family_income FROM table_1356555_2 WHERE county = "Riverside" ### context: CREATE TABLE table_1356555_2 (median_family_income VARCHAR, county VARCHAR)
### question: What is the median household income of butte? ### answer: SELECT median_household_income FROM table_1356555_2 WHERE county = "Butte" ### context: CREATE TABLE table_1356555_2 (median_household_income VARCHAR, county VARCHAR)
### question: What club got 239 points against? ### answer: SELECT club FROM table_13564702_4 WHERE points_against = "239" ### context: CREATE TABLE table_13564702_4 (club VARCHAR, points_against VARCHAR)
### question: What is the value of the points column when the value of the column lost is "lost" ### answer: SELECT points FROM table_13564702_4 WHERE "lost" = "lost" ### context: CREATE TABLE table_13564702_4 (points VARCHAR)
### question: How many tries against got the club with 62 tries for? ### answer: SELECT tries_against FROM table_13564702_4 WHERE tries_for = "62" ### context: CREATE TABLE table_13564702_4 (tries_against VARCHAR, tries_for VARCHAR)
### question: What group info is available for the 56.5 kg weight? ### answer: SELECT group FROM table_1358608_2 WHERE weight__kg_ = "56.5" ### context: CREATE TABLE table_1358608_2 (group VARCHAR, weight__kg_ VARCHAR)
### question: What was the result for the railway stakes race? ### answer: SELECT result FROM table_1358608_2 WHERE race = "Railway Stakes" ### context: CREATE TABLE table_1358608_2 (result VARCHAR, race VARCHAR)
### question: What district is incument terry kilgore from? ### answer: SELECT district FROM table_13618584_2 WHERE incumbent = "Terry Kilgore" ### context: CREATE TABLE table_13618584_2 (district VARCHAR, incumbent VARCHAR)
### question: How many times was incumbent onzlee ware elected? ### answer: SELECT COUNT(elected) FROM table_13618584_2 WHERE incumbent = "Onzlee Ware" ### context: CREATE TABLE table_13618584_2 (elected VARCHAR, incumbent VARCHAR)
### question: How many election results are there from the 19th district? ### answer: SELECT COUNT(2007 AS _result) FROM table_13618584_2 WHERE district = "19th" ### context: CREATE TABLE table_13618584_2 (district VARCHAR)
### question: What was the last year someone was elected to the 14th district? ### answer: SELECT MAX(elected) FROM table_13618584_2 WHERE district = "14th" ### context: CREATE TABLE table_13618584_2 (elected INTEGER, district VARCHAR)
### question: What was the score against san antonio? ### answer: SELECT score FROM table_13619053_4 WHERE team = "San Antonio" ### context: CREATE TABLE table_13619053_4 (score VARCHAR, team VARCHAR)
### question: How many games did the team play when they were 1-3? ### answer: SELECT COUNT(score) FROM table_13619053_4 WHERE record = "1-3" ### context: CREATE TABLE table_13619053_4 (score VARCHAR, record VARCHAR)
### question: Who was the opposing team for game 53? ### answer: SELECT team FROM table_13619135_6 WHERE game = 53 ### context: CREATE TABLE table_13619135_6 (team VARCHAR, game VARCHAR)
### question: How many games were played when the record was 26-21? ### answer: SELECT COUNT(game) FROM table_13619135_6 WHERE record = "26-21" ### context: CREATE TABLE table_13619135_6 (game VARCHAR, record VARCHAR)
### question: How many people had the high assists @ minnesota? ### answer: SELECT COUNT(high_assists) FROM table_13619135_7 WHERE team = "@ Minnesota" ### context: CREATE TABLE table_13619135_7 (high_assists VARCHAR, team VARCHAR)
### question: Who was the high rebounder against charlotte? ### answer: SELECT high_rebounds FROM table_13619135_7 WHERE team = "Charlotte" ### context: CREATE TABLE table_13619135_7 (high_rebounds VARCHAR, team VARCHAR)
### question: Where did the team play and what was the attendance against new jersey? ### answer: SELECT location_attendance FROM table_13619135_7 WHERE team = "New Jersey" ### context: CREATE TABLE table_13619135_7 (location_attendance VARCHAR, team VARCHAR)
### question: What day was the attendance at the staples center 18,176? ### answer: SELECT date FROM table_13619135_7 WHERE location_attendance = "Staples Center 18,176" ### context: CREATE TABLE table_13619135_7 (date VARCHAR, location_attendance VARCHAR)
### question: what's the turing complete with numeral system being decimal ### answer: SELECT turing_complete FROM table_13636_1 WHERE numeral_system = "Decimal" ### context: CREATE TABLE table_13636_1 (turing_complete VARCHAR, numeral_system VARCHAR)
### question: what's the computing mechanbeingm with name being atanasoff–berry computer (us) ### answer: SELECT computing_mechanism FROM table_13636_1 WHERE name = "Atanasoff–Berry Computer (US)" ### context: CREATE TABLE table_13636_1 (computing_mechanism VARCHAR, name VARCHAR)
### question: what's the name with first operational being march 1945 ### answer: SELECT name FROM table_13636_1 WHERE first_operational = "March 1945" ### context: CREATE TABLE table_13636_1 (name VARCHAR, first_operational VARCHAR)
### question: what's the computing mechanbeingm with first operational being february 1944 ### answer: SELECT computing_mechanism FROM table_13636_1 WHERE first_operational = "February 1944" ### context: CREATE TABLE table_13636_1 (computing_mechanism VARCHAR, first_operational VARCHAR)
### question: what's the turing complete with name being atanasoff–berry computer (us) ### answer: SELECT turing_complete FROM table_13636_1 WHERE name = "Atanasoff–Berry Computer (US)" ### context: CREATE TABLE table_13636_1 (turing_complete VARCHAR, name VARCHAR)
### question: what's the first operational with programming being not programmable—single purpose ### answer: SELECT first_operational FROM table_13636_1 WHERE programming = "Not programmable—single purpose" ### context: CREATE TABLE table_13636_1 (first_operational VARCHAR, programming VARCHAR)
### question: What country has a 5.5 mark for security? ### answer: SELECT rank FROM table_13677808_1 WHERE security = "5.5" ### context: CREATE TABLE table_13677808_1 (rank VARCHAR, security VARCHAR)
### question: How many times is denmark ranked in technology? ### answer: SELECT COUNT(technology) FROM table_13677808_1 WHERE rank = "Denmark" ### context: CREATE TABLE table_13677808_1 (technology VARCHAR, rank VARCHAR)
### question: What is the environment rating of the country with an overall average rating of 4.7? ### answer: SELECT environment FROM table_13677808_1 WHERE overall__average_ = "4.7" ### context: CREATE TABLE table_13677808_1 (environment VARCHAR, overall__average_ VARCHAR)
### question: What is the migration rating when trade is 5.7? ### answer: SELECT migration FROM table_13677808_1 WHERE trade = "5.7" ### context: CREATE TABLE table_13677808_1 (migration VARCHAR, trade VARCHAR)
### question: What is the lowest PF? ### answer: SELECT MIN(pf) FROM table_1370559_1 ### context: CREATE TABLE table_1370559_1 (pf INTEGER)
### question: What is the PA when the PF is 77? ### answer: SELECT pa FROM table_1370559_1 WHERE pf = 77 ### context: CREATE TABLE table_1370559_1 (pa VARCHAR, pf VARCHAR)
### question: what's the won with try bonus being 8 ### answer: SELECT won FROM table_13758945_3 WHERE try_bonus = "8" ### context: CREATE TABLE table_13758945_3 (won VARCHAR, try_bonus VARCHAR)
### question: what's the club with losing bonus being 1 ### answer: SELECT club FROM table_13758945_3 WHERE losing_bonus = "1" ### context: CREATE TABLE table_13758945_3 (club VARCHAR, losing_bonus VARCHAR)
### question: how many losing bonus with won being 10 and points against being 283 ### answer: SELECT COUNT(losing_bonus) FROM table_13758945_3 WHERE won = "10" AND points_against = "283" ### context: CREATE TABLE table_13758945_3 (losing_bonus VARCHAR, won VARCHAR, points_against VARCHAR)
### question: how many points against with tries for being 43 ### answer: SELECT COUNT(points_against) FROM table_13758945_3 WHERE tries_for = "43" ### context: CREATE TABLE table_13758945_3 (points_against VARCHAR, tries_for VARCHAR)
### question: what's the points with tries for being 64 ### answer: SELECT points FROM table_13758945_3 WHERE tries_for = "64" ### context: CREATE TABLE table_13758945_3 (points VARCHAR, tries_for VARCHAR)
### question: what's the won with points against being 597 ### answer: SELECT won FROM table_13758945_3 WHERE points_against = "597" ### context: CREATE TABLE table_13758945_3 (won VARCHAR, points_against VARCHAR)
### question: What is the type of the player whose transfer fee was €20m? ### answer: SELECT type FROM table_13770460_3 WHERE transfer_fee = "€20M" ### context: CREATE TABLE table_13770460_3 (type VARCHAR, transfer_fee VARCHAR)
### question: What is the EU status of ESP? ### answer: SELECT eu FROM table_13770460_3 WHERE country = "ESp" ### context: CREATE TABLE table_13770460_3 (eu VARCHAR, country VARCHAR)
### question: How many numbers are ending in 1 year? ### answer: SELECT COUnT AS n FROM table_13770460_3 WHERE ends = "1 year" ### context: CREATE TABLE table_13770460_3 (COUnT VARCHAR, ends VARCHAR)
### question: what is the nme of the song performed by billy vaughn? ### answer: SELECT song_title FROM table_13804825_2 WHERE artist = "Billy Vaughn" ### context: CREATE TABLE table_13804825_2 (song_title VARCHAR, artist VARCHAR)
### question: What is highest place reached by artist Ray Adams? ### answer: SELECT MAX(position) FROM table_13805773_2 WHERE artist = "Ray Adams" ### context: CREATE TABLE table_13805773_2 (position INTEGER, artist VARCHAR)
### question: What is the title of the song that received 259 points? ### answer: SELECT song_title FROM table_13805773_2 WHERE points = 259 ### context: CREATE TABLE table_13805773_2 (song_title VARCHAR, points VARCHAR)
### question: how heavy is the maximum ### answer: SELECT MAX(per_lift) FROM table_13950065_1 ### context: CREATE TABLE table_13950065_1 (per_lift INTEGER)
### question: how many channels were gained in 1997 ### answer: SELECT COUNT(other_programming_sources) FROM table_1397655_1 WHERE year_acquired = 1997 ### context: CREATE TABLE table_1397655_1 (other_programming_sources VARCHAR, year_acquired VARCHAR)
### question: how any were gained as the chan ### answer: SELECT COUNT(year_acquired) FROM table_1397655_1 WHERE station = "CHAN" ### context: CREATE TABLE table_1397655_1 (year_acquired VARCHAR, station VARCHAR)
### question: how many is the minimum for citv ### answer: SELECT MIN(year_acquired) FROM table_1397655_1 WHERE station = "CITV" ### context: CREATE TABLE table_1397655_1 (year_acquired INTEGER, station VARCHAR)
### question: where is citv located ### answer: SELECT city FROM table_1397655_1 WHERE station = "CITV" ### context: CREATE TABLE table_1397655_1 (city VARCHAR, station VARCHAR)
### question: which station is located in edmonton ### answer: SELECT station FROM table_1397655_1 WHERE city = "Edmonton" ### context: CREATE TABLE table_1397655_1 (station VARCHAR, city VARCHAR)
### question: What was the outcome for the match in 1989? ### answer: SELECT outcome FROM table_1399994_5 WHERE year = "1989" ### context: CREATE TABLE table_1399994_5 (outcome VARCHAR, year VARCHAR)
### question: How many locations hosted Claudia Kohde-Kilsch Eva Pfaff? ### answer: SELECT COUNT(location) FROM table_1399994_5 WHERE opponents = "Claudia Kohde-Kilsch Eva Pfaff" ### context: CREATE TABLE table_1399994_5 (location VARCHAR, opponents VARCHAR)
### question: Who were all of the opponents in 1984? ### answer: SELECT opponents FROM table_1399994_5 WHERE year = "1984" ### context: CREATE TABLE table_1399994_5 (opponents VARCHAR, year VARCHAR)
### question: How many partners were there in 1988? ### answer: SELECT COUNT(partner) FROM table_1399994_5 WHERE year = "1988" ### context: CREATE TABLE table_1399994_5 (partner VARCHAR, year VARCHAR)
### question: How tall is Maksim Botin? ### answer: SELECT height FROM table_14038363_1 WHERE player = "Maksim Botin" ### context: CREATE TABLE table_14038363_1 (height VARCHAR, player VARCHAR)
### question: What is Maksim Botin's position? ### answer: SELECT position FROM table_14038363_1 WHERE player = "Maksim Botin" ### context: CREATE TABLE table_14038363_1 (position VARCHAR, player VARCHAR)
### question: What is Roman Bragin's position? ### answer: SELECT position FROM table_14038363_1 WHERE player = "Roman Bragin" ### context: CREATE TABLE table_14038363_1 (position VARCHAR, player VARCHAR)
### question: How many position does Teodor Salparov play on? ### answer: SELECT COUNT(position) FROM table_14038363_1 WHERE player = "Teodor Salparov" ### context: CREATE TABLE table_14038363_1 (position VARCHAR, player VARCHAR)
### question: what is the minimum points with goals for/against being 8-5 ### answer: SELECT MIN(points) FROM table_14181578_1 WHERE goals_for_against = "8-5" ### context: CREATE TABLE table_14181578_1 (points INTEGER, goals_for_against VARCHAR)
### question: what's the w-l-d with position being 1 ### answer: SELECT w_l_d FROM table_14181578_1 WHERE position = 1 ### context: CREATE TABLE table_14181578_1 (w_l_d VARCHAR, position VARCHAR)
### question: who is the the club (city/town) with goals for/against being 14-2 ### answer: SELECT club__city_town_ FROM table_14181578_1 WHERE goals_for_against = "14-2" ### context: CREATE TABLE table_14181578_1 (club__city_town_ VARCHAR, goals_for_against VARCHAR)
### question: what's the goals for/against with w-l-d being 3-1-1 ### answer: SELECT goals_for_against FROM table_14181578_1 WHERE w_l_d = "3-1-1" ### context: CREATE TABLE table_14181578_1 (goals_for_against VARCHAR, w_l_d VARCHAR)
### question: what is the minimum games played with goals for/against being 7-5 ### answer: SELECT MIN(games_played) FROM table_14181578_1 WHERE goals_for_against = "7-5" ### context: CREATE TABLE table_14181578_1 (games_played INTEGER, goals_for_against VARCHAR)
### question: What is the nationality of the player whose college/junior/club team (league) is Seattle Thunderbirds (WHL)? ### answer: SELECT nationality FROM table_14209245_9 WHERE college_junior_club_team__league_ = "Seattle Thunderbirds (WHL)" ### context: CREATE TABLE table_14209245_9 (nationality VARCHAR, college_...
### question: What is the college/junior/club team (league) of the player who was pick number 130? ### answer: SELECT college_junior_club_team__league_ FROM table_14209245_9 WHERE pick__number = "130" ### context: CREATE TABLE table_14209245_9 (college_junior_club_team__league_ VARCHAR, pick__number VARCHAR)
### question: What is the pick number for round 2? ### answer: SELECT pick__number FROM table_14209245_9 WHERE round = 2 ### context: CREATE TABLE table_14209245_9 (pick__number VARCHAR, round VARCHAR)
### question: what time is mon may 26 and fri may 30 is 18' 28.27 122.599mph? ### answer: SELECT mon_26_may FROM table_14209455_1 WHERE fri_30_may = "18' 28.27 122.599mph" ### context: CREATE TABLE table_14209455_1 (mon_26_may VARCHAR, fri_30_may VARCHAR)
### question: what tims is wed may 28 and mon may 26 is 17' 58.34 125.960mph? ### answer: SELECT wed_28_may FROM table_14209455_1 WHERE mon_26_may = "17' 58.34 125.960mph" ### context: CREATE TABLE table_14209455_1 (wed_28_may VARCHAR, mon_26_may VARCHAR)