Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
37,400 |
<question>: What is the enrollment ratio for preschool in the region where enrollment ratio for tertiary is 29.55? <context>: CREATE TABLE table_25042332_22 (preschool__0_5_years_ VARCHAR, tertiary__18_24_years_ VARCHAR)
|
SELECT preschool__0_5_years_ FROM table_25042332_22 WHERE tertiary__18_24_years_ = "29.55"
|
37,401 |
<question>: What is the enrollment ratio in primary in the region where the enrollment ratio in preschool is 38.14? <context>: CREATE TABLE table_25042332_22 (primary__6_13_years_ VARCHAR, preschool__0_5_years_ VARCHAR)
|
SELECT primary__6_13_years_ FROM table_25042332_22 WHERE preschool__0_5_years_ = "38.14"
|
37,402 |
<question>: What is the enrollment ratio in tertiary in the region where the enrollment ration in secondary is 71.43? <context>: CREATE TABLE table_25042332_22 (tertiary__18_24_years_ VARCHAR, secondary__14_17_years_ VARCHAR)
|
SELECT tertiary__18_24_years_ FROM table_25042332_22 WHERE secondary__14_17_years_ = "71.43"
|
37,403 |
<question>: What is the enrollment ratio in preschool in the region where the enrollment ratio in primary is 93.10? <context>: CREATE TABLE table_25042332_22 (preschool__0_5_years_ VARCHAR, primary__6_13_years_ VARCHAR)
|
SELECT preschool__0_5_years_ FROM table_25042332_22 WHERE primary__6_13_years_ = "93.10"
|
37,404 |
<question>: What is the enrollment ration in primary in the region where the enrollment ratio in preschool is 50.23? <context>: CREATE TABLE table_25042332_22 (primary__6_13_years_ VARCHAR, preschool__0_5_years_ VARCHAR)
|
SELECT primary__6_13_years_ FROM table_25042332_22 WHERE preschool__0_5_years_ = "50.23"
|
37,405 |
<question>: what is the number of registered female voters where the percentage is 108.6% <context>: CREATE TABLE table_25042332_30 (enrolled_women VARCHAR, e_vap_ratio_women VARCHAR)
|
SELECT enrolled_women FROM table_25042332_30 WHERE e_vap_ratio_women = "108.6%"
|
37,406 |
<question>: what is the percentage of male voters where the level of maturity is 123726 <context>: CREATE TABLE table_25042332_30 (e_vap_ratio_total VARCHAR, men_of_voting_age VARCHAR)
|
SELECT e_vap_ratio_total FROM table_25042332_30 WHERE men_of_voting_age = 123726
|
37,407 |
<question>: How many regions had 153 women prison inmates? <context>: CREATE TABLE table_25042332_31 (incarceration_rate_total VARCHAR, prison_inmates_women VARCHAR)
|
SELECT COUNT(incarceration_rate_total) FROM table_25042332_31 WHERE prison_inmates_women = 153
|
37,408 |
<question>: How many regions had an incarceration rate for females of 63? <context>: CREATE TABLE table_25042332_31 (incarceration_rate_total VARCHAR, incarceration_rate_female VARCHAR)
|
SELECT COUNT(incarceration_rate_total) FROM table_25042332_31 WHERE incarceration_rate_female = 63
|
37,409 |
<question>: What is the male incarceration rate of maule? <context>: CREATE TABLE table_25042332_31 (incarceration_rate_male INTEGER, region VARCHAR)
|
SELECT MAX(incarceration_rate_male) FROM table_25042332_31 WHERE region = "Maule"
|
37,410 |
<question>: Name the region for automatic washing machine being 60.9% <context>: CREATE TABLE table_25042332_27 (region VARCHAR, automatic_washing_machine VARCHAR)
|
SELECT region FROM table_25042332_27 WHERE automatic_washing_machine = "60.9%"
|
37,411 |
<question>: Name the fixed telephone line for 25.6% vehicle <context>: CREATE TABLE table_25042332_27 (fixed_telephone_line VARCHAR, vehicle VARCHAR)
|
SELECT fixed_telephone_line FROM table_25042332_27 WHERE vehicle = "25.6%"
|
37,412 |
<question>: Name the region for 39.2% vehicle <context>: CREATE TABLE table_25042332_27 (region VARCHAR, vehicle VARCHAR)
|
SELECT region FROM table_25042332_27 WHERE vehicle = "39.2%"
|
37,413 |
<question>: What region has 0.3% solar panel? <context>: CREATE TABLE table_25042332_26 (region VARCHAR, solar_panel VARCHAR)
|
SELECT region FROM table_25042332_26 WHERE solar_panel = "0.3%"
|
37,414 |
<question>: What is atacama's percentage of solar panels? <context>: CREATE TABLE table_25042332_26 (solar_panel VARCHAR, region VARCHAR)
|
SELECT solar_panel FROM table_25042332_26 WHERE region = "Atacama"
|
37,415 |
<question>: Which region has 0.6% none? <context>: CREATE TABLE table_25042332_26 (region VARCHAR, none VARCHAR)
|
SELECT region FROM table_25042332_26 WHERE none = "0.6%"
|
37,416 |
<question>: What is the percentage of public network in the region that has 0.1% other sources, 0.0% solar, and is named maule? <context>: CREATE TABLE table_25042332_26 (public_network VARCHAR, region VARCHAR, other_source VARCHAR, solar_panel VARCHAR)
|
SELECT public_network FROM table_25042332_26 WHERE other_source = "0.1%" AND solar_panel = "0.0%" AND region = "Maule"
|
37,417 |
<question>: How many regions have 0.5% solar panels? <context>: CREATE TABLE table_25042332_26 (public_network VARCHAR, solar_panel VARCHAR)
|
SELECT COUNT(public_network) FROM table_25042332_26 WHERE solar_panel = "0.5%"
|
37,418 |
<question>: What is the production number of 3-04? <context>: CREATE TABLE table_25046766_3 (prod_no INTEGER, episode_no VARCHAR)
|
SELECT MAX(prod_no) FROM table_25046766_3 WHERE episode_no = "3-04"
|
37,419 |
<question>: What was the title of the episode that aired on October 7, 1965? <context>: CREATE TABLE table_25046766_3 (title VARCHAR, original_airdate_uk VARCHAR)
|
SELECT title FROM table_25046766_3 WHERE original_airdate_uk = "October 7, 1965"
|
37,420 |
<question>: When don inglis and ralph smart are the writers how many episode numbers are there? <context>: CREATE TABLE table_25046766_1 (episode_no VARCHAR, written_by VARCHAR)
|
SELECT COUNT(episode_no) FROM table_25046766_1 WHERE written_by = "Don Inglis and Ralph Smart"
|
37,421 |
<question>: Name the most 2012/13 for university of cambridge <context>: CREATE TABLE table_25057928_1 (institute VARCHAR)
|
SELECT MAX(2012 AS _13) FROM table_25057928_1 WHERE institute = "University of Cambridge"
|
37,422 |
<question>: Name the birth date for taavi sadam <context>: CREATE TABLE table_25058562_2 (birth_date VARCHAR, player VARCHAR)
|
SELECT birth_date FROM table_25058562_2 WHERE player = "Taavi Sadam"
|
37,423 |
<question>: Name the height for asko esna <context>: CREATE TABLE table_25058562_2 (height VARCHAR, player VARCHAR)
|
SELECT height FROM table_25058562_2 WHERE player = "Asko Esna"
|
37,424 |
<question>: Name the birth date for estonia for spiker and height of 189 <context>: CREATE TABLE table_25058562_2 (birth_date VARCHAR, height VARCHAR, nationality VARCHAR, position VARCHAR)
|
SELECT birth_date FROM table_25058562_2 WHERE nationality = "Estonia" AND position = "Spiker" AND height = 189
|
37,425 |
<question>: Name the player for 199 height <context>: CREATE TABLE table_25058562_2 (player VARCHAR, height VARCHAR)
|
SELECT player FROM table_25058562_2 WHERE height = 199
|
37,426 |
<question>: if the 2.09 million US viewers watched this episode, who was it written by <context>: CREATE TABLE table_25084227_1 (written_by VARCHAR, us_viewers__in_millions_ VARCHAR)
|
SELECT written_by FROM table_25084227_1 WHERE us_viewers__in_millions_ = "2.09"
|
37,427 |
<question>: If the episode was directed by Michael Offer, what was the episode number? <context>: CREATE TABLE table_25084227_1 (no INTEGER, directed_by VARCHAR)
|
SELECT MIN(no) FROM table_25084227_1 WHERE directed_by = "Michael Offer"
|
37,428 |
<question>: If the episode was directed by Michael Offer, how many US Viewers watched it? <context>: CREATE TABLE table_25084227_1 (us_viewers__in_millions_ VARCHAR, directed_by VARCHAR)
|
SELECT us_viewers__in_millions_ FROM table_25084227_1 WHERE directed_by = "Michael Offer"
|
37,429 |
<question>: What draft pick number was the player with the position DL? <context>: CREATE TABLE table_25085059_3 (pick__number VARCHAR, position VARCHAR)
|
SELECT pick__number FROM table_25085059_3 WHERE position = "DL"
|
37,430 |
<question>: How many draft picks were for Winnipeg blue bombers? <context>: CREATE TABLE table_25085059_3 (pick__number VARCHAR, cfl_team VARCHAR)
|
SELECT COUNT(pick__number) FROM table_25085059_3 WHERE cfl_team = "Winnipeg Blue Bombers"
|
37,431 |
<question>: How many colleges provided players with positions LB? <context>: CREATE TABLE table_25085059_3 (college VARCHAR, position VARCHAR)
|
SELECT COUNT(college) FROM table_25085059_3 WHERE position = "LB"
|
37,432 |
<question>: What college did the player come from whose position is DL? <context>: CREATE TABLE table_25085059_3 (college VARCHAR, position VARCHAR)
|
SELECT college FROM table_25085059_3 WHERE position = "DL"
|
37,433 |
<question>: What team got a draft pick player from McGill? <context>: CREATE TABLE table_25085059_3 (cfl_team VARCHAR, college VARCHAR)
|
SELECT cfl_team FROM table_25085059_3 WHERE college = "McGill"
|
37,434 |
<question>: What number draft pick was Oklahoma State's Greg Hill in 1983? <context>: CREATE TABLE table_2508633_4 (pick__number VARCHAR, college VARCHAR, player VARCHAR)
|
SELECT pick__number FROM table_2508633_4 WHERE college = "Oklahoma State" AND player = "Greg Hill"
|
37,435 |
<question>: What number pick was Danny Walters in the 1983 NFL draft? <context>: CREATE TABLE table_2508633_4 (pick__number VARCHAR, player VARCHAR)
|
SELECT COUNT(pick__number) FROM table_2508633_4 WHERE player = "Danny Walters"
|
37,436 |
<question>: What were the pick numbers of the defensive tackles chosen by the New Orleans Saints in the 1983 draft? <context>: CREATE TABLE table_2508633_4 (position VARCHAR, nfl_team VARCHAR)
|
SELECT position FROM table_2508633_4 WHERE nfl_team = "New Orleans Saints"
|
37,437 |
<question>: What number draft pick was linebacker Steve Maidlow in the 1983 NFL Draft? <context>: CREATE TABLE table_2508633_4 (position VARCHAR, player VARCHAR)
|
SELECT position FROM table_2508633_4 WHERE player = "Steve Maidlow"
|
37,438 |
<question>: In which colleges is the NFL Team New York Giants and with the position defensive back? <context>: CREATE TABLE table_2508633_11 (college VARCHAR, nfl_team VARCHAR, position VARCHAR)
|
SELECT college FROM table_2508633_11 WHERE nfl_team = "New York Giants" AND position = "Defensive back"
|
37,439 |
<question>: What NFL Team has the player Danny Triplett with the position linebacker? <context>: CREATE TABLE table_2508633_11 (nfl_team VARCHAR, position VARCHAR, player VARCHAR)
|
SELECT nfl_team FROM table_2508633_11 WHERE position = "Linebacker" AND player = "Danny Triplett"
|
37,440 |
<question>: What are the NFL Teams in College North Texas State? <context>: CREATE TABLE table_2508633_11 (nfl_team VARCHAR, college VARCHAR)
|
SELECT nfl_team FROM table_2508633_11 WHERE college = "North Texas State"
|
37,441 |
<question>: How many colleges have the NFL Team Buffalo Bills? <context>: CREATE TABLE table_2508633_11 (college VARCHAR, nfl_team VARCHAR)
|
SELECT COUNT(college) FROM table_2508633_11 WHERE nfl_team = "Buffalo Bills"
|
37,442 |
<question>: Who are the all the players whose position is guard in college Clemson? <context>: CREATE TABLE table_2508633_11 (player VARCHAR, college VARCHAR, position VARCHAR)
|
SELECT player FROM table_2508633_11 WHERE college = "Clemson" AND position = "Guard"
|
37,443 |
<question>: What NFL Teams have the player Aaron Williams? <context>: CREATE TABLE table_2508633_11 (nfl_team VARCHAR, player VARCHAR)
|
SELECT nfl_team FROM table_2508633_11 WHERE player = "Aaron Williams"
|
37,444 |
<question>: Name the least pick number for the denver broncos <context>: CREATE TABLE table_2508633_2 (pick__number INTEGER, nfl_team VARCHAR)
|
SELECT MIN(pick__number) FROM table_2508633_2 WHERE nfl_team = "Denver Broncos"
|
37,445 |
<question>: Name the position for pick number 39 <context>: CREATE TABLE table_2508633_2 (position VARCHAR, pick__number VARCHAR)
|
SELECT position FROM table_2508633_2 WHERE pick__number = 39
|
37,446 |
<question>: Name the total number of pick number being henry ellard <context>: CREATE TABLE table_2508633_2 (pick__number VARCHAR, player VARCHAR)
|
SELECT COUNT(pick__number) FROM table_2508633_2 WHERE player = "Henry Ellard"
|
37,447 |
<question>: Name the player for new orleans saints <context>: CREATE TABLE table_2508633_2 (player VARCHAR, nfl_team VARCHAR)
|
SELECT player FROM table_2508633_2 WHERE nfl_team = "New Orleans Saints"
|
37,448 |
<question>: Name the number of players for georgia tech <context>: CREATE TABLE table_2508633_2 (player VARCHAR, college VARCHAR)
|
SELECT COUNT(player) FROM table_2508633_2 WHERE college = "Georgia Tech"
|
37,449 |
<question>: Name the most pick number for guard and kansas city chiefs <context>: CREATE TABLE table_2508633_2 (pick__number INTEGER, position VARCHAR, nfl_team VARCHAR)
|
SELECT MAX(pick__number) FROM table_2508633_2 WHERE position = "Guard" AND nfl_team = "Kansas City Chiefs"
|
37,450 |
<question>: Name the nfl team for pick number 151 <context>: CREATE TABLE table_2508633_6 (nfl_team VARCHAR, pick__number VARCHAR)
|
SELECT nfl_team FROM table_2508633_6 WHERE pick__number = 151
|
37,451 |
<question>: Name the college for houston oilers <context>: CREATE TABLE table_2508633_6 (college VARCHAR, nfl_team VARCHAR)
|
SELECT college FROM table_2508633_6 WHERE nfl_team = "Houston Oilers"
|
37,452 |
<question>: Name the most pick number for illinois <context>: CREATE TABLE table_2508633_6 (pick__number INTEGER, college VARCHAR)
|
SELECT MAX(pick__number) FROM table_2508633_6 WHERE college = "Illinois"
|
37,453 |
<question>: Name the total number for nfl team for ellis gardner <context>: CREATE TABLE table_2508633_6 (nfl_team VARCHAR, player VARCHAR)
|
SELECT COUNT(nfl_team) FROM table_2508633_6 WHERE player = "Ellis Gardner"
|
37,454 |
<question>: Name the position for delaware <context>: CREATE TABLE table_2508633_6 (position VARCHAR, college VARCHAR)
|
SELECT position FROM table_2508633_6 WHERE college = "Delaware"
|
37,455 |
<question>: Name the nfl team for eric williams <context>: CREATE TABLE table_2508633_6 (nfl_team VARCHAR, player VARCHAR)
|
SELECT nfl_team FROM table_2508633_6 WHERE player = "Eric Williams"
|
37,456 |
<question>: What NFL team picked a player from Jackson State? <context>: CREATE TABLE table_2508633_9 (nfl_team VARCHAR, college VARCHAR)
|
SELECT nfl_team FROM table_2508633_9 WHERE college = "Jackson State"
|
37,457 |
<question>: What position was the draft pick that came from Langston? <context>: CREATE TABLE table_2508633_9 (position VARCHAR, college VARCHAR)
|
SELECT position FROM table_2508633_9 WHERE college = "Langston"
|
37,458 |
<question>: How many players were the running back draft pick for the New England Patriots? <context>: CREATE TABLE table_2508633_9 (player VARCHAR, nfl_team VARCHAR, position VARCHAR)
|
SELECT COUNT(player) FROM table_2508633_9 WHERE nfl_team = "New England Patriots" AND position = "Running back"
|
37,459 |
<question>: Who was the draft pick for Kansas City Chiefs? <context>: CREATE TABLE table_2508633_9 (player VARCHAR, nfl_team VARCHAR)
|
SELECT player FROM table_2508633_9 WHERE nfl_team = "Kansas City Chiefs"
|
37,460 |
<question>: What college did the tight end draft pick for New England Patriots come from? <context>: CREATE TABLE table_2508633_9 (college VARCHAR, nfl_team VARCHAR, position VARCHAR)
|
SELECT college FROM table_2508633_9 WHERE nfl_team = "New England Patriots" AND position = "Tight end"
|
37,461 |
<question>: What is the Cuchumela Municipality minimum? <context>: CREATE TABLE table_2509112_3 (cuchumuela_municipality INTEGER)
|
SELECT MIN(cuchumuela_municipality) FROM table_2509112_3
|
37,462 |
<question>: If Villa Rivero Municipality if 7, what is the language? <context>: CREATE TABLE table_2509112_3 (language VARCHAR, villa_rivero_municipality VARCHAR)
|
SELECT language FROM table_2509112_3 WHERE villa_rivero_municipality = 7
|
37,463 |
<question>: What is the language total number if the Tacachi Municipality is 3? <context>: CREATE TABLE table_2509112_3 (language VARCHAR, tacachi_municipality VARCHAR)
|
SELECT COUNT(language) FROM table_2509112_3 WHERE tacachi_municipality = 3
|
37,464 |
<question>: If the language is another native, what is the San Benito Municipality total number? <context>: CREATE TABLE table_2509112_3 (san_benito_municipality VARCHAR, language VARCHAR)
|
SELECT COUNT(san_benito_municipality) FROM table_2509112_3 WHERE language = "Another native"
|
37,465 |
<question>: If the language is Spanish, what is the Vinto Municipality minimum? <context>: CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, language VARCHAR)
|
SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE language = "Spanish"
|
37,466 |
<question>: If the Vinto Municipality is 18630, what is the Quillacollo Municipality? <context>: CREATE TABLE table_2509113_2 (quillacollo_municipality INTEGER, vinto_municipality VARCHAR)
|
SELECT MAX(quillacollo_municipality) FROM table_2509113_2 WHERE vinto_municipality = 18630
|
37,467 |
<question>: What is the Sipe Sipe Municipality minimum if the language is Quechua? <context>: CREATE TABLE table_2509113_2 (sipe_sipe_municipality INTEGER, language VARCHAR)
|
SELECT MIN(sipe_sipe_municipality) FROM table_2509113_2 WHERE language = "Quechua"
|
37,468 |
<question>: If the language is Native and Spanish, what is the Vinto Municipality minimum? <context>: CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, language VARCHAR)
|
SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE language = "Native and Spanish"
|
37,469 |
<question>: If the Quillacollo Municipality is 93131, what is the Vinto Municipality minimum? <context>: CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, quillacollo_municipality VARCHAR)
|
SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE quillacollo_municipality = 93131
|
37,470 |
<question>: Name the language for villa 1167 <context>: CREATE TABLE table_2509350_3 (language VARCHAR, villa_alcalá_municipality VARCHAR)
|
SELECT language FROM table_2509350_3 WHERE villa_alcalá_municipality = 1167
|
37,471 |
<question>: Name the most padilla municipality for quechua <context>: CREATE TABLE table_2509350_3 (padilla_municipality INTEGER, language VARCHAR)
|
SELECT MAX(padilla_municipality) FROM table_2509350_3 WHERE language = "Quechua"
|
37,472 |
<question>: Name the language for sopachuy 10 <context>: CREATE TABLE table_2509350_3 (language VARCHAR, sopachuy_municipality VARCHAR)
|
SELECT language FROM table_2509350_3 WHERE sopachuy_municipality = 10
|
37,473 |
<question>: Name the number of tomina for villa alcala for 176 <context>: CREATE TABLE table_2509350_3 (tomina_municipality VARCHAR, villa_alcalá_municipality VARCHAR)
|
SELECT COUNT(tomina_municipality) FROM table_2509350_3 WHERE villa_alcalá_municipality = 176
|
37,474 |
<question>: Name the least tomina for el villar being 4 <context>: CREATE TABLE table_2509350_3 (tomina_municipality INTEGER, el_villar_municipality VARCHAR)
|
SELECT MIN(tomina_municipality) FROM table_2509350_3 WHERE el_villar_municipality = 4
|
37,475 |
<question>: Name the language for el villar 1264 <context>: CREATE TABLE table_2509350_3 (language VARCHAR, el_villar_municipality VARCHAR)
|
SELECT language FROM table_2509350_3 WHERE el_villar_municipality = 1264
|
37,476 |
<question>: Name the total number of games for goals against being 352 <context>: CREATE TABLE table_2509505_1 (games VARCHAR, goals_against VARCHAR)
|
SELECT COUNT(games) FROM table_2509505_1 WHERE goals_against = 352
|
37,477 |
<question>: Name the total number of games for lost being 41 <context>: CREATE TABLE table_2509505_1 (games VARCHAR, lost VARCHAR)
|
SELECT COUNT(games) FROM table_2509505_1 WHERE lost = 41
|
37,478 |
<question>: Name the most goals for 56 points <context>: CREATE TABLE table_2509505_1 (goals_for INTEGER, points VARCHAR)
|
SELECT MAX(goals_for) FROM table_2509505_1 WHERE points = 56
|
37,479 |
<question>: Name the number of won for goals for being 274 <context>: CREATE TABLE table_2509505_1 (won VARCHAR, goals_for VARCHAR)
|
SELECT COUNT(won) FROM table_2509505_1 WHERE goals_for = 274
|
37,480 |
<question>: When the quiabaya municipality is 2 what is the combaya municipality? <context>: CREATE TABLE table_2509202_2 (combaya_municipality VARCHAR, quiabaya_municipality VARCHAR)
|
SELECT combaya_municipality FROM table_2509202_2 WHERE quiabaya_municipality = "2"
|
37,481 |
<question>: What is the guanay municipality when the tacacoma municipality is 4.321? <context>: CREATE TABLE table_2509202_2 (guanay_municipality VARCHAR, tacacoma_municipality VARCHAR)
|
SELECT guanay_municipality FROM table_2509202_2 WHERE tacacoma_municipality = "4.321"
|
37,482 |
<question>: How many people in the sorata municipality when the quiabaya municipality has 33? <context>: CREATE TABLE table_2509202_2 (sorata_municipality VARCHAR, quiabaya_municipality VARCHAR)
|
SELECT sorata_municipality FROM table_2509202_2 WHERE quiabaya_municipality = "33"
|
37,483 |
<question>: What is the number for combaya municipality when quiabaya municipality is 33? <context>: CREATE TABLE table_2509202_2 (combaya_municipality VARCHAR, quiabaya_municipality VARCHAR)
|
SELECT combaya_municipality FROM table_2509202_2 WHERE quiabaya_municipality = "33"
|
37,484 |
<question>: tipuani municipality when tacacoma municipality is 6? <context>: CREATE TABLE table_2509202_2 (tipuani_municipality VARCHAR, tacacoma_municipality VARCHAR)
|
SELECT tipuani_municipality FROM table_2509202_2 WHERE tacacoma_municipality = "6"
|
37,485 |
<question>: What is the number for the guanay municipality when combaya municipality is 0? <context>: CREATE TABLE table_2509202_2 (guanay_municipality VARCHAR, combaya_municipality VARCHAR)
|
SELECT guanay_municipality FROM table_2509202_2 WHERE combaya_municipality = "0"
|
37,486 |
<question>: What is the first year where the assassination attempt was at Martyrs' Mausoleum, Rangoon, Burma? <context>: CREATE TABLE table_251272_4 (year INTEGER, location VARCHAR)
|
SELECT MIN(year) FROM table_251272_4 WHERE location = "Martyrs' Mausoleum, Rangoon, Burma"
|
37,487 |
<question>: Where was the attempt on the Prime Minister of Sri Lanka's life made? <context>: CREATE TABLE table_251272_4 (location VARCHAR, title_at_the_time VARCHAR)
|
SELECT location FROM table_251272_4 WHERE title_at_the_time = "Prime Minister of Sri Lanka"
|
37,488 |
<question>: What is every original language for book series Little House on the Prairie? <context>: CREATE TABLE table_2512935_8 (original_language VARCHAR, book_series VARCHAR)
|
SELECT original_language FROM table_2512935_8 WHERE book_series = "Little House on the Prairie"
|
37,489 |
<question>: What are all approximate sales for the author Laura Ingalls Wilder? <context>: CREATE TABLE table_2512935_8 (approximate_sales VARCHAR, author VARCHAR)
|
SELECT approximate_sales FROM table_2512935_8 WHERE author = "Laura Ingalls Wilder"
|
37,490 |
<question>: Name the most number for notre dame prep <context>: CREATE TABLE table_25118909_3 (_number INTEGER, former_school VARCHAR)
|
SELECT MAX(_number) FROM table_25118909_3 WHERE former_school = "Notre Dame Prep"
|
37,491 |
<question>: Name the ends won for blank ends for 0 <context>: CREATE TABLE table_25107064_2 (Ends VARCHAR, blank_ends VARCHAR)
|
SELECT Ends AS won FROM table_25107064_2 WHERE blank_ends = 0
|
37,492 |
<question>: Name the stolen ends for germany <context>: CREATE TABLE table_25107064_2 (stolen_ends INTEGER, country VARCHAR, Germany VARCHAR)
|
SELECT MIN(stolen_ends) FROM table_25107064_2 WHERE country = Germany
|
37,493 |
<question>: Name the least ends won for pf being 78 <context>: CREATE TABLE table_25107064_2 (Ends INTEGER, pf VARCHAR)
|
SELECT MIN(Ends) AS won FROM table_25107064_2 WHERE pf = 78
|
37,494 |
<question>: What is the stadium in Kuopio? <context>: CREATE TABLE table_25129482_1 (stadium VARCHAR, location VARCHAR)
|
SELECT stadium FROM table_25129482_1 WHERE location = "Kuopio"
|
37,495 |
<question>: Who is the kitmaker for TPS? <context>: CREATE TABLE table_25129482_1 (kitmaker VARCHAR, club VARCHAR)
|
SELECT kitmaker FROM table_25129482_1 WHERE club = "TPS"
|
37,496 |
<question>: What is the largest capacity for a stadium? <context>: CREATE TABLE table_25129482_1 (capacity INTEGER)
|
SELECT MAX(capacity) FROM table_25129482_1
|
37,497 |
<question>: Which stadium is managed by Kari Martonen? <context>: CREATE TABLE table_25129482_1 (stadium VARCHAR, manager VARCHAR)
|
SELECT stadium FROM table_25129482_1 WHERE manager = "Kari Martonen"
|
37,498 |
<question>: How many capacities are given for FF Jaro club? <context>: CREATE TABLE table_25129482_1 (capacity VARCHAR, club VARCHAR)
|
SELECT COUNT(capacity) FROM table_25129482_1 WHERE club = "FF Jaro"
|
37,499 |
<question>: How many managers for club in Turku where kitmaker is Puma? <context>: CREATE TABLE table_25129482_1 (manager VARCHAR, kitmaker VARCHAR, location VARCHAR)
|
SELECT COUNT(manager) FROM table_25129482_1 WHERE kitmaker = "Puma" AND location = "Turku"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.