Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
22,400
<question>: What is the average 2012 civil liberties value associated with a 2011 status of not free, political rights 2012 over 6, and political rights 2011 over 7? <context>: CREATE TABLE table_name_42 (civil_liberties_2012 INTEGER, political_rights_2011 VARCHAR, status_2011 VARCHAR, political_rights_2012 VARCHAR)
SELECT AVG(civil_liberties_2012) FROM table_name_42 WHERE status_2011 = "not free" AND political_rights_2012 > 6 AND political_rights_2011 > 7
22,401
<question>: What is the total number of civil liberties 2011 values having 2010 political rights values under 3 and 2011 political rights values under 1? <context>: CREATE TABLE table_name_70 (civil_liberties_2011 VARCHAR, political_rights_2010 VARCHAR, political_rights_2011 VARCHAR)
SELECT COUNT(civil_liberties_2011) FROM table_name_70 WHERE political_rights_2010 < 3 AND political_rights_2011 < 1
22,402
<question>: What percentage of people were opposed to the candidate based on the WNBC/Marist poll that showed 8% of people were unsure? <context>: CREATE TABLE table_name_47 (oppose VARCHAR, unsure VARCHAR, poll_source VARCHAR)
SELECT oppose FROM table_name_47 WHERE unsure = "8%" AND poll_source = "wnbc/marist poll"
22,403
<question>: What percentage of people were opposed to the candidate based on the Time Poll poll that showed 6% of people were unsure? <context>: CREATE TABLE table_name_22 (oppose VARCHAR, poll_source VARCHAR, unsure VARCHAR)
SELECT oppose FROM table_name_22 WHERE poll_source = "time poll" AND unsure = "6%"
22,404
<question>: What percentage of people said they would consider Rudy Giuliani as a candidate according to the Newsweek poll that showed 32% opposed him? <context>: CREATE TABLE table_name_21 (consider VARCHAR, candidate VARCHAR, poll_source VARCHAR, oppose VARCHAR)
SELECT consider FROM table_name_21 WHERE poll_source = "newsweek poll" AND oppose = "32%" AND candidate = "rudy giuliani"
22,405
<question>: What was the result of the game in Stuttgart, West Germany and a goal number of less than 9? <context>: CREATE TABLE table_name_12 (result VARCHAR, venue VARCHAR, goal VARCHAR)
SELECT result FROM table_name_12 WHERE venue = "stuttgart, west germany" AND goal < 9
22,406
<question>: Which Record has an Opponent of twins, and a Date of july 25? <context>: CREATE TABLE table_name_10 (record VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT record FROM table_name_10 WHERE opponent = "twins" AND date = "july 25"
22,407
<question>: How much is per capita income when median household income is $42,845? <context>: CREATE TABLE table_name_43 (per_capita_income VARCHAR, median_household_income VARCHAR)
SELECT per_capita_income FROM table_name_43 WHERE median_household_income = "$42,845"
22,408
<question>: Which Points have a Score of 4–1, and a Game smaller than 39? <context>: CREATE TABLE table_name_91 (points INTEGER, score VARCHAR, game VARCHAR)
SELECT SUM(points) FROM table_name_91 WHERE score = "4–1" AND game < 39
22,409
<question>: Which January has a Score of 7–4, and a Game smaller than 42? <context>: CREATE TABLE table_name_69 (january INTEGER, score VARCHAR, game VARCHAR)
SELECT SUM(january) FROM table_name_69 WHERE score = "7–4" AND game < 42
22,410
<question>: How many games have a Score of 1–0, and Points smaller than 66? <context>: CREATE TABLE table_name_9 (game VARCHAR, score VARCHAR, points VARCHAR)
SELECT COUNT(game) FROM table_name_9 WHERE score = "1–0" AND points < 66
22,411
<question>: Which Points is the lowest one that has a Score of 1–4, and a January smaller than 18? <context>: CREATE TABLE table_name_26 (points INTEGER, score VARCHAR, january VARCHAR)
SELECT MIN(points) FROM table_name_26 WHERE score = "1–4" AND january < 18
22,412
<question>: Which borough or census area has a $59,596 median household income? <context>: CREATE TABLE table_name_68 (borough_or_census_area VARCHAR, median_household_income VARCHAR)
SELECT borough_or_census_area FROM table_name_68 WHERE median_household_income = "$59,596"
22,413
<question>: What is the population of the area with a median family income of $71,278? <context>: CREATE TABLE table_name_59 (population VARCHAR, median_family_income VARCHAR)
SELECT COUNT(population) FROM table_name_59 WHERE median_family_income = "$71,278"
22,414
<question>: What was the Outcome of the Danish Open in 1985? <context>: CREATE TABLE table_name_21 (outcome VARCHAR, venue VARCHAR, year VARCHAR)
SELECT outcome FROM table_name_21 WHERE venue = "danish open" AND year = "1985"
22,415
<question>: What was the Venue in 1986 with an Outcome of 1? <context>: CREATE TABLE table_name_71 (venue VARCHAR, year VARCHAR, outcome VARCHAR)
SELECT venue FROM table_name_71 WHERE year = "1986" AND outcome = "1"
22,416
<question>: What was the Outcome in 1983 of the WD Event? <context>: CREATE TABLE table_name_11 (outcome VARCHAR, event VARCHAR, year VARCHAR)
SELECT outcome FROM table_name_11 WHERE event = "wd" AND year = "1983"
22,417
<question>: In what Year did the German Open have Yoo Sang-Hee as Partner? <context>: CREATE TABLE table_name_8 (year VARCHAR, partner VARCHAR, venue VARCHAR)
SELECT year FROM table_name_8 WHERE partner = "yoo sang-hee" AND venue = "german open"
22,418
<question>: What is the Outcome in the Malaysia Open with Partner Yoo Sang-Hee? <context>: CREATE TABLE table_name_81 (outcome VARCHAR, partner VARCHAR, venue VARCHAR)
SELECT outcome FROM table_name_81 WHERE partner = "yoo sang-hee" AND venue = "malaysia open"
22,419
<question>: What is the Partner during the Asian Games Year? <context>: CREATE TABLE table_name_23 (partner VARCHAR, year VARCHAR)
SELECT partner FROM table_name_23 WHERE year = "asian games"
22,420
<question>: What was the loss for August 19? <context>: CREATE TABLE table_name_91 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_91 WHERE date = "august 19"
22,421
<question>: What Municipality has a Rank of 44? <context>: CREATE TABLE table_name_94 (municipality VARCHAR, rank VARCHAR)
SELECT municipality FROM table_name_94 WHERE rank = 44
22,422
<question>: What is the total Rank that has a Municipality of Winnipeg, an Area (KM 2) that's larger than 464.01? <context>: CREATE TABLE table_name_85 (rank INTEGER, municipality VARCHAR, area__km_2__ VARCHAR)
SELECT SUM(rank) FROM table_name_85 WHERE municipality = "winnipeg" AND area__km_2__ > 464.01
22,423
<question>: What is the highest Area (KM 2) for the Province of Ontario, that has the Status of Town, a Municipality of Minto, and a Rank that's smaller than 84? <context>: CREATE TABLE table_name_96 (area__km_2__ INTEGER, rank VARCHAR, municipality VARCHAR, province VARCHAR, status VARCHAR)
SELECT MAX(area__km_2__) FROM table_name_96 WHERE province = "ontario" AND status = "town" AND municipality = "minto" AND rank < 84
22,424
<question>: What's the total of Rank that has an Area (KM 2) of 1050.14? <context>: CREATE TABLE table_name_6 (rank INTEGER, area__km_2__ VARCHAR)
SELECT SUM(rank) FROM table_name_6 WHERE area__km_2__ = 1050.14
22,425
<question>: What is the listed Status that has the Province of Ontario and Rank of 86? <context>: CREATE TABLE table_name_19 (status VARCHAR, province VARCHAR, rank VARCHAR)
SELECT status FROM table_name_19 WHERE province = "ontario" AND rank = 86
22,426
<question>: What type of event had the wrestler with a reign of 2 and held the title for 35 days? <context>: CREATE TABLE table_name_31 (event VARCHAR, reign VARCHAR, days_held VARCHAR)
SELECT event FROM table_name_31 WHERE reign = "2" AND days_held = "35"
22,427
<question>: Where did the wrestler, super parka, with the title with a reign of 2? <context>: CREATE TABLE table_name_41 (location VARCHAR, wrestler VARCHAR, reign VARCHAR)
SELECT location FROM table_name_41 WHERE wrestler = "super parka" AND reign = "2"
22,428
<question>: What is the reign for super kendo who held it for 35 days? <context>: CREATE TABLE table_name_16 (reign VARCHAR, days_held VARCHAR, wrestler VARCHAR)
SELECT reign FROM table_name_16 WHERE days_held = "35" AND wrestler = "super kendo"
22,429
<question>: Which FCC info has an ERP W of 100 watts? <context>: CREATE TABLE table_name_67 (fcc_info VARCHAR, erp_w VARCHAR)
SELECT fcc_info FROM table_name_67 WHERE erp_w = "100 watts"
22,430
<question>: Which Frequency MHz has a Call Sign of K218BE? <context>: CREATE TABLE table_name_7 (frequency_mhz VARCHAR, call_sign VARCHAR)
SELECT frequency_mhz FROM table_name_7 WHERE call_sign = "k218be"
22,431
<question>: Which ERP W has a Frequency MHz of 88.5 FM? <context>: CREATE TABLE table_name_15 (erp_w VARCHAR, frequency_mhz VARCHAR)
SELECT erp_w FROM table_name_15 WHERE frequency_mhz = "88.5 fm"
22,432
<question>: What is the name of the player from Spain with a rank lower than 3? <context>: CREATE TABLE table_name_62 (name VARCHAR, nationality VARCHAR, ranking VARCHAR)
SELECT name FROM table_name_62 WHERE nationality = "spain" AND ranking > 3
22,433
<question>: Which region had a catalog number of 570 734-2? <context>: CREATE TABLE table_name_19 (region VARCHAR, catalog VARCHAR)
SELECT region FROM table_name_19 WHERE catalog = "570 734-2"
22,434
<question>: Which region had a release format of CD Maxi? <context>: CREATE TABLE table_name_8 (region VARCHAR, format VARCHAR)
SELECT region FROM table_name_8 WHERE format = "cd maxi"
22,435
<question>: Which region had a release format of CD Maxi? <context>: CREATE TABLE table_name_20 (region VARCHAR, format VARCHAR)
SELECT region FROM table_name_20 WHERE format = "cd maxi"
22,436
<question>: Where did the Jet's play with an attendance of 11,309? <context>: CREATE TABLE table_name_98 (game_site VARCHAR, attendance VARCHAR)
SELECT game_site FROM table_name_98 WHERE attendance = "11,309"
22,437
<question>: What's the result of the game against Bye? <context>: CREATE TABLE table_name_34 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_34 WHERE opponent = "bye"
22,438
<question>: What's the Result for week 15? <context>: CREATE TABLE table_name_53 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_53 WHERE week = 15
22,439
<question>: What day was the appointment when Credentials Presented was jul 2, 1969? <context>: CREATE TABLE table_name_79 (appointment VARCHAR, credentials_presented VARCHAR)
SELECT appointment FROM table_name_79 WHERE credentials_presented = "jul 2, 1969"
22,440
<question>: When were the credentials presented for new jersey with a status of foreign service officer? <context>: CREATE TABLE table_name_59 (credentials_presented VARCHAR, state VARCHAR, status VARCHAR)
SELECT credentials_presented FROM table_name_59 WHERE state = "new jersey" AND status = "foreign service officer"
22,441
<question>: What is the title for david campbell mulford? <context>: CREATE TABLE table_name_90 (title VARCHAR, name VARCHAR)
SELECT title FROM table_name_90 WHERE name = "david campbell mulford"
22,442
<question>: What state has an appointment for jul 12, 2001? <context>: CREATE TABLE table_name_47 (state VARCHAR, appointment VARCHAR)
SELECT state FROM table_name_47 WHERE appointment = "jul 12, 2001"
22,443
<question>: What day were credentials presented for vermont? <context>: CREATE TABLE table_name_35 (credentials_presented VARCHAR, state VARCHAR)
SELECT credentials_presented FROM table_name_35 WHERE state = "vermont"
22,444
<question>: Which Class has a Weight of 203? <context>: CREATE TABLE table_name_57 (class VARCHAR, weight VARCHAR)
SELECT class FROM table_name_57 WHERE weight = 203
22,445
<question>: What is the team 1 with team 2 Mount Cameroon FC? <context>: CREATE TABLE table_name_43 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_43 WHERE team_2 = "mount cameroon fc"
22,446
<question>: What is the 2nd leg of team 1 Dolphins? <context>: CREATE TABLE table_name_99 (team_1 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_99 WHERE team_1 = "dolphins"
22,447
<question>: When the winner was No Race in a year after 1909, what was the distance? <context>: CREATE TABLE table_name_68 (distance__miles_ VARCHAR, winner VARCHAR, year VARCHAR)
SELECT distance__miles_ FROM table_name_68 WHERE winner = "no race" AND year > 1909
22,448
<question>: What horse won with a trainer of "no race"? <context>: CREATE TABLE table_name_21 (winner VARCHAR, trainer VARCHAR)
SELECT winner FROM table_name_21 WHERE trainer = "no race"
22,449
<question>: Who was the jockey for the winning horse Helioptic? <context>: CREATE TABLE table_name_41 (jockey VARCHAR, winner VARCHAR)
SELECT jockey FROM table_name_41 WHERE winner = "helioptic"
22,450
<question>: What was the time for the winning horse Salford ii? <context>: CREATE TABLE table_name_94 (time VARCHAR, winner VARCHAR)
SELECT time FROM table_name_94 WHERE winner = "salford ii"
22,451
<question>: What was the winning time for the winning horse, Kentucky ii? <context>: CREATE TABLE table_name_49 (time VARCHAR, winner VARCHAR)
SELECT time FROM table_name_49 WHERE winner = "kentucky ii"
22,452
<question>: What was the position with the total number less than 1? <context>: CREATE TABLE table_name_1 (position VARCHAR, lost INTEGER)
SELECT COUNT(position) FROM table_name_1 WHERE lost < 1
22,453
<question>: What is the sum of golds for ranks of 6 and totals over 3? <context>: CREATE TABLE table_name_36 (gold INTEGER, rank VARCHAR, total VARCHAR)
SELECT SUM(gold) FROM table_name_36 WHERE rank = "6" AND total > 3
22,454
<question>: What is the average silver for golds over 2, ranks of 1, and bronzes over 0? <context>: CREATE TABLE table_name_35 (silver INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT AVG(silver) FROM table_name_35 WHERE gold > 2 AND rank = "1" AND bronze > 0
22,455
<question>: What is the number of totals that have silvers under 2, bronzes over 0, and golds over 1? <context>: CREATE TABLE table_name_57 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT COUNT(total) FROM table_name_57 WHERE silver < 2 AND bronze > 0 AND gold > 1
22,456
<question>: What is the total number of golds having a total of 1, bronzes of 0, and from West Germany? <context>: CREATE TABLE table_name_61 (gold VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT COUNT(gold) FROM table_name_61 WHERE total = 1 AND bronze < 1 AND nation = "west germany"
22,457
<question>: What is the sum of bronzes having silvers over 5 and golds under 20? <context>: CREATE TABLE table_name_43 (bronze INTEGER, silver VARCHAR, gold VARCHAR)
SELECT SUM(bronze) FROM table_name_43 WHERE silver > 5 AND gold < 20
22,458
<question>: What is the result of the game with an attendance greater than 67,702? <context>: CREATE TABLE table_name_71 (result VARCHAR, attendance INTEGER)
SELECT result FROM table_name_71 WHERE attendance > 67 OFFSET 702
22,459
<question>: How many Losses have a Ballarat FL of melton south, and an Against larger than 1468? <context>: CREATE TABLE table_name_10 (losses VARCHAR, ballarat_fl VARCHAR, against VARCHAR)
SELECT COUNT(losses) FROM table_name_10 WHERE ballarat_fl = "melton south" AND against > 1468
22,460
<question>: How many Against has Byes smaller than 2? <context>: CREATE TABLE table_name_15 (against INTEGER, byes INTEGER)
SELECT AVG(against) FROM table_name_15 WHERE byes < 2
22,461
<question>: How many Against has a Ballarat FL of darley and Wins larger than 8? <context>: CREATE TABLE table_name_4 (against VARCHAR, ballarat_fl VARCHAR, wins VARCHAR)
SELECT COUNT(against) FROM table_name_4 WHERE ballarat_fl = "darley" AND wins > 8
22,462
<question>: How many Byes have Against of 1076 and Wins smaller than 13? <context>: CREATE TABLE table_name_16 (byes INTEGER, against VARCHAR, wins VARCHAR)
SELECT AVG(byes) FROM table_name_16 WHERE against = 1076 AND wins < 13
22,463
<question>: What is the total number of Total Passengers when the annual change is 28.8% and the rank is less than 8? <context>: CREATE TABLE table_name_28 (total_passengers VARCHAR, annual_change VARCHAR, rank VARCHAR)
SELECT COUNT(total_passengers) FROM table_name_28 WHERE annual_change = "28.8%" AND rank < 8
22,464
<question>: What is the sum of Total Passengers when the annual change is 9.7% and the rank is less than 6? <context>: CREATE TABLE table_name_9 (total_passengers INTEGER, annual_change VARCHAR, rank VARCHAR)
SELECT SUM(total_passengers) FROM table_name_9 WHERE annual_change = "9.7%" AND rank < 6
22,465
<question>: What is the highest Total Passengers when the annual change is 18.3%, and the rank is less than 11? <context>: CREATE TABLE table_name_49 (total_passengers INTEGER, annual_change VARCHAR, rank VARCHAR)
SELECT MAX(total_passengers) FROM table_name_49 WHERE annual_change = "18.3%" AND rank < 11
22,466
<question>: What location has an annual change of 7.6% <context>: CREATE TABLE table_name_32 (location VARCHAR, annual_change VARCHAR)
SELECT location FROM table_name_32 WHERE annual_change = "7.6%"
22,467
<question>: Which Result has a Score of 1–0, and a Goal of 16? <context>: CREATE TABLE table_name_7 (result VARCHAR, score VARCHAR, goal VARCHAR)
SELECT result FROM table_name_7 WHERE score = "1–0" AND goal = 16
22,468
<question>: Which Score has a Result of 2–1, and a Competition of friendly, and a Goal smaller than 17? <context>: CREATE TABLE table_name_21 (score VARCHAR, goal VARCHAR, result VARCHAR, competition VARCHAR)
SELECT score FROM table_name_21 WHERE result = "2–1" AND competition = "friendly" AND goal < 17
22,469
<question>: Which Score has a Date of october 8, 2005, and a Venue of estadio alfonso lastras, san luis potosí, mexico? <context>: CREATE TABLE table_name_96 (score VARCHAR, date VARCHAR, venue VARCHAR)
SELECT score FROM table_name_96 WHERE date = "october 8, 2005" AND venue = "estadio alfonso lastras, san luis potosí, mexico"
22,470
<question>: Which Competition has a Venue of estadio alfonso lastras, san luis potosí, mexico, and a Goal larger than 15? <context>: CREATE TABLE table_name_45 (competition VARCHAR, venue VARCHAR, goal VARCHAR)
SELECT competition FROM table_name_45 WHERE venue = "estadio alfonso lastras, san luis potosí, mexico" AND goal > 15
22,471
<question>: What is the area for Worth Parish? <context>: CREATE TABLE table_name_22 (area__hectare_ VARCHAR, parish VARCHAR)
SELECT area__hectare_ FROM table_name_22 WHERE parish = "worth"
22,472
<question>: What is the week number with Phil Collins as the original artist? <context>: CREATE TABLE table_name_88 (week__number VARCHAR, original_artist VARCHAR)
SELECT week__number FROM table_name_88 WHERE original_artist = "phil collins"
22,473
<question>: What is the order number that has top 20 (10 women) as the week number? <context>: CREATE TABLE table_name_16 (order__number VARCHAR, week__number VARCHAR)
SELECT order__number FROM table_name_16 WHERE week__number = "top 20 (10 women)"
22,474
<question>: What is the original artist of top 9 as the week number? <context>: CREATE TABLE table_name_88 (original_artist VARCHAR, week__number VARCHAR)
SELECT original_artist FROM table_name_88 WHERE week__number = "top 9"
22,475
<question>: What is the week number that has Dolly Parton as the theme? <context>: CREATE TABLE table_name_12 (week__number VARCHAR, theme VARCHAR)
SELECT week__number FROM table_name_12 WHERE theme = "dolly parton"
22,476
<question>: What is the original artist that has 11 as the order number? <context>: CREATE TABLE table_name_69 (original_artist VARCHAR, order__number VARCHAR)
SELECT original_artist FROM table_name_69 WHERE order__number = "11"
22,477
<question>: What is the order number that has Aretha Franklin as the original artist? <context>: CREATE TABLE table_name_97 (order__number VARCHAR, original_artist VARCHAR)
SELECT order__number FROM table_name_97 WHERE original_artist = "aretha franklin"
22,478
<question>: Which Format has a Date of 1993, and a Catalog of cleo 2481-2? <context>: CREATE TABLE table_name_81 (format VARCHAR, date VARCHAR, catalog VARCHAR)
SELECT format FROM table_name_81 WHERE date = 1993 AND catalog = "cleo 2481-2"
22,479
<question>: Which Label has a Date smaller than 2008, and a Catalog of fall cd 006? <context>: CREATE TABLE table_name_82 (label VARCHAR, date VARCHAR, catalog VARCHAR)
SELECT label FROM table_name_82 WHERE date < 2008 AND catalog = "fall cd 006"
22,480
<question>: What is the sum of Round with a Position that is center? <context>: CREATE TABLE table_name_88 (round INTEGER, position VARCHAR)
SELECT SUM(round) FROM table_name_88 WHERE position = "center"
22,481
<question>: What is the sum of Round with a Pick that is 55? <context>: CREATE TABLE table_name_89 (round INTEGER, pick VARCHAR)
SELECT SUM(round) FROM table_name_89 WHERE pick = 55
22,482
<question>: What is the most wins when the number of losses was less than 4 and there was more than 0 ties? <context>: CREATE TABLE table_name_77 (wins INTEGER, losses VARCHAR, ties VARCHAR)
SELECT MAX(wins) FROM table_name_77 WHERE losses < 4 AND ties > 0
22,483
<question>: Which team had fewer than 2 losses and a position number more than 1? <context>: CREATE TABLE table_name_37 (team VARCHAR, losses VARCHAR, pos VARCHAR)
SELECT team FROM table_name_37 WHERE losses < 2 AND pos > 1
22,484
<question>: What season had Marcio Lassiter? <context>: CREATE TABLE table_name_97 (season VARCHAR, name VARCHAR)
SELECT season FROM table_name_97 WHERE name = "marcio lassiter"
22,485
<question>: What season had an acquisition of free agency, and was higher than 9? <context>: CREATE TABLE table_name_89 (season VARCHAR, acquisition_via VARCHAR, number VARCHAR)
SELECT season FROM table_name_89 WHERE acquisition_via = "free agency" AND number > 9
22,486
<question>: What number has an acquisition via the Rookie Draft, and is part of a School/club team at Cal State Fullerton? <context>: CREATE TABLE table_name_54 (number VARCHAR, acquisition_via VARCHAR, school_club_team VARCHAR)
SELECT number FROM table_name_54 WHERE acquisition_via = "rookie draft" AND school_club_team = "cal state fullerton"
22,487
<question>: What is the highest rank of the medal total less than 15, more than 2 bronzes, 0 gold and 1 silver? <context>: CREATE TABLE table_name_29 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT MAX(rank) FROM table_name_29 WHERE total < 15 AND bronze > 2 AND gold = 0 AND silver = 1
22,488
<question>: What is the location of the team nicknamed Broncos, which was founded after 1889? <context>: CREATE TABLE table_name_59 (location VARCHAR, founded VARCHAR, team_nickname VARCHAR)
SELECT location FROM table_name_59 WHERE founded > 1889 AND team_nickname = "broncos"
22,489
<question>: What is the location of the University of Montana, which was founded after 1890? <context>: CREATE TABLE table_name_23 (location VARCHAR, founded VARCHAR, institution VARCHAR)
SELECT location FROM table_name_23 WHERE founded > 1890 AND institution = "university of montana"
22,490
<question>: Which landfall was in category 1 for Saffir-Simpson in 1999? <context>: CREATE TABLE table_name_85 (landfall VARCHAR, saffir_simpson_category VARCHAR, year VARCHAR)
SELECT landfall FROM table_name_85 WHERE saffir_simpson_category = 1 AND year = 1999
22,491
<question>: What was the lowest V(mph) for a Saffir-Simpson of 4 in 2005? <context>: CREATE TABLE table_name_36 (v_mph_ INTEGER, saffir_simpson_category VARCHAR, year VARCHAR)
SELECT MIN(v_mph_) FROM table_name_36 WHERE saffir_simpson_category = 4 AND year = 2005
22,492
<question>: What was the highest SaffirSimpson with an NHC advisory of 18? <context>: CREATE TABLE table_name_8 (saffir_simpson_category INTEGER, nhc_advisory_number VARCHAR)
SELECT MAX(saffir_simpson_category) FROM table_name_8 WHERE nhc_advisory_number = "18"
22,493
<question>: Which athlete's rank is more than 15 when the result is less than 7.68, the group is b, and the nationality listed is Great Britain? <context>: CREATE TABLE table_name_82 (athlete VARCHAR, nationality VARCHAR, group VARCHAR, rank VARCHAR, result VARCHAR)
SELECT athlete FROM table_name_82 WHERE rank > 15 AND result < 7.68 AND group = "b" AND nationality = "great britain"
22,494
<question>: When did NASA launch the wide field infrared explorer (wire)? <context>: CREATE TABLE table_name_11 (launch_date VARCHAR, space_agency VARCHAR, name VARCHAR)
SELECT launch_date FROM table_name_11 WHERE space_agency = "nasa" AND name = "wide field infrared explorer (wire)"
22,495
<question>: Which space agency launched the herschel space observatory? <context>: CREATE TABLE table_name_17 (space_agency VARCHAR, name VARCHAR)
SELECT space_agency FROM table_name_17 WHERE name = "herschel space observatory"
22,496
<question>: What lead has the third David Nedohin? <context>: CREATE TABLE table_name_98 (lead VARCHAR, third VARCHAR)
SELECT lead FROM table_name_98 WHERE third = "david nedohin"
22,497
<question>: Which builder completed after 1889? <context>: CREATE TABLE table_name_93 (builder VARCHAR, completed INTEGER)
SELECT builder FROM table_name_93 WHERE completed > 1889
22,498
<question>: Which builder completed before 1890 and launched on 9 june 1888? <context>: CREATE TABLE table_name_84 (builder VARCHAR, completed VARCHAR, launched VARCHAR)
SELECT builder FROM table_name_84 WHERE completed < 1890 AND launched = "9 june 1888"
22,499
<question>: What is the name of the boat that was built by Chatham and Laid down of 25 april 1887? <context>: CREATE TABLE table_name_75 (name VARCHAR, builder VARCHAR, laid_down VARCHAR)
SELECT name FROM table_name_75 WHERE builder = "chatham" AND laid_down = "25 april 1887"