answer stringlengths 6 3.91k | question stringlengths 7 766 | context stringlengths 27 7.14k |
|---|---|---|
SELECT home_team FROM table_name_90 WHERE away_team = "collingwood" | Who was the home team that played against Collingwood? | CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR) |
SELECT spacecraft FROM table_179174_2 WHERE flights = "22 Orbital" | What spacecrafts had 22 orbital flights? | CREATE TABLE table_179174_2 (spacecraft VARCHAR, flights VARCHAR) |
SELECT "Event" FROM table_31597 WHERE "Acts" = '6 bands' | Tell me the event for 6 bands | CREATE TABLE table_31597 (
"Year" real,
"Date" text,
"Event" text,
"Days" text,
"Stages" text,
"Acts" text
) |
SELECT AVG(crowd) FROM table_name_2 WHERE home_team = "richmond" | What is the average crowd size for Richmond home games? | CREATE TABLE table_name_2 (crowd INTEGER, home_team VARCHAR) |
SELECT launcher FROM table_179174_2 WHERE flights = "37 Orbital" | What launcher had spacecrafts that did 37 orbital flights? | CREATE TABLE table_179174_2 (launcher VARCHAR, flights VARCHAR) |
SELECT "Location Attendance" FROM table_31455 WHERE "Team" = 'Los Angeles' | What was the location and it's corresponding attendance during the game against Los Angeles? | CREATE TABLE table_31455 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
) |
SELECT MAX(crowd) FROM table_name_48 WHERE home_team = "north melbourne" | What is the largest crowd for North Melbourne home games? | CREATE TABLE table_name_48 (crowd INTEGER, home_team VARCHAR) |
SELECT years FROM table_179174_2 WHERE flights = "134 Orbital" | What years had 134 orbital flights? | CREATE TABLE table_179174_2 (years VARCHAR, flights VARCHAR) |
SELECT bleeding_time FROM table_1555308_1 WHERE prothrombin_time = "Unaffected" AND platelet_count = "Unaffected" | What are all the possible bleeding time results where prothrombin time and platelet count are both unaffected? | CREATE TABLE table_1555308_1 (
bleeding_time VARCHAR,
prothrombin_time VARCHAR,
platelet_count VARCHAR
) |
SELECT venue FROM table_name_62 WHERE home_team = "melbourne" | In which venue does Melbourne play as the home team? | CREATE TABLE table_name_62 (venue VARCHAR, home_team VARCHAR) |
SELECT status_at_production FROM table_1792122_11 WHERE project = "London Aquatics Centre" | What is the status of the London Aquatics Centre project at the time of production? | CREATE TABLE table_1792122_11 (status_at_production VARCHAR, project VARCHAR) |
SELECT year FROM table_12032893_1 WHERE weight = 170 | In which year was the Weight 170? | CREATE TABLE table_12032893_1 (
year VARCHAR,
weight VARCHAR
) |
SELECT grid FROM table_name_85 WHERE driver = "johnny dumfries" | Which Grid has a Driver of johnny dumfries? | CREATE TABLE table_name_85 (grid VARCHAR, driver VARCHAR) |
SELECT original_air_date FROM table_1792122_11 WHERE no_in_series = 71 | What was the original are date of series number 71? | CREATE TABLE table_1792122_11 (original_air_date VARCHAR, no_in_series VARCHAR) |
SELECT "Written by" FROM table_29660 WHERE "Prod. code" = '211' | Who wrote the episode with the production code 211? | CREATE TABLE table_29660 (
"Series #" real,
"Season #" real,
"Title" text,
"Directed by" text,
"Written by" text,
"Original air date" text,
"Prod. code" real,
"U.S. viewers (millions)" text
) |
SELECT score FROM table_name_24 WHERE date = "22 september 1972" | What is the score on 22 September 1972? | CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR) |
SELECT length FROM table_17918238_1 WHERE maximum_diameter = "450 mm" | What is the length for a diameter totaling 450 mm? | CREATE TABLE table_17918238_1 (length VARCHAR, maximum_diameter VARCHAR) |
SELECT "township" FROM table_203_459 ORDER BY "population" LIMIT 1 | which township has the least in population ? | CREATE TABLE table_203_459 (
id number,
"township" text,
"fips" number,
"population\ncenter" text,
"population" number,
"population\ndensity\n/km2 (/sq mi)" text,
"land area\nkm2 (sq mi)" text,
"water area\nkm2 (sq mi)" text,
"water %" text,
"geographic coordinates" text
) |
SELECT venue FROM table_name_57 WHERE date = "3 september 1972" | What is the venue on 3 September 1972? | CREATE TABLE table_name_57 (venue VARCHAR, date VARCHAR) |
SELECT maximum_diameter FROM table_17918238_1 WHERE owner_operator = "Esperance Pipeline Co" | What is Esperance pipeline co total diameter? | CREATE TABLE table_17918238_1 (maximum_diameter VARCHAR, owner_operator VARCHAR) |
SELECT score FROM table_name_86 WHERE record = "55-39" | What was the score of the game when the Blue Jays were 55-39? | CREATE TABLE table_name_86 (
score VARCHAR,
record VARCHAR
) |
SELECT series FROM table_name_2 WHERE date = "april 30" | Name the series for april 30 | CREATE TABLE table_name_2 (series VARCHAR, date VARCHAR) |
SELECT opponent FROM table_17924362_1 WHERE date = "December 8" | Name the opponent for december 8 | CREATE TABLE table_17924362_1 (opponent VARCHAR, date VARCHAR) |
SELECT "Location" FROM table_61353 WHERE "Round" = '3' AND "Event" = 'fightfest 2' | What is the location of fightfest 2, which has 3 rounds? | CREATE TABLE table_61353 (
"Res." text,
"Record" text,
"Opponent" text,
"Method" text,
"Event" text,
"Round" real,
"Time" text,
"Location" text
) |
SELECT MAX(game) FROM table_name_35 WHERE high_assists = "west (8)" | Name the highest game for west (8) high assists | CREATE TABLE table_name_35 (game INTEGER, high_assists VARCHAR) |
SELECT COUNT(week) FROM table_17924362_1 WHERE date = "October 26" | Name the number of weeks for october 26 | CREATE TABLE table_17924362_1 (week VARCHAR, date VARCHAR) |
SELECT prescriptions.formulary_drug_cd FROM prescriptions WHERE prescriptions.drug = "Simethicone" | what is drug code of drug name simethicone? | CREATE TABLE lab (
subject_id text,
hadm_id text,
itemid text,
charttime text,
flag text,
value_unit text,
label text,
fluid text
)
CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE prescription... |
SELECT MIN(year) FROM table_name_11 WHERE date = "14 february" | Which Year has a Date of 14 February? | CREATE TABLE table_name_11 (year INTEGER, date VARCHAR) |
SELECT COUNT(attendance) FROM table_17928023_1 WHERE week = 6 | What is the attendance record for week 6? | CREATE TABLE table_17928023_1 (attendance VARCHAR, week VARCHAR) |
SELECT receipt_date, COUNT(receipt_date) FROM Documents ORDER BY COUNT(receipt_date) DESC | List the number of documents for each receipt date and bin by weekday in a bar chart, sort y axis from high to low order. | CREATE TABLE Ref_Document_Status (
document_status_code CHAR(15),
document_status_description VARCHAR(255)
)
CREATE TABLE Documents (
document_id INTEGER,
document_status_code CHAR(15),
document_type_code CHAR(15),
shipping_agent_code CHAR(15),
receipt_date DATETIME,
receipt_number VARC... |
SELECT label FROM table_name_48 WHERE date = "20 july" | Which Label has a Date of 20 July? | CREATE TABLE table_name_48 (label VARCHAR, date VARCHAR) |
SELECT result FROM table_17928023_1 WHERE game_site = "Schaefer Stadium" | For game site Schaefer Stadium, what were the results? | CREATE TABLE table_17928023_1 (result VARCHAR, game_site VARCHAR) |
SELECT "Nationality\u00b2" FROM table_26950 WHERE "Position" = 'Defender' AND "Appearances\u00b9" = '201' | Name the nationality for defender 201 | CREATE TABLE table_26950 (
"Name" text,
"Position" text,
"Period" text,
"Appearances\u00b9" real,
"Goals\u00b9" real,
"Nationality\u00b2" text
) |
SELECT label FROM table_name_56 WHERE date = "14 february" | Which Label has a Date of 14 February? | CREATE TABLE table_name_56 (label VARCHAR, date VARCHAR) |
SELECT outgoing_manage FROM table_17933600_2 WHERE incoming_manager = "João Pereira" | Who was the outgoing manager when the incoming manager was joão pereira? | CREATE TABLE table_17933600_2 (outgoing_manage VARCHAR, incoming_manager VARCHAR) |
SELECT ACC_Regular_Season, All_Games_Percent FROM basketball_match ORDER BY ACC_Regular_Season DESC | Create a bar chart showing all_games_percent across acc regular season, rank X-axis in desc order. | CREATE TABLE basketball_match (
Team_ID int,
School_ID int,
Team_Name text,
ACC_Regular_Season text,
ACC_Percent text,
ACC_Home text,
ACC_Road text,
All_Games text,
All_Games_Percent int,
All_Home text,
All_Road text,
All_Neutral text
)
CREATE TABLE university (
Scho... |
SELECT choreographer_s_ FROM table_name_94 WHERE style = "smooth waltz" AND partner = "lacey schwimmer" | Who choreographed the smooth waltz with lacey schwimmer? | CREATE TABLE table_name_94 (choreographer_s_ VARCHAR, style VARCHAR, partner VARCHAR) |
SELECT team FROM table_17933600_2 WHERE outgoing_manage = "João Alves" | What team(s) had an outgoing manager of joão alves? | CREATE TABLE table_17933600_2 (team VARCHAR, outgoing_manage VARCHAR) |
SELECT "Championship" FROM table_32470 WHERE "Margin" = '10 strokes' | Which championship had a margin of 10 strokes? | CREATE TABLE table_32470 (
"Year" real,
"Championship" text,
"Winning score" text,
"Margin" text,
"Runner(s)-up" text
) |
SELECT partner FROM table_name_40 WHERE style = "jazz" AND results = "bottom three" | Who was the partner for the jazz piece in the bottom three? | CREATE TABLE table_name_40 (partner VARCHAR, style VARCHAR, results VARCHAR) |
SELECT date_of_vacancy FROM table_17933600_2 WHERE outgoing_manage = "Bogićević" | What day did the job open up when bogićević was outgoing? | CREATE TABLE table_17933600_2 (date_of_vacancy VARCHAR, outgoing_manage VARCHAR) |
SELECT HIRE_DATE, DEPARTMENT_ID FROM employees WHERE HIRE_DATE < '2002-06-21' | For those employees who was hired before 2002-06-21, return a line chart about the change of department_id over hire_date . | CREATE TABLE employees (
EMPLOYEE_ID decimal(6,0),
FIRST_NAME varchar(20),
LAST_NAME varchar(25),
EMAIL varchar(25),
PHONE_NUMBER varchar(20),
HIRE_DATE date,
JOB_ID varchar(10),
SALARY decimal(8,2),
COMMISSION_PCT decimal(2,2),
MANAGER_ID decimal(6,0),
DEPARTMENT_ID decimal(... |
SELECT home_team AS score FROM table_name_98 WHERE venue = "vfl park" | For Venue vfl park, what was the home team score? | CREATE TABLE table_name_98 (home_team VARCHAR, venue VARCHAR) |
SELECT 0 AS _100km_h, s FROM table_17941111_2 WHERE name = "2.0 8v" | Name the 0-100 km/hs for name of 2.0 8v | CREATE TABLE table_17941111_2 (s VARCHAR, name VARCHAR) |
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, airport_service AS AIRPORT_SERVICE_2, city AS CITY_0, city AS CITY_1, city AS CITY_2, flight, flight_stop WHERE (CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'SAN FRANCISCO' AND CIT... | find me a flight from BOSTON to SAN FRANCISCO with a layover in DENVER | CREATE TABLE fare_basis (
fare_basis_code text,
booking_class text,
class_type text,
premium text,
economy text,
discounted text,
night text,
season text,
basis_days text
)
CREATE TABLE flight (
aircraft_code_sequence text,
airline_code varchar,
airline_flight text,
... |
SELECT date FROM table_name_37 WHERE venue = "vfl park" | On which date was the venue of vfl park used? | CREATE TABLE table_name_37 (date VARCHAR, venue VARCHAR) |
SELECT volume FROM table_17941111_2 WHERE co_2 = "168 g/km" | Name the volume for co 2 for 168 g/km | CREATE TABLE table_17941111_2 (volume VARCHAR, co_2 VARCHAR) |
SELECT * FROM item | List all information in the item table. | CREATE TABLE trust (
source_u_id number,
target_u_id number,
trust number
)
CREATE TABLE useracct (
u_id number,
name text
)
CREATE TABLE review (
a_id number,
u_id number,
i_id number,
rating number,
rank number
)
CREATE TABLE item (
i_id number,
title text
) |
SELECT AVG(crowd) FROM table_name_17 WHERE away_team = "north melbourne" | What was the Average crowd when the away team was north melbourne? | CREATE TABLE table_name_17 (crowd INTEGER, away_team VARCHAR) |
SELECT tries_for FROM table_17941032_1 WHERE tries_against = "60" | When 60 is the tries against what is the tries for? | CREATE TABLE table_17941032_1 (tries_for VARCHAR, tries_against VARCHAR) |
SELECT production_code FROM table_16581695_4 WHERE no_in_season = "15" | What is the production code for episode 15 in season 3? | CREATE TABLE table_16581695_4 (
production_code VARCHAR,
no_in_season VARCHAR
) |
SELECT max_torque_at_rpm FROM table_name_7 WHERE engine_code_s_ = "bjb/bkc/bxe/bls" | What is the maximum torque at rpm for the engine coded BJB/BKC/BXE/BLS? | CREATE TABLE table_name_7 (max_torque_at_rpm VARCHAR, engine_code_s_ VARCHAR) |
SELECT lost FROM table_17941032_1 WHERE tries_for = "22" | When 22 is the tries for what is the lost? | CREATE TABLE table_17941032_1 (lost VARCHAR, tries_for VARCHAR) |
SELECT "Film title used in nomination" FROM table_61405 WHERE "Original title" = 'cilvēka bērns' | What is the Film title used in nomination of Cilv ka B rns? | CREATE TABLE table_61405 (
"Year (Ceremony)" text,
"Film title used in nomination" text,
"Original title" text,
"Director" text,
"Result" text
) |
SELECT max_power_at_rpm FROM table_name_90 WHERE displacement = "1968cc" AND engine_name = "2.0 tdi" | What is the maximum power at rpm for the engine named 2.0 TDI that has a 1968cc displacement? | CREATE TABLE table_name_90 (max_power_at_rpm VARCHAR, displacement VARCHAR, engine_name VARCHAR) |
SELECT club FROM table_17941032_1 WHERE points = "98" | When 98 is the points what is the club? | CREATE TABLE table_17941032_1 (club VARCHAR, points VARCHAR) |
SELECT date FROM table_name_18 WHERE week < 9 AND opponent = "dallas cowboys" | What is the date for a week before 9, and a opponent of dallas cowboys? | CREATE TABLE table_name_18 (
date VARCHAR,
week VARCHAR,
opponent VARCHAR
) |
SELECT max_torque_at_rpm FROM table_name_90 WHERE engine_code_s_ = "bmm" | What is the maximum torque at rpm for the engine with code BMM? | CREATE TABLE table_name_90 (max_torque_at_rpm VARCHAR, engine_code_s_ VARCHAR) |
SELECT try_bonus FROM table_17941032_1 WHERE tries_for = "80" | When 80 is the tries for what is the try bonus? | CREATE TABLE table_17941032_1 (try_bonus VARCHAR, tries_for VARCHAR) |
SELECT d_items.label FROM d_items WHERE d_items.itemid IN (SELECT outputevents.itemid FROM outputevents WHERE outputevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 99883) AND icustays.outtime IS NULL) ORDER... | what was the first thing patient 99883 had as output on the current intensive care unit visit? | CREATE TABLE diagnoses_icd (
row_id number,
subject_id number,
hadm_id number,
icd9_code text,
charttime time
)
CREATE TABLE cost (
row_id number,
subject_id number,
hadm_id number,
event_type text,
event_id number,
chargetime time,
cost number
)
CREATE TABLE labevents ... |
SELECT max_torque_at_rpm FROM table_name_31 WHERE engine_code_s_ = "bmm" | What is the maximum torque at rpm for the engine with code BMM? | CREATE TABLE table_name_31 (max_torque_at_rpm VARCHAR, engine_code_s_ VARCHAR) |
SELECT lost FROM table_17941032_1 WHERE tries_for = "55" | When 55 is the tries for what is the lost? | CREATE TABLE table_17941032_1 (lost VARCHAR, tries_for VARCHAR) |
SELECT MAX("Stories") FROM table_45206 WHERE "Location" = 'recife' AND "Year of completion" > '2007' AND "Height (m)" < '135' | What is the largest number of stories in Recife completed later than 2007 with a height less than 135 meters? | CREATE TABLE table_45206 (
"Name" text,
"Location" text,
"Height (m)" real,
"Stories" real,
"Year of completion" real
) |
SELECT engine_name FROM table_name_42 WHERE max_torque_at_rpm = "n·m ( lbf·ft ) @ 3,800" | What is the engine name that has a maximum torque at rpm of n·m ( lbf·ft ) @ 3,800? | CREATE TABLE table_name_42 (engine_name VARCHAR, max_torque_at_rpm VARCHAR) |
SELECT points_against FROM table_17941032_1 WHERE tries_for = "17" | When 17 is the tries for what is the points against? | CREATE TABLE table_17941032_1 (points_against VARCHAR, tries_for VARCHAR) |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.marital_status = "SINGLE" AND diagnoses.icd9_code = "496" | how many unmarried patients have diagnoses icd9 code 496? | CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob text,
gender text,
language text,
religion text,
admission_type text,
days_stay text,
insurance text,
ethnicity text,
expire_flag text,
admission_location t... |
SELECT result FROM table_name_37 WHERE work = "t.u.f.f. puppy" | What was the result of t.u.f.f. puppy? | CREATE TABLE table_name_37 (result VARCHAR, work VARCHAR) |
SELECT drawn FROM table_17941032_2 WHERE "played" = "played" | How many draws were there in played games? | CREATE TABLE table_17941032_2 (drawn VARCHAR) |
SELECT COUNT("City Area(km 2 )") FROM table_64008 WHERE "Headquartered City" = 'vehari city' AND "Serial No." > '36' | What was the total city area for vehari city with a serial number bigger than 36? | CREATE TABLE table_64008 (
"Serial No." real,
"District" text,
"Headquartered City" text,
"City Population (2009)" real,
"City Area(km 2 )" real
) |
SELECT score FROM table_name_1 WHERE competition = "2010 world cup qualifying" | what is the score for the 2010 world cup qualifying? | CREATE TABLE table_name_1 (score VARCHAR, competition VARCHAR) |
SELECT club FROM table_17941032_2 WHERE drawn = "1" AND won = "2" | Which club had 2 wins and 1 draw? | CREATE TABLE table_17941032_2 (club VARCHAR, drawn VARCHAR, won VARCHAR) |
SELECT AVG(goal_difference) FROM table_name_2 WHERE draw = 7 AND played > 18 | Name the average goal difference for draw of 7 and played more than 18 | CREATE TABLE table_name_2 (
goal_difference INTEGER,
draw VARCHAR,
played VARCHAR
) |
SELECT home FROM table_name_16 WHERE date = "november 7" | Which home has a Date of november 7? | CREATE TABLE table_name_16 (home VARCHAR, date VARCHAR) |
SELECT played FROM table_17941032_2 WHERE tries_for = "56" | How many times were there plays with a try of 56? | CREATE TABLE table_17941032_2 (played VARCHAR, tries_for VARCHAR) |
SELECT COUNT(*), artist FROM torrents GROUP BY artist | how many unique entries are by the same Artist/group? | CREATE TABLE torrents (
groupname text,
totalsnatched number,
artist text,
groupyear number,
releasetype text,
groupid number,
id number
)
CREATE TABLE tags (
index number,
id number,
tag text
) |
SELECT MIN(attendance) FROM table_name_94 WHERE date = "november 18" | What is the lowest attendance on November 18? | CREATE TABLE table_name_94 (attendance INTEGER, date VARCHAR) |
SELECT tries_against FROM table_17941032_2 WHERE points_for = "150" | How many tries against were there with points of 150? | CREATE TABLE table_17941032_2 (tries_against VARCHAR, points_for VARCHAR) |
SELECT COUNT("Winner") FROM table_21940 WHERE "Runner-up" = 'Regina' | How many won the prize when Regina was the runner-up? | CREATE TABLE table_21940 (
"Season" text,
"The Mole" text,
"Winner" text,
"Runner-up" text,
"International destination" text
) |
SELECT date FROM table_name_28 WHERE decision = "dipietro" AND visitor = "carolina" | What is the date of the game where Dipietro earned a decision and Carolina was the visiting team? | CREATE TABLE table_name_28 (date VARCHAR, decision VARCHAR, visitor VARCHAR) |
SELECT losing_bonus FROM table_17941032_2 WHERE points = "53" | What was the losing bonus that had 53 points? | CREATE TABLE table_17941032_2 (losing_bonus VARCHAR, points VARCHAR) |
SELECT "Location" FROM table_64094 WHERE "IHSAA Class" = 'aaa' AND "Enrollment" > '590' | Where is the IHSAA Class of aaa school with more than 590 enrolled? | CREATE TABLE table_64094 (
"School" text,
"Location" text,
"Mascot" text,
"Enrollment" real,
"IHSAA Class" text,
"IHSAA Football Class" text,
"County" text
) |
SELECT visitor FROM table_name_50 WHERE decision = "dipietro" AND date = "october 27" | Who is the visiting team when Dipietro received a decision on October 27? | CREATE TABLE table_name_50 (visitor VARCHAR, decision VARCHAR, date VARCHAR) |
SELECT points_against FROM table_17941032_2 WHERE try_bonus = "0" AND points_for = "150" | List all points against with a 0 try bonus and points for of 150. | CREATE TABLE table_17941032_2 (points_against VARCHAR, try_bonus VARCHAR, points_for VARCHAR) |
SELECT MIN(appearances¹) FROM table_24565004_22 WHERE name = "Pierre Vermeulen" | at least how many times was Pierre Vermeulen at a game? | CREATE TABLE table_24565004_22 (
appearances¹ INTEGER,
name VARCHAR
) |
SELECT record FROM table_name_57 WHERE home = "washington" | What was the record when the home team is Washington? | CREATE TABLE table_name_57 (record VARCHAR, home VARCHAR) |
SELECT tries_against FROM table_17941032_3 WHERE tries_for = "30" | Name the tries against when tries for is 30 | CREATE TABLE table_17941032_3 (tries_against VARCHAR, tries_for VARCHAR) |
SELECT "Winner" FROM table_30853 WHERE "Runners-up" = 'Brendan Lynch' | Who won the season for which Brendan Lynch is the runner-up? | CREATE TABLE table_30853 (
"Series" real,
"Premiere" text,
"Finale" text,
"Runners-up" text,
"Winner" text
) |
SELECT score FROM table_name_57 WHERE home = "ny islanders" AND date = "october 20" | What was the score of the game on October 20 when the home team is the NY Islanders? | CREATE TABLE table_name_57 (score VARCHAR, home VARCHAR, date VARCHAR) |
SELECT points FROM table_17941032_3 WHERE tries_for = "49" | Name the points when tries for is 49 | CREATE TABLE table_17941032_3 (points VARCHAR, tries_for VARCHAR) |
SELECT total_seats FROM table_19304764_2 WHERE discipline = "Otorhinolaryngology" | Name the total seats for otorhinolaryngology | CREATE TABLE table_19304764_2 (
total_seats VARCHAR,
discipline VARCHAR
) |
SELECT theme FROM table_name_73 WHERE mintage = 700 | In the Endangered Wildlife Series from the Royal Canadian Mint numismatic coins printed in the 2000s, what theme had a mintage of 700? | CREATE TABLE table_name_73 (theme VARCHAR, mintage VARCHAR) |
SELECT try_bonus FROM table_17941032_3 WHERE lost = "11" AND losing_bonus = "6" | Name the try bonus for lost being 11 and losing bonus is 6 | CREATE TABLE table_17941032_3 (try_bonus VARCHAR, lost VARCHAR, losing_bonus VARCHAR) |
SELECT 1994 FROM table_name_14 WHERE tournament = "miami" | What is the 1994 finish for the Miami tournament? | CREATE TABLE table_name_14 (
tournament VARCHAR
) |
SELECT MAX(year) FROM table_name_10 WHERE issue_price = "$2,995.95" AND theme = "grizzly bear" | What year had an issue price of $2,995.95, and a theme of grizzly bear? | CREATE TABLE table_name_10 (year INTEGER, issue_price VARCHAR, theme VARCHAR) |
SELECT 1 AS st_leg FROM table_17968229_1 WHERE home__2nd_leg_ = "River Plate" | For home of River Plate, what is the first leg listed? | CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR) |
SELECT "ERP W" FROM table_38629 WHERE "City of license" = 'charleston, sc' | What is Charleston, SC ERP W? | CREATE TABLE table_38629 (
"Call sign" text,
"Frequency MHz" text,
"City of license" text,
"ERP W" real,
"Class" text,
"FCC info" text
) |
SELECT MIN(total) FROM table_name_26 WHERE silver > 0 AND nation = "italy" AND gold < 29 | Tell me the total for silver more than 0 for italy with gold less than 29 | CREATE TABLE table_name_26 (total INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR) |
SELECT home__2nd_leg_ FROM table_17968229_1 WHERE aggregate = "0-2" | With an aggregate of 0-2, what is listed for home? | CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR, aggregate VARCHAR) |
SELECT "Result" FROM table_38528 WHERE "Year" = '1994' AND "Tournament" = 'hypo-meeting' | What the result for the hypo-meeting tournament in 1994? | CREATE TABLE table_38528 (
"Year" real,
"Tournament" text,
"Venue" text,
"Result" text,
"Event" text
) |
SELECT AVG(bronze) FROM table_name_96 WHERE total < 4 AND silver > 0 | Tell me the average bronze for total less than 4 and silver more than 0 | CREATE TABLE table_name_96 (bronze INTEGER, total VARCHAR, silver VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.