question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
On what date did ke ʻ eaumoku pāpa ʻ iahiahi leave office?
CREATE TABLE table_name_25 (left_office VARCHAR, name VARCHAR)
SELECT left_office FROM table_name_25 WHERE name = "ke ʻ eaumoku pāpa ʻ iahiahi"
What is Party, when Name is Oudom Khattigna?
CREATE TABLE table_name_8 (party VARCHAR, name VARCHAR)
SELECT party FROM table_name_8 WHERE name = "oudom khattigna"
What team is owned by Mark Smith and has Paul Clapprood as a crew chief?
CREATE TABLE table_name_8 (team VARCHAR, owner_s_ VARCHAR, crew_chief VARCHAR)
SELECT team FROM table_name_8 WHERE owner_s_ = "mark smith" AND crew_chief = "paul clapprood"
What is the Away captain with a Venue that is old trafford?
CREATE TABLE table_name_36 (away_captain VARCHAR, venue VARCHAR)
SELECT away_captain FROM table_name_36 WHERE venue = "old trafford"
How many times was player brian currie picked?
CREATE TABLE table_26996293_7 (pick__number VARCHAR, player VARCHAR)
SELECT COUNT(pick__number) FROM table_26996293_7 WHERE player = "Brian Currie"
Which Time has an Event of 200 m butterfly?
CREATE TABLE table_name_7 (time VARCHAR, event VARCHAR)
SELECT time FROM table_name_7 WHERE event = "200 m butterfly"
What shows for 2009 when 25 shows for 2011?
CREATE TABLE table_name_32 (Id VARCHAR)
SELECT 2009 FROM table_name_32 WHERE 2011 = "25"
Which species of bacteria has 5,566 genes?
CREATE TABLE table_name_35 (strain VARCHAR, genes VARCHAR)
SELECT strain FROM table_name_35 WHERE genes = "5,566"
What are the children per donor in the country where the allowed recipients are married or in cohabitation?
CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR)
SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = "Married or in cohabitation"
Which position has a speed of 123.220?
CREATE TABLE table_name_35 (position VARCHAR, speed VARCHAR)
SELECT position FROM table_name_35 WHERE speed = "123.220"
List the document type code, document name, and document description for the document with name 'Noel CV' or name 'King Book'.
CREATE TABLE Documents (document_type_code VARCHAR, document_name VARCHAR, document_description VARCHAR)
SELECT document_type_code, document_name, document_description FROM Documents WHERE document_name = 'Noel CV' OR document_name = 'King Book'
What Week had an Attendance smaller than 22,333?
CREATE TABLE table_name_12 (week VARCHAR, attendance INTEGER)
SELECT COUNT(week) FROM table_name_12 WHERE attendance < 22 OFFSET 333
Name the 2011 for 2010 of olympic games
CREATE TABLE table_name_64 (Id VARCHAR)
SELECT 2011 FROM table_name_64 WHERE 2010 = "olympic games"
How many rounds was the fight at UFC 34?
CREATE TABLE table_name_7 (round INTEGER, event VARCHAR)
SELECT SUM(round) FROM table_name_7 WHERE event = "ufc 34"
Name the player for 68-68-75-74=285
CREATE TABLE table_name_69 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_69 WHERE score = 68 - 68 - 75 - 74 = 285
What is the mission that has ambassador of local position, and a resident country of democratic republic of congo?
CREATE TABLE table_name_35 (mission VARCHAR, local_position VARCHAR, resident_country VARCHAR)
SELECT mission FROM table_name_35 WHERE local_position = "ambassador" AND resident_country = "democratic republic of congo"
How many new entries this round are there with more than 16 matches and a third round qualifying?
CREATE TABLE table_name_90 (new_entries_this_round VARCHAR, matches VARCHAR, round VARCHAR)
SELECT new_entries_this_round FROM table_name_90 WHERE matches > 16 AND round = "third round qualifying"
Name the total number of points with year less than 1955 and rank of 5th with wins less than 0
CREATE TABLE table_name_31 (points VARCHAR, wins VARCHAR, year VARCHAR, rank VARCHAR)
SELECT COUNT(points) FROM table_name_31 WHERE year < 1955 AND rank = "5th" AND wins < 0
Name the settlement for александрово
CREATE TABLE table_2562572_37 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)
SELECT settlement FROM table_2562572_37 WHERE cyrillic_name_other_names = "Александрово"
Which province has the contestant elixandra tobias carasco?
CREATE TABLE table_name_81 (province VARCHAR, _community VARCHAR, contestant VARCHAR)
SELECT province, _community FROM table_name_81 WHERE contestant = "elixandra tobias carasco"
What was the date of week 3?
CREATE TABLE table_name_25 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_25 WHERE week = 3
What is the fewest number of silver medals received by a nation who received 40 bronze medals and more than 42 gold medals?
CREATE TABLE table_name_97 (silver INTEGER, bronze VARCHAR, gold VARCHAR)
SELECT MIN(silver) FROM table_name_97 WHERE bronze = 40 AND gold > 42
What's the total built by the United Kingdom and holds 1,300 passengers?
CREATE TABLE table_name_68 (built VARCHAR, registry VARCHAR, passengers VARCHAR)
SELECT COUNT(built) FROM table_name_68 WHERE registry = "united kingdom" AND passengers = 1 OFFSET 300
What's the rank for a team that has a percentage of 56% and a loss smaller than 4?
CREATE TABLE table_name_45 (rank INTEGER, loss VARCHAR, percentage VARCHAR)
SELECT AVG(rank) FROM table_name_45 WHERE NOT percentage = "56%" AND loss < 4
On which date was the score 94-74 w?
CREATE TABLE table_name_70 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_70 WHERE score = "94-74 w"
The theme year they were born belongs to what artist?
CREATE TABLE table_15383430_1 (original_artist VARCHAR, theme VARCHAR)
SELECT original_artist FROM table_15383430_1 WHERE theme = "Year They Were Born"
What was the total ITV1 viewers in millions for the episode with a share (%) of 28.9?
CREATE TABLE table_27319183_5 (total_itv1_viewers__millions_ VARCHAR, share___percentage_ VARCHAR)
SELECT total_itv1_viewers__millions_ FROM table_27319183_5 WHERE share___percentage_ = "28.9"
What is the number of bills sponsored associated with over 113 bills originally cosponsored and under 47 amendments cosponsored?
CREATE TABLE table_name_57 (all_bills_sponsored VARCHAR, bills_originally_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR)
SELECT all_bills_sponsored FROM table_name_57 WHERE bills_originally_cosponsored > 113 AND all_amendments_cosponsored < 47
Name the party for new york 4
CREATE TABLE table_19753079_35 (party VARCHAR, district VARCHAR)
SELECT party FROM table_19753079_35 WHERE district = "New York 4"
What is the away team of the UEFA champions league?
CREATE TABLE table_name_67 (away VARCHAR, competition VARCHAR)
SELECT away FROM table_name_67 WHERE competition = "uefa champions league"
What is the Elmers End with a 17:57 Selsdon time?
CREATE TABLE table_name_30 (elmers_end VARCHAR, selsdon VARCHAR)
SELECT elmers_end FROM table_name_30 WHERE selsdon = "17:57"
Which parliament is sylvia lim swee lian?
CREATE TABLE table_1889233_2 (parliament VARCHAR, name VARCHAR)
SELECT parliament FROM table_1889233_2 WHERE name = "Sylvia Lim Swee Lian"
On what date was the attendance at TD Garden 18,624?
CREATE TABLE table_23274514_8 (date VARCHAR, location_attendance VARCHAR)
SELECT date FROM table_23274514_8 WHERE location_attendance = "TD Garden 18,624"
who is the dual commentator at the channel with spokesperson larisa verbickaya
CREATE TABLE table_1992924_3 (Dual VARCHAR, spokesperson VARCHAR)
SELECT Dual AS commentator FROM table_1992924_3 WHERE spokesperson = "Larisa Verbickaya"
Who are the candidates in Washington 1 district?
CREATE TABLE table_16185956_1 (district VARCHAR)
SELECT 2008 AS _candidates FROM table_16185956_1 WHERE district = "Washington 1"
When nel rapiz is the name what is the status?
CREATE TABLE table_19061741_1 (status VARCHAR, name VARCHAR)
SELECT status FROM table_19061741_1 WHERE name = "Nel Rapiz"
What is the duration of the Expedition 20 ISS Zvezda?
CREATE TABLE table_name_40 (duration VARCHAR, spacecraft VARCHAR)
SELECT duration FROM table_name_40 WHERE spacecraft = "expedition 20 iss zvezda"
Which firm conducted a poll in August 2006?
CREATE TABLE table_name_42 (polling_firm VARCHAR, dates VARCHAR)
SELECT polling_firm FROM table_name_42 WHERE dates = "august 2006"
What is the End of term of the President with an Age at inauguration of 78years, 160days?
CREATE TABLE table_name_89 (end_of_term VARCHAR, age_at_inauguration VARCHAR)
SELECT end_of_term FROM table_name_89 WHERE age_at_inauguration = "78years, 160days"
How many times did the Bruins play Tennessee?
CREATE TABLE table_20630665_1 (result VARCHAR, opponent VARCHAR)
SELECT COUNT(result) FROM table_20630665_1 WHERE opponent = "Tennessee"
Who was the winner of the tre valli varesine race?
CREATE TABLE table_name_60 (winner VARCHAR, race_name VARCHAR)
SELECT winner FROM table_name_60 WHERE race_name = "tre valli varesine"
Show the countries that have managers of age above 50 or below 46.
CREATE TABLE manager (Country VARCHAR, Age VARCHAR)
SELECT Country FROM manager WHERE Age > 50 OR Age < 46
What is the Semi finalists when the Runner-up was katrina adams zina garrison-jackson?
CREATE TABLE table_name_55 (semi_finalists VARCHAR, runner_up VARCHAR)
SELECT semi_finalists FROM table_name_55 WHERE runner_up = "katrina adams zina garrison-jackson"
What is the total number of Opponents, when Raiders Points is "42", when Attendance is less than 52,505?
CREATE TABLE table_name_16 (opponents VARCHAR, raiders_points VARCHAR, attendance VARCHAR)
SELECT COUNT(opponents) FROM table_name_16 WHERE raiders_points = 42 AND attendance < 52 OFFSET 505
Which artists have order # 1?
CREATE TABLE table_29756040_1 (original_artist VARCHAR, order__number VARCHAR)
SELECT original_artist FROM table_29756040_1 WHERE order__number = "1"
For races with an average speed of 113.835 mph, what are the winning race times?
CREATE TABLE table_17801022_1 (race_time VARCHAR, average_speed__mph_ VARCHAR)
SELECT race_time FROM table_17801022_1 WHERE average_speed__mph_ = "113.835"
What is the area for the province having Hangul of 경기도?
CREATE TABLE table_name_60 (area VARCHAR, hangul_chosongul VARCHAR)
SELECT area FROM table_name_60 WHERE hangul_chosongul = "경기도"
Who is the Opponents on May 3, 1982?
CREATE TABLE table_name_73 (opponents VARCHAR, date VARCHAR)
SELECT opponents FROM table_name_73 WHERE date = "may 3, 1982"
Which December has a Record of 4-3-6?
CREATE TABLE table_name_65 (december VARCHAR, record VARCHAR)
SELECT december FROM table_name_65 WHERE record = "4-3-6"
Who is the candidates for district maryland 1?
CREATE TABLE table_2668416_7 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_2668416_7 WHERE district = "Maryland 1"
What is the average Mean, when Drug is "Alcohol", and when Psychological Dependence is greater than 1.9?
CREATE TABLE table_name_98 (mean INTEGER, drug VARCHAR, psychological_dependence VARCHAR)
SELECT AVG(mean) FROM table_name_98 WHERE drug = "alcohol" AND psychological_dependence > 1.9
In what years was a film submitted with the title The Enigma of Kaspar Hauser?
CREATE TABLE table_10874596_1 (year_ VARCHAR, e_ VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT year_[e_] AS __ceremony_ FROM table_10874596_1 WHERE film_title_used_in_nomination = "The Enigma of Kaspar Hauser"
How many players' hometown was Akron, Ohio?
CREATE TABLE table_11677691_4 (school VARCHAR, hometown VARCHAR)
SELECT COUNT(school) FROM table_11677691_4 WHERE hometown = "Akron, Ohio"
What Investing Dragons had a request of £100,000?
CREATE TABLE table_name_87 (investing_dragon_s_ VARCHAR, money_requested__£_ VARCHAR)
SELECT investing_dragon_s_ FROM table_name_87 WHERE money_requested__£_ = "100,000"
When has a Score of 6–3, 6–4?
CREATE TABLE table_name_39 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_39 WHERE score = "6–3, 6–4"
what's the minimum attendance with score  10.16 (76) – 9.22 (76)
CREATE TABLE table_10566855_1 (attendance INTEGER, score VARCHAR)
SELECT MIN(attendance) FROM table_10566855_1 WHERE score = "10.16 (76) – 9.22 (76)"
What series number had the local title of Fort Boyard?
CREATE TABLE table_1949994_8 (no INTEGER, local_title VARCHAR)
SELECT MAX(no) FROM table_1949994_8 WHERE local_title = "Fort Boyard"
Show all document type codes, document type names, document type descriptions.
CREATE TABLE Ref_document_types (document_type_code VARCHAR, document_type_name VARCHAR, document_type_description VARCHAR)
SELECT document_type_code, document_type_name, document_type_description FROM Ref_document_types
What is the minimum mundubbera when biggenden is 1882
CREATE TABLE table_12526990_1 (mundubbera INTEGER, biggenden VARCHAR)
SELECT MIN(mundubbera) FROM table_12526990_1 WHERE biggenden = 1882
What was the constructor of the car that Hermann Lang drove after 1935?
CREATE TABLE table_name_89 (constructor VARCHAR, year VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_89 WHERE year > 1935 AND driver = "hermann lang"
What is the Date when the match Resulted in a draw?
CREATE TABLE table_name_95 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_95 WHERE result = "draw"
What was the attendance for the game with an away team of Hispano?
CREATE TABLE table_name_99 (attendance VARCHAR, away VARCHAR)
SELECT attendance FROM table_name_99 WHERE away = "hispano"
Which average Crowd has a Home team of south melbourne?
CREATE TABLE table_name_72 (crowd INTEGER, home_team VARCHAR)
SELECT AVG(crowd) FROM table_name_72 WHERE home_team = "south melbourne"
Which rank has a smaller area (sq mi) than 48, and an area (km2) greater than 104, and an island of sula, sogn og fjordane?
CREATE TABLE table_name_12 (rank VARCHAR, island VARCHAR, area__sq_mi_ VARCHAR, area__km²_ VARCHAR)
SELECT rank FROM table_name_12 WHERE area__sq_mi_ < 48 AND area__km²_ > 104 AND island = "sula, sogn og fjordane"
What is the level name of the cheapest catalog (in USD)?
CREATE TABLE catalog_structure (catalog_level_name VARCHAR, catalog_level_number VARCHAR); CREATE TABLE catalog_contents (catalog_level_number VARCHAR, price_in_dollars VARCHAR)
SELECT t2.catalog_level_name FROM catalog_contents AS t1 JOIN catalog_structure AS t2 ON t1.catalog_level_number = t2.catalog_level_number ORDER BY t1.price_in_dollars LIMIT 1
What class is assigned to frequencies larger than 89.3 with an ERP W of 250?
CREATE TABLE table_name_60 (class VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)
SELECT class FROM table_name_60 WHERE frequency_mhz > 89.3 AND erp_w = 250
What is the strongs # for the hebrew word יִרְמְיָה?
CREATE TABLE table_1242447_2 (strongs__number VARCHAR, hebrew_word VARCHAR)
SELECT strongs__number FROM table_1242447_2 WHERE hebrew_word = "יִרְמְיָה"
What was the 4th day in the year before 2012 that the finish is 33rd?
CREATE TABLE table_name_52 (year VARCHAR, finish_position VARCHAR)
SELECT 4 AS th_day FROM table_name_52 WHERE year < 2012 AND finish_position = "33rd"
how many times is the player jim furyk?
CREATE TABLE table_name_55 (total VARCHAR, player VARCHAR)
SELECT COUNT(total) FROM table_name_55 WHERE player = "jim furyk"
What was the record for the location and attendance of american airlines arena 19,825?
CREATE TABLE table_27713030_11 (record VARCHAR, location_attendance VARCHAR)
SELECT record FROM table_27713030_11 WHERE location_attendance = "American Airlines Arena 19,825"
Which Unit's Construction started on 01.07.1967?
CREATE TABLE table_name_61 (unit VARCHAR, construction_started VARCHAR)
SELECT unit FROM table_name_61 WHERE construction_started = "01.07.1967"
Name the result for already famous
CREATE TABLE table_21790203_1 (result VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT result FROM table_21790203_1 WHERE film_title_used_in_nomination = "Already Famous"
What is the lowest number of uncommitted superdelegates for a state with more than 16 total and 2 for Hillary Clinton?
CREATE TABLE table_name_16 (uncommitted INTEGER, total VARCHAR, hillary_clinton VARCHAR)
SELECT MIN(uncommitted) FROM table_name_16 WHERE total > 16 AND hillary_clinton = 2
How many high rebounds were there on April 7?
CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR)
SELECT COUNT(high_rebounds) FROM table_22879323_10 WHERE date = "April 7"
What are the fewest losses for a player lower than 3, with wins fewer than 75%, 0 draws and 56 points?
CREATE TABLE table_name_76 (lost INTEGER, points VARCHAR, drawn VARCHAR, played VARCHAR, _percentage_won VARCHAR)
SELECT MIN(lost) FROM table_name_76 WHERE played > 3 AND _percentage_won < 75 AND drawn = 0 AND points = 56
Name the number of opponent with arrowhead stadium
CREATE TABLE table_13258823_2 (opponent VARCHAR, game_site VARCHAR)
SELECT COUNT(opponent) FROM table_13258823_2 WHERE game_site = "Arrowhead Stadium"
What was the winning team in 2013?
CREATE TABLE table_name_74 (winning_team VARCHAR, year VARCHAR)
SELECT winning_team FROM table_name_74 WHERE year = 2013
Tell me the competition that happened on 14 june 2008
CREATE TABLE table_name_54 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_54 WHERE date = "14 june 2008"
Who won the 1973 democratic initial primary for queens of 19%?
CREATE TABLE table_1108394_24 (queens VARCHAR)
SELECT 1973 AS _democratic_initial_primary FROM table_1108394_24 WHERE queens = "19_percentage"
Name the losses for general caballero zc
CREATE TABLE table_14876228_1 (losses VARCHAR, team VARCHAR)
SELECT losses FROM table_14876228_1 WHERE team = "General Caballero ZC"
What is the Equatorial bulge of the Body: Earth?
CREATE TABLE table_name_74 (equatorial_bulge VARCHAR, body VARCHAR)
SELECT equatorial_bulge FROM table_name_74 WHERE body = "earth"
What is the lowest area when the density is greater than 234.77, the population is less than 965,040, and the rank is 32?
CREATE TABLE table_name_75 (area INTEGER, population VARCHAR, density VARCHAR, rank VARCHAR)
SELECT MIN(area) FROM table_name_75 WHERE density > 234.77 AND rank = 32 AND population < 965 OFFSET 040
Which Intelli Trace has a No Extension and Windows Phone development of no?
CREATE TABLE table_name_10 (intellitrace VARCHAR, extensions VARCHAR, windows_phone_development VARCHAR)
SELECT intellitrace FROM table_name_10 WHERE extensions = "no" AND windows_phone_development = "no"
What is the control type which was founded in 1818?
CREATE TABLE table_2076608_3 (control VARCHAR, founded VARCHAR)
SELECT control FROM table_2076608_3 WHERE founded = "1818"
What is the total number of Against, when Date is "16/03/1996"?
CREATE TABLE table_name_88 (against VARCHAR, date VARCHAR)
SELECT COUNT(against) FROM table_name_88 WHERE date = "16/03/1996"
What is the IATA for the city of Amsterdam?
CREATE TABLE table_name_23 (iata VARCHAR, city VARCHAR)
SELECT iata FROM table_name_23 WHERE city = "amsterdam"
What is the lowest FA cup with 1 league cup, less than 12 total and 1 premier league?
CREATE TABLE table_name_17 (fa_cup INTEGER, premier_league VARCHAR, league_cup VARCHAR, total VARCHAR)
SELECT MIN(fa_cup) FROM table_name_17 WHERE league_cup = 1 AND total < 12 AND premier_league = 1
Which episode was directed by Jeff Woolnough and written by Christopher Ambrose?
CREATE TABLE table_26824484_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)
SELECT title FROM table_26824484_1 WHERE directed_by = "Jeff Woolnough" AND written_by = "Christopher Ambrose"
When was the game at Princes Park?
CREATE TABLE table_name_65 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_65 WHERE venue = "princes park"
Which Place has a To par of –8?
CREATE TABLE table_name_19 (place VARCHAR, to_par VARCHAR)
SELECT place FROM table_name_19 WHERE to_par = "–8"
What is the inegi code for mexicali with 13,700 km area?
CREATE TABLE table_name_6 (inegi_code INTEGER, municipal_seat VARCHAR, area__km2_ VARCHAR)
SELECT AVG(inegi_code) FROM table_name_6 WHERE municipal_seat = "mexicali" AND area__km2_ > 13 OFFSET 700
What are the ids of the problems reported after the date of any problems reported by Rylan Homenick?
CREATE TABLE problems (problem_id VARCHAR, reported_by_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR); CREATE TABLE problems (reported_by_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR)
SELECT T1.problem_id FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE date_problem_reported > (SELECT MAX(date_problem_reported) FROM problems AS T3 JOIN staff AS T4 ON T3.reported_by_staff_id = T4.staff_id WHERE T4.staff_first_name = "Rylan" AND T4.staff_last_name = "Homenick")
How many times is the nation china and bronze more than 0?
CREATE TABLE table_name_4 (rank VARCHAR, nation VARCHAR, bronze VARCHAR)
SELECT COUNT(rank) FROM table_name_4 WHERE nation = "china" AND bronze > 0
What is the population (2010 census) if the area is 66.11?
CREATE TABLE table_184334_2 (population__2010_census_ INTEGER, area___has__ VARCHAR)
SELECT MIN(population__2010_census_) FROM table_184334_2 WHERE area___has__ = "66.11"
What is the average 2006 metropolitan population of Lima with a GDP per capita over $13,100?
CREATE TABLE table_name_38 (metropolitan_population__2006__millions INTEGER, metropolitan_area VARCHAR, gdp__ppp__us$_per_capita VARCHAR)
SELECT AVG(metropolitan_population__2006__millions) FROM table_name_38 WHERE metropolitan_area = "lima" AND gdp__ppp__us$_per_capita > 13 OFFSET 100
When were the members tenured in the Field school?
CREATE TABLE table_28051859_3 (tenure VARCHAR, school VARCHAR)
SELECT tenure FROM table_28051859_3 WHERE school = "Field"
What was the loss when the score was 7-1?
CREATE TABLE table_name_26 (loss VARCHAR, score VARCHAR)
SELECT loss FROM table_name_26 WHERE score = "7-1"
What date did the 90-94 year old have a tie of 1:25.91 at the LC pool?
CREATE TABLE table_name_25 (date VARCHAR, time VARCHAR, age_group VARCHAR, pool VARCHAR)
SELECT date FROM table_name_25 WHERE age_group = "90-94" AND pool = "lc" AND time = "1:25.91"
What school is in Brookville?
CREATE TABLE table_name_34 (school VARCHAR, city VARCHAR)
SELECT school FROM table_name_34 WHERE city = "brookville"
Find the distinct names of all races held between 2014 and 2017?
CREATE TABLE races (name VARCHAR, YEAR INTEGER)
SELECT DISTINCT name FROM races WHERE YEAR BETWEEN 2014 AND 2017