text
stringlengths
114
1.06k
### question: How many different numbers of B shares does Handelsbanken fonder have? ### answer: SELECT COUNT(b_shares) FROM table_206359_1 WHERE shareholder_name = "Handelsbanken fonder" ### context: CREATE TABLE table_206359_1 (b_shares VARCHAR, shareholder_name VARCHAR)
### question: What's the green (SW) of the model with charcoal/white interior/roof? ### answer: SELECT MIN(green__sw_) FROM table_2066296_5 WHERE interior_roof = "Charcoal/white" ### context: CREATE TABLE table_2066296_5 (green__sw_ INTEGER, interior_roof VARCHAR)
### question: How many different results for red (e8) does the model with parchment/saddle interior/roof have? ### answer: SELECT COUNT(red__e8_) FROM table_2066296_5 WHERE interior_roof = "Parchment/saddle" ### context: CREATE TABLE table_2066296_5 (red__e8_ VARCHAR, interior_roof VARCHAR)
### question: How many different total results are there for the model with parchment/black interior/roof? ### answer: SELECT COUNT(totals) FROM table_2066296_5 WHERE interior_roof = "Parchment/black" ### context: CREATE TABLE table_2066296_5 (totals VARCHAR, interior_roof VARCHAR)
### question: Where did aaron wagner go to college ### answer: SELECT college FROM table_20649850_1 WHERE player = "Aaron Wagner" ### context: CREATE TABLE table_20649850_1 (college VARCHAR, player VARCHAR)
### question: Where did the ol go to college? ### answer: SELECT college FROM table_20649850_1 WHERE position = "OL" ### context: CREATE TABLE table_20649850_1 (college VARCHAR, position VARCHAR)
### question: Name the number for new mexico ### answer: SELECT MIN(pick__number) FROM table_20649850_1 WHERE college = "New Mexico" ### context: CREATE TABLE table_20649850_1 (pick__number INTEGER, college VARCHAR)
### question: Name the number for db ### answer: SELECT COUNT(pick__number) FROM table_20649850_1 WHERE position = "DB" ### context: CREATE TABLE table_20649850_1 (pick__number VARCHAR, position VARCHAR)
### question: Name the player for ol ### answer: SELECT player FROM table_20649850_1 WHERE position = "OL" ### context: CREATE TABLE table_20649850_1 (player VARCHAR, position VARCHAR)
### question: Name the number for dl ### answer: SELECT pick__number FROM table_20649850_1 WHERE position = "DL" ### context: CREATE TABLE table_20649850_1 (pick__number VARCHAR, position VARCHAR)
### question: Which companies have a free float of 0.2726? ### answer: SELECT company FROM table_20667854_1 WHERE free_float = "0.2726" ### context: CREATE TABLE table_20667854_1 (company VARCHAR, free_float VARCHAR)
### question: What is every BSE code for a free float of 0.2726? ### answer: SELECT bse_code FROM table_20667854_1 WHERE free_float = "0.2726" ### context: CREATE TABLE table_20667854_1 (bse_code VARCHAR, free_float VARCHAR)
### question: What is every GICS sector for free float of 0.3180? ### answer: SELECT gics_sector FROM table_20667854_1 WHERE free_float = "0.3180" ### context: CREATE TABLE table_20667854_1 (gics_sector VARCHAR, free_float VARCHAR)
### question: What is every company with an index weighting % of 1 and the city of Dimitrovgrad? ### answer: SELECT company FROM table_20667854_1 WHERE index_weighting___percentage = "1" AND city = "Dimitrovgrad" ### context: CREATE TABLE table_20667854_1 (company VARCHAR, index_weighting___percentage VARCHAR, city VAR...
### question: How many GICS sectors have a free float of 0.2391? ### answer: SELECT COUNT(gics_sector) FROM table_20667854_1 WHERE free_float = "0.2391" ### context: CREATE TABLE table_20667854_1 (gics_sector VARCHAR, free_float VARCHAR)
### question: How many values of free float for the BSE code of 4EH? ### answer: SELECT COUNT(free_float) FROM table_20667854_1 WHERE bse_code = "4EH" ### context: CREATE TABLE table_20667854_1 (free_float VARCHAR, bse_code VARCHAR)
### question: How many polls taken on different dates show an undecided percentage of 25%? ### answer: SELECT COUNT(date_of_opinion_poll) FROM table_20683381_2 WHERE undecided = "25%" ### context: CREATE TABLE table_20683381_2 (date_of_opinion_poll VARCHAR, undecided VARCHAR)
### question: When was Quantum Research's poll conducted? ### answer: SELECT date_of_opinion_poll FROM table_20683381_2 WHERE conductor = "Quantum Research" ### context: CREATE TABLE table_20683381_2 (date_of_opinion_poll VARCHAR, conductor VARCHAR)
### question: Who conducted the poll with sample size of 2000 that shows 18% undecided? ### answer: SELECT conductor FROM table_20683381_2 WHERE undecided = "18%" AND sample_size = 2000 ### context: CREATE TABLE table_20683381_2 (conductor VARCHAR, undecided VARCHAR, sample_size VARCHAR)
### question: How tall is the contestant from Ecuador? ### answer: SELECT height__ft_ FROM table_20669355_2 WHERE country = "Ecuador" ### context: CREATE TABLE table_20669355_2 (height__ft_ VARCHAR, country VARCHAR)
### question: How tall is the contestant from Aruba? ### answer: SELECT height__ft_ FROM table_20669355_2 WHERE country = "Aruba" ### context: CREATE TABLE table_20669355_2 (height__ft_ VARCHAR, country VARCHAR)
### question: What country is the contestant from San Francisco de Yojoa from? ### answer: SELECT country FROM table_20669355_2 WHERE hometown = "San Francisco de Yojoa" ### context: CREATE TABLE table_20669355_2 (country VARCHAR, hometown VARCHAR)
### question: How many different heights are there for the contestants from Warsaw? ### answer: SELECT COUNT(height__ft_) FROM table_20669355_2 WHERE hometown = "Warsaw" ### context: CREATE TABLE table_20669355_2 (height__ft_ VARCHAR, hometown VARCHAR)
### question: What is the total of countys where Obama is popular by 35.44%? ### answer: SELECT COUNT(county) FROM table_20688030_1 WHERE obama_percentage = "35.44%" ### context: CREATE TABLE table_20688030_1 (county VARCHAR, obama_percentage VARCHAR)
### question: What are McCain's Percent when Obama has 36.47%? ### answer: SELECT mccain_percentage FROM table_20688030_1 WHERE obama_percentage = "36.47%" ### context: CREATE TABLE table_20688030_1 (mccain_percentage VARCHAR, obama_percentage VARCHAR)
### question: What is McCains percent when Obamas is 39.13% ### answer: SELECT COUNT(mccain_number) FROM table_20688030_1 WHERE obama_percentage = "39.13%" ### context: CREATE TABLE table_20688030_1 (mccain_number VARCHAR, obama_percentage VARCHAR)
### question: What is the maximum Obama supporters in Wayne county? ### answer: SELECT MAX(obama_number) FROM table_20688030_1 WHERE county = "Wayne" ### context: CREATE TABLE table_20688030_1 (obama_number INTEGER, county VARCHAR)
### question: Name th epopulation may for general terrero ### answer: SELECT population__may_1, _2000_ FROM table_2068761_1 WHERE barangay = "General Terrero" ### context: CREATE TABLE table_2068761_1 (population__may_1 VARCHAR, _2000_ VARCHAR, barangay VARCHAR)
### question: What is the season number for Series #23, the Runway Job? ### answer: SELECT season__number FROM table_20704243_3 WHERE series__number = 23 ### context: CREATE TABLE table_20704243_3 (season__number VARCHAR, series__number VARCHAR)
### question: What series was directed by Mark Roskin? ### answer: SELECT MIN(series__number) FROM table_20704243_3 WHERE directed_by = "Mark Roskin" ### context: CREATE TABLE table_20704243_3 (series__number INTEGER, directed_by VARCHAR)
### question: How many were written by Peter Winther? ### answer: SELECT COUNT(written_by) FROM table_20704243_3 WHERE directed_by = "Peter Winther" ### context: CREATE TABLE table_20704243_3 (written_by VARCHAR, directed_by VARCHAR)
### question: How many directors were in Season 2? ### answer: SELECT COUNT(directed_by) FROM table_20704243_3 WHERE season__number = 2 ### context: CREATE TABLE table_20704243_3 (directed_by VARCHAR, season__number VARCHAR)
### question: When was the episode written by Albert Kim aired for the first time? ### answer: SELECT original_air_date FROM table_20704243_4 WHERE written_by = "Albert Kim" ### context: CREATE TABLE table_20704243_4 (original_air_date VARCHAR, written_by VARCHAR)
### question: Name the series number for m. scott veach & rebecca kirsch ### answer: SELECT series__number FROM table_20704243_5 WHERE written_by = "M. Scott Veach & Rebecca Kirsch" ### context: CREATE TABLE table_20704243_5 (series__number VARCHAR, written_by VARCHAR)
### question: Name the number of viewers for series number 50 ### answer: SELECT us_viewers__in_millions_ FROM table_20704243_5 WHERE series__number = 50 ### context: CREATE TABLE table_20704243_5 (us_viewers__in_millions_ VARCHAR, series__number VARCHAR)
### question: Name who directed season 1 ### answer: SELECT directed_by FROM table_20704243_5 WHERE season__number = 1 ### context: CREATE TABLE table_20704243_5 (directed_by VARCHAR, season__number VARCHAR)
### question: What is the moment of intertia in torsion (j) Cm4) for the beam height (mm) 120??= ### answer: SELECT COUNT(moment_of_inertia_in_torsion__j___cm_4__) FROM table_2071644_1 WHERE beam_height__mm_ = 120 ### context: CREATE TABLE table_2071644_1 (moment_of_inertia_in_torsion__j___cm_4__ VARCHAR, beam_height__...
### question: What is the cross section area (cm 2) for the moment of intertia in torsion (j) (cm 4) 2.54? ### answer: SELECT cross_section_area__cm_2__ FROM table_2071644_1 WHERE moment_of_inertia_in_torsion__j___cm_4__ = "2.54" ### context: CREATE TABLE table_2071644_1 (cross_section_area__cm_2__ VARCHAR, moment_of_i...
### question: What is the flange thickness (mm) for the weight (kg/m) 6.0?Wg ### answer: SELECT flange_thickness__mm_ FROM table_2071644_1 WHERE weight__kg_m_ = "6.0" ### context: CREATE TABLE table_2071644_1 (flange_thickness__mm_ VARCHAR, weight__kg_m_ VARCHAR)
### question: What is the number for the moment of intertia in torsion (j) (cm 4) for the 4.7 web thickness (mm)? ### answer: SELECT COUNT(moment_of_inertia_in_torsion__j___cm_4__) FROM table_2071644_1 WHERE web_thickness__mm_ = "4.7" ### context: CREATE TABLE table_2071644_1 (moment_of_inertia_in_torsion__j___cm_4__ V...
### question: What is the flange thickness (mm) for the weight (kg/m) 10.4? ### answer: SELECT flange_thickness__mm_ FROM table_2071644_1 WHERE weight__kg_m_ = "10.4" ### context: CREATE TABLE table_2071644_1 (flange_thickness__mm_ VARCHAR, weight__kg_m_ VARCHAR)
### question: What is the flange width (mm) for cross section area (cm 2) 16.4? ### answer: SELECT COUNT(flange_width__mm_) FROM table_2071644_1 WHERE cross_section_area__cm_2__ = "16.4" ### context: CREATE TABLE table_2071644_1 (flange_width__mm_ VARCHAR, cross_section_area__cm_2__ VARCHAR)
### question: In what round was lyon (32) a 5 seed? ### answer: SELECT lyon__32_ FROM table_20711545_1 WHERE seed = 5 ### context: CREATE TABLE table_20711545_1 (lyon__32_ VARCHAR, seed VARCHAR)
### question: How many items were recorded marseille (32 draw) was a 2 seed? ### answer: SELECT COUNT(marseille__32_draw_) FROM table_20711545_1 WHERE seed = 2 ### context: CREATE TABLE table_20711545_1 (marseille__32_draw_ VARCHAR, seed VARCHAR)
### question: What is the seed for lyon (32) was DNQ? ### answer: SELECT MAX(seed) FROM table_20711545_1 WHERE lyon__32_ = "DNQ" ### context: CREATE TABLE table_20711545_1 (seed INTEGER, lyon__32_ VARCHAR)
### question: What was the result for Paris(48-byes) for 3 seed? ### answer: SELECT paris__48___byes_ FROM table_20711545_1 WHERE seed = 3 ### context: CREATE TABLE table_20711545_1 (paris__48___byes_ VARCHAR, seed VARCHAR)
### question: What was McCain's percentage when Obama had 64.39% of the vote? ### answer: SELECT mccain_percentage FROM table_20722805_1 WHERE obama_percentage = "64.39%" ### context: CREATE TABLE table_20722805_1 (mccain_percentage VARCHAR, obama_percentage VARCHAR)
### question: What was McCain's vote when Obama had 48.35% ### answer: SELECT MIN(mccain_number) FROM table_20722805_1 WHERE obama_percentage = "48.35%" ### context: CREATE TABLE table_20722805_1 (mccain_number INTEGER, obama_percentage VARCHAR)
### question: How many votes did Obama have at 32.12% ### answer: SELECT MIN(obama_number) FROM table_20722805_1 WHERE obama_percentage = "32.12%" ### context: CREATE TABLE table_20722805_1 (obama_number INTEGER, obama_percentage VARCHAR)
### question: What parish did McCain have 45.37% of the votes? ### answer: SELECT parish FROM table_20722805_1 WHERE mccain_percentage = "45.37%" ### context: CREATE TABLE table_20722805_1 (parish VARCHAR, mccain_percentage VARCHAR)
### question: What is the total number of votes McCain had in Webster? ### answer: SELECT MAX(mccain_number) FROM table_20722805_1 WHERE parish = "Webster" ### context: CREATE TABLE table_20722805_1 (mccain_number INTEGER, parish VARCHAR)
### question: What was the original air date for the episode with production code 1wab06? ### answer: SELECT originalairdate FROM table_20726262_2 WHERE production_code = "1WAB06" ### context: CREATE TABLE table_20726262_2 (originalairdate VARCHAR, production_code VARCHAR)
### question: What title episode did Paris Barclay direct? ### answer: SELECT title FROM table_20726262_2 WHERE directedby = "Paris Barclay" ### context: CREATE TABLE table_20726262_2 (title VARCHAR, directedby VARCHAR)
### question: What was the production code for episode #1? ### answer: SELECT production_code FROM table_20726262_2 WHERE no_in_series = 1 ### context: CREATE TABLE table_20726262_2 (production_code VARCHAR, no_in_series VARCHAR)
### question: What number episode was written by kurt sutter & jack logiudice? ### answer: SELECT MAX(no_in_series) FROM table_20726262_2 WHERE writtenby = "Kurt Sutter & Jack LoGiudice" ### context: CREATE TABLE table_20726262_2 (no_in_series INTEGER, writtenby VARCHAR)
### question: What was the production code for the episode with 3.38 million viewers? ### answer: SELECT production_code FROM table_20726262_3 WHERE usviewers__million_ = "3.38" ### context: CREATE TABLE table_20726262_3 (production_code VARCHAR, usviewers__million_ VARCHAR)
### question: What season number did production code 2wab12? ### answer: SELECT no_in_season FROM table_20726262_3 WHERE production_code = "2WAB12" ### context: CREATE TABLE table_20726262_3 (no_in_season VARCHAR, production_code VARCHAR)
### question: How many numbers in the season were written by Brett Conrad & Liz Sagal? ### answer: SELECT COUNT(no_in_season) FROM table_20726262_3 WHERE writtenby = "Brett Conrad & Liz Sagal" ### context: CREATE TABLE table_20726262_3 (no_in_season VARCHAR, writtenby VARCHAR)
### question: what i the maximum number in the series where the production code is 3wab07? ### answer: SELECT MAX(no_in_series) FROM table_20726262_4 WHERE production_code = "3WAB07" ### context: CREATE TABLE table_20726262_4 (no_in_series INTEGER, production_code VARCHAR)
### question: what is the maximum number in the season wher the us viewers is 2.59? ### answer: SELECT MAX(no_in_season) FROM table_20726262_4 WHERE usviewers__million_ = "2.59" ### context: CREATE TABLE table_20726262_4 (no_in_season INTEGER, usviewers__million_ VARCHAR)
### question: what is the written by and production code is 3wab03? ### answer: SELECT writtenby FROM table_20726262_4 WHERE production_code = "3WAB03" ### context: CREATE TABLE table_20726262_4 (writtenby VARCHAR, production_code VARCHAR)
### question: How many seats were won, when the seats contested was 48? ### answer: SELECT seats_won FROM table_20728138_1 WHERE seats_contested = 48 ### context: CREATE TABLE table_20728138_1 (seats_won VARCHAR, seats_contested VARCHAR)
### question: How many seats are contested for independents? ### answer: SELECT seats_contested FROM table_20728138_1 WHERE party = "Independents" ### context: CREATE TABLE table_20728138_1 (seats_contested VARCHAR, party VARCHAR)
### question: What is the percentage seats contested for the revolutionary socialist party? ### answer: SELECT _percentage_in_seats_contested FROM table_20728138_1 WHERE party = "Revolutionary Socialist party" ### context: CREATE TABLE table_20728138_1 (_percentage_in_seats_contested VARCHAR, party VARCHAR)
### question: What is the 2003 seat number, when seats contested was at 38.23% ### answer: SELECT MIN(2003 AS _seats) FROM table_20728138_1 WHERE _percentage_in_seats_contested = "38.23%" ### context: CREATE TABLE table_20728138_1 (_percentage_in_seats_contested VARCHAR)
### question: How many seats were forfeited in the revolutionary socialist party? ### answer: SELECT COUNT(seats_forfeited) FROM table_20728138_1 WHERE party = "Revolutionary Socialist party" ### context: CREATE TABLE table_20728138_1 (seats_forfeited VARCHAR, party VARCHAR)
### question: Who was the opponent when the attendance was exactly 16642? ### answer: SELECT opponent FROM table_20745685_1 WHERE attendance = 16642 ### context: CREATE TABLE table_20745685_1 (opponent VARCHAR, attendance VARCHAR)
### question: What is the score for game #7? ### answer: SELECT score FROM table_20745685_1 WHERE _number = 7 ### context: CREATE TABLE table_20745685_1 (score VARCHAR, _number VARCHAR)
### question: Who was the opponent on February 28, 1991 ### answer: SELECT opponent FROM table_20745685_1 WHERE date = "February 28, 1991" ### context: CREATE TABLE table_20745685_1 (opponent VARCHAR, date VARCHAR)
### question: What was the date when the record was 1-0? ### answer: SELECT date FROM table_20745444_1 WHERE record = "1-0" ### context: CREATE TABLE table_20745444_1 (date VARCHAR, record VARCHAR)
### question: How many results finished in a loss? ### answer: SELECT COUNT(tar_heels_points) FROM table_20745444_1 WHERE result = "Loss" ### context: CREATE TABLE table_20745444_1 (tar_heels_points VARCHAR, result VARCHAR)
### question: How many games were against Furman? ### answer: SELECT MAX(game) FROM table_20745444_1 WHERE opponent = "Furman" ### context: CREATE TABLE table_20745444_1 (game INTEGER, opponent VARCHAR)
### question: How many times were Duke the opponents? ### answer: SELECT COUNT(opponents) FROM table_20745444_1 WHERE opponent = "Duke" ### context: CREATE TABLE table_20745444_1 (opponents VARCHAR, opponent VARCHAR)
### question: How many losses were there when the record was 4-0? ### answer: SELECT MAX(opponents) FROM table_20745444_1 WHERE record = "4-0" ### context: CREATE TABLE table_20745444_1 (opponents INTEGER, record VARCHAR)
### question: What was the game #7, at or versus (home or at)? ### answer: SELECT at_vs FROM table_20745754_1 WHERE _number = "7" ### context: CREATE TABLE table_20745754_1 (at_vs VARCHAR, _number VARCHAR)
### question: Who did they play against in game 7? ### answer: SELECT opponent FROM table_20745754_1 WHERE _number = "7" ### context: CREATE TABLE table_20745754_1 (opponent VARCHAR, _number VARCHAR)
### question: What game number had an attendance of 2813? ### answer: SELECT _number FROM table_20745754_1 WHERE attendance = 2813 ### context: CREATE TABLE table_20745754_1 (_number VARCHAR, attendance VARCHAR)
### question: What day did the play game number 9? ### answer: SELECT date FROM table_20746062_1 WHERE game = 9 ### context: CREATE TABLE table_20746062_1 (date VARCHAR, game VARCHAR)
### question: What was the result of the game when they were 2-1? ### answer: SELECT result FROM table_20746062_1 WHERE record = "2-1" ### context: CREATE TABLE table_20746062_1 (result VARCHAR, record VARCHAR)
### question: What was the record when the Bruins had 41 points? ### answer: SELECT record FROM table_20760407_1 WHERE bruins_points = 41 ### context: CREATE TABLE table_20760407_1 (record VARCHAR, bruins_points VARCHAR)
### question: What was the date for game 9? ### answer: SELECT date FROM table_20760407_1 WHERE game = 9 ### context: CREATE TABLE table_20760407_1 (date VARCHAR, game VARCHAR)
### question: What game did the Bruins have 56 points? ### answer: SELECT MAX(game) FROM table_20760407_1 WHERE bruins_points = 56 ### context: CREATE TABLE table_20760407_1 (game INTEGER, bruins_points VARCHAR)
### question: What is the total of played where lost equals 4 and drawn equals 1? ### answer: SELECT played FROM table_20760802_1 WHERE lost = "4" AND drawn = "1" ### context: CREATE TABLE table_20760802_1 (played VARCHAR, lost VARCHAR, drawn VARCHAR)
### question: How many drawn are there where the Club is new ross? ### answer: SELECT drawn FROM table_20760802_1 WHERE club = "New Ross" ### context: CREATE TABLE table_20760802_1 (drawn VARCHAR, club VARCHAR)
### question: How may drawn equal points against at 129? ### answer: SELECT drawn FROM table_20760802_1 WHERE points_against = "129" ### context: CREATE TABLE table_20760802_1 (drawn VARCHAR, points_against VARCHAR)
### question: How many points differ from 134? ### answer: SELECT points_difference FROM table_20760802_1 WHERE points_for = "134" ### context: CREATE TABLE table_20760802_1 (points_difference VARCHAR, points_for VARCHAR)
### question: How many of the points difference lost equal 10? ### answer: SELECT points_difference FROM table_20760802_1 WHERE lost = "10" ### context: CREATE TABLE table_20760802_1 (points_difference VARCHAR, lost VARCHAR)
### question: How many teams that played won 0 games? ### answer: SELECT played FROM table_20760802_1 WHERE won = "0" ### context: CREATE TABLE table_20760802_1 (played VARCHAR, won VARCHAR)
### question: What are the public schools with a master's university? ### answer: SELECT location_s_ FROM table_2076595_1 WHERE control = "Public" AND type = "Master's university" ### context: CREATE TABLE table_2076595_1 (location_s_ VARCHAR, control VARCHAR, type VARCHAR)
### question: What is the minimum enrollment for Plainfield? ### answer: SELECT MIN(enrollment__2009_) FROM table_2076595_1 WHERE location_s_ = "Plainfield" ### context: CREATE TABLE table_2076595_1 (enrollment__2009_ INTEGER, location_s_ VARCHAR)
### question: What type of school had an enrollment in 2009 of 224? ### answer: SELECT type FROM table_2076595_1 WHERE enrollment__2009_ = 224 ### context: CREATE TABLE table_2076595_1 (type VARCHAR, enrollment__2009_ VARCHAR)
### question: When was Southern Vermont College founded? ### answer: SELECT MAX(founded) FROM table_2076595_1 WHERE school = "Southern Vermont College" ### context: CREATE TABLE table_2076595_1 (founded INTEGER, school VARCHAR)
### question: Is art school public or private? ### answer: SELECT control FROM table_2076595_1 WHERE type = "Art school" ### context: CREATE TABLE table_2076595_1 (control VARCHAR, type VARCHAR)
### question: What school was founded in 1791? ### answer: SELECT school FROM table_2076595_1 WHERE founded = 1791 ### context: CREATE TABLE table_2076595_1 (school VARCHAR, founded VARCHAR)
### question: Name the number of spring enrollment for sioux falls seminary ### answer: SELECT COUNT(enrollment__spring_2012_) FROM table_2076557_2 WHERE school = "Sioux Falls Seminary" ### context: CREATE TABLE table_2076557_2 (enrollment__spring_2012_ VARCHAR, school VARCHAR)
### question: Name the accrediatation for southeast technical institute ### answer: SELECT accreditation FROM table_2076557_2 WHERE school = "Southeast Technical Institute" ### context: CREATE TABLE table_2076557_2 (accreditation VARCHAR, school VARCHAR)
### question: Name the total number of founded for yankton ### answer: SELECT COUNT(founded) FROM table_2076557_2 WHERE location_s_ = "Yankton" ### context: CREATE TABLE table_2076557_2 (founded VARCHAR, location_s_ VARCHAR)
### question: What is the Italian word for the English word "otter"? ### answer: SELECT italian FROM table_2077192_2 WHERE english = "otter" ### context: CREATE TABLE table_2077192_2 (italian VARCHAR, english VARCHAR)
### question: How many French words does zinnapòtamu in Central-Southern Calabrian translate to? ### answer: SELECT COUNT(french) FROM table_2077192_2 WHERE central_southern_calabrian = "zinnapòtamu" ### context: CREATE TABLE table_2077192_2 (french VARCHAR, central_southern_calabrian VARCHAR)
### question: What is the French translation for the English word "orange"? ### answer: SELECT french FROM table_2077192_2 WHERE english = "orange" ### context: CREATE TABLE table_2077192_2 (french VARCHAR, english VARCHAR)