instruction stringlengths 151 7.46k | output stringlengths 2 4.44k | source stringclasses 26
values |
|---|---|---|
CREATE TABLE movie (
mid number,
title text,
year number,
director text
)
CREATE TABLE reviewer (
rid number,
name text
)
CREATE TABLE rating (
rid number,
mid number,
stars number,
ratingdate time
)
-- Using valid SQLite, answer the following questions for the tables provide... | SELECT rid FROM rating EXCEPT SELECT rid FROM rating WHERE stars = 4 | spider |
CREATE TABLE table_30918 (
"No. overall" real,
"No. for series" real,
"Title" text,
"Directed by" text,
"Written by" text,
"Original air date" text,
"UK viewers (million)" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Who directed the episo... | SELECT "Directed by" FROM table_30918 WHERE "UK viewers (million)" = '5.77' | wikisql |
CREATE TABLE table_17941111_2 (
s VARCHAR,
name VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Name the 0-100 km/hs for name of 2.0 8v
| SELECT 0 AS _100km_h, s FROM table_17941111_2 WHERE name = "2.0 8v" | sql_create_context |
CREATE TABLE table_27971 (
"Stage" real,
"Winner" text,
"General classification" text,
"Sprint Classification" text,
"Mountains Classification" text,
"Points Classification" text,
"Team Classification" text
)
-- Using valid SQLite, answer the following questions for the tables provided abo... | SELECT MAX("Stage") FROM table_27971 | wikisql |
CREATE TABLE table_36904 (
"Name" text,
"GP-GS" text,
"Gain" real,
"Loss" real,
"Long" real,
"Avg/G" real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the sum of Long for derrick locke?
| SELECT SUM("Long") FROM table_36904 WHERE "Name" = 'derrick locke' | wikisql |
CREATE TABLE table_67070 (
"Date" text,
"Opponent" text,
"Score" text,
"Loss" text,
"Attendance" real,
"Record" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What was the loss of the game against the Indians when the record was 15-15?
| SELECT "Loss" FROM table_67070 WHERE "Opponent" = 'indians' AND "Record" = '15-15' | wikisql |
CREATE TABLE table_11352 (
"Driver" text,
"Constructor" text,
"Laps" real,
"Time/Retired" text,
"Grid" real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Who built the car that has a Time/Retired of 1:34:12.912?
| SELECT "Constructor" FROM table_11352 WHERE "Time/Retired" = '1:34:12.912' | wikisql |
CREATE TABLE table_name_25 (
producer_s_ VARCHAR,
length VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Who produced the track that is 4:16 long?
| SELECT producer_s_ FROM table_name_25 WHERE length = "4:16" | sql_create_context |
CREATE TABLE t_kc21_t_kc24 (
MED_CLINIC_ID text,
MED_SAFE_PAY_ID number
)
CREATE TABLE t_kc24 (
ACCOUNT_DASH_DATE time,
ACCOUNT_DASH_FLG number,
CASH_PAY number,
CIVIL_SUBSIDY number,
CKC102 number,
CLINIC_ID text,
CLINIC_SLT_DATE time,
COMP_ID text,
COM_ACC_PAY number,
... | SELECT t_kc21.IN_DIAG_DIS_CD, t_kc21.IN_DIAG_DIS_NM FROM t_kc21 WHERE t_kc21.PERSON_NM = '范璇子' | css |
CREATE TABLE person_info (
RYBH text,
XBDM number,
XBMC text,
XM text,
CSRQ time,
CSD text,
MZDM text,
MZMC text,
GJDM text,
GJMC text,
JGDM text,
JGMC text,
XLDM text,
XLMC text,
ZYLBDM text,
ZYMC text
)
CREATE TABLE zyjzjlb (
YLJGDM text,
JZLSH ... | SELECT person_info.JGDM, person_info.JGMC, COUNT(person_info.RYBH) FROM person_info JOIN hz_info JOIN mzjzjlb ON person_info.RYBH = hz_info.RYBH AND hz_info.YLJGDM = mzjzjlb.YLJGDM AND hz_info.KH = mzjzjlb.KH AND hz_info.KLX = mzjzjlb.KLX WHERE mzjzjlb.JZZDBM = 'N08.618' GROUP BY person_info.JGDM | css |
CREATE TABLE table_716 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" real,
"Result" text,
"Candidates" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What was the result of the election featuring ike skelton?
| SELECT "Result" FROM table_716 WHERE "Incumbent" = 'Ike Skelton' | wikisql |
CREATE TABLE table_16083989_1 (
voges_proskauer VARCHAR,
citrate VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What are the results for testing the species with voges-proskauer when citrate yields a positive result?
| SELECT voges_proskauer FROM table_16083989_1 WHERE citrate = "Positive" | sql_create_context |
CREATE TABLE vitalperiodic (
vitalperiodicid number,
patientunitstayid number,
temperature number,
sao2 number,
heartrate number,
respiration number,
systemicsystolic number,
systemicdiastolic number,
systemicmean number,
observationtime time
)
CREATE TABLE lab (
labid numbe... | SELECT t3.diagnosisname FROM (SELECT t2.diagnosisname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, diagnosis.diagnosistime, patient.patienthealthsystemstayid FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'motor... | eicu |
CREATE TABLE table_train_273 (
"id" int,
"systolic_blood_pressure_sbp" int,
"hemoglobin_a1c_hba1c" float,
"body_weight" float,
"hba1c" float,
"insulin_requirement" float,
"body_mass_index_bmi" float,
"NOUSE" float
)
-- Using valid SQLite, answer the following questions for the tables p... | SELECT * FROM table_train_273 WHERE hba1c >= 7 AND hemoglobin_a1c_hba1c <= 10 | criteria2sql |
CREATE TABLE CloseReasonTypes (
Id number,
Name text,
Description text
)
CREATE TABLE Badges (
Id number,
UserId number,
Name text,
Date time,
Class number,
TagBased boolean
)
CREATE TABLE ReviewTaskTypes (
Id number,
Name text,
Description text
)
CREATE TABLE Suggeste... | SELECT p.* FROM Posts AS p WHERE p.Id = 1252512 | sede |
CREATE TABLE table_name_92 (
election VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which 1st Party has an election in 1865?
| SELECT 1 AS st_party FROM table_name_92 WHERE election = "1865" | sql_create_context |
CREATE TABLE food_service (
meal_code text,
meal_number int,
compartment text,
meal_description varchar
)
CREATE TABLE date_day (
month_number int,
day_number int,
year int,
day_name varchar
)
CREATE TABLE flight_fare (
flight_id int,
fare_id int
)
CREATE TABLE dual_carrier (
... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE ((CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'SAN FRANCISCO' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CI... | atis |
CREATE TABLE table_42094 (
"Office" text,
"Democratic ticket" text,
"Republican ticket" text,
"American Labor ticket" text,
"Socialist ticket" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which American Labor candidate ran against Republican Thoma... | SELECT "American Labor ticket" FROM table_42094 WHERE "Republican ticket" = 'thomas e. dewey' | wikisql |
CREATE TABLE table_24473 (
"Stage" real,
"Winner" text,
"General classification" text,
"Points classification" text,
"Mountains classification" text,
"Asian rider classification" text,
"Team classification" text,
"Asian team classification" text
)
-- Using valid SQLite, answer the foll... | SELECT "General classification" FROM table_24473 WHERE "Stage" = '4' | wikisql |
CREATE TABLE t_kc21_t_kc24 (
MED_CLINIC_ID text,
MED_SAFE_PAY_ID number
)
CREATE TABLE t_kc24 (
ACCOUNT_DASH_DATE time,
ACCOUNT_DASH_FLG number,
CASH_PAY number,
CIVIL_SUBSIDY number,
CKC102 number,
CLINIC_ID text,
CLINIC_SLT_DATE time,
COMP_ID text,
COM_ACC_PAY number,
... | SELECT COUNT(*) FROM t_kc21 JOIN t_kc22 ON t_kc21.MED_CLINIC_ID = t_kc22.MED_CLINIC_ID WHERE t_kc21.MED_SER_ORG_NO = '4874710' AND t_kc22.SOC_SRT_DIRE_CD = '563098' | css |
CREATE TABLE table_51964 (
"State" text,
"Norwegian Americans (2000)" real,
"Percent (2000)" text,
"Norwegian Americans (2009)" real,
"Percent (2009)" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- How many Norwegian Americans have Norwegian America... | SELECT COUNT("Norwegian Americans (2009)") FROM table_51964 WHERE "Norwegian Americans (2000)" = '109,744' | wikisql |
CREATE TABLE table_75962 (
"Tournament" text,
"2005" text,
"2006" text,
"2007" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text,
"2012" text,
"2013" text,
"Win %" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What in... | SELECT "2007" FROM table_75962 WHERE "2008" = 'sf' AND "2010" = 'f' | wikisql |
CREATE TABLE table_name_31 (
scorers VARCHAR,
opponent VARCHAR,
date VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What shows for Scorers when the Opponent was west germany on October 7?
| SELECT scorers FROM table_name_31 WHERE opponent = "west germany" AND date = "october 7" | sql_create_context |
CREATE TABLE table_4400 (
"Model" text,
"Sensor resolution, size , type" text,
"Lens (35mm equiv) zoom, aperture" text,
"Digital Zoom" text,
"LCD screen size, pixels" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the lens zoom and aperture ... | SELECT "Lens (35mm equiv) zoom, aperture" FROM table_4400 WHERE "Model" = 'coolpix 5400' | wikisql |
CREATE TABLE table_61554 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text,
"Money ( $ )" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the country of the player with playoff money and a score of 66-67-70-67=270... | SELECT "Country" FROM table_61554 WHERE "Money ( $ )" = 'playoff' AND "Score" = '66-67-70-67=270' | wikisql |
CREATE TABLE microlab (
microlabid number,
patientunitstayid number,
culturesite text,
organism text,
culturetakentime time
)
CREATE TABLE medication (
medicationid number,
patientunitstayid number,
drugname text,
dosage text,
routeadmin text,
drugstarttime time,
drugsto... | SELECT MAX(t1.c1) FROM (SELECT SUM(cost.cost) AS c1 FROM cost WHERE cost.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.patientunitstayid IN (SELECT lab.patientunitstayid FROM lab WHERE lab.labname = 'transferrin')) AND STRFTIME('%y', cost.chargetime) = '2103' GROUP BY... | eicu |
CREATE TABLE table_name_78 (
average_cards_a_game INTEGER,
season VARCHAR,
games VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which Average Cards a game has a Season of 1997/1998, and a Games larger than 38?
| SELECT MAX(average_cards_a_game) FROM table_name_78 WHERE season = "1997/1998" AND games > 38 | sql_create_context |
CREATE TABLE table_name_43 (
week INTEGER,
opponent VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Opponent of at san francisco 49ers had what lowest week?
| SELECT MIN(week) FROM table_name_43 WHERE opponent = "at san francisco 49ers" | sql_create_context |
CREATE TABLE table_20196 (
"Player" text,
"No." real,
"Nationality" text,
"Position" text,
"Years in Orlando" text,
"School/Club Team" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Name the school/club team for jawann oldham
| SELECT "School/Club Team" FROM table_20196 WHERE "Player" = 'Jawann Oldham' | wikisql |
CREATE TABLE table_name_58 (
result VARCHAR,
year VARCHAR,
nominated_work VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the result for the king and I after 2006?
| SELECT result FROM table_name_58 WHERE year > 2006 AND nominated_work = "the king and i" | sql_create_context |
CREATE TABLE prescriptions (
subject_id text,
hadm_id text,
icustay_id text,
drug_type text,
drug text,
formulary_drug_cd text,
route text,
drug_dose text
)
CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob te... | SELECT demographic.admission_type, procedures.short_title FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.name = "Dawn Cooper" | mimicsql_data |
CREATE TABLE table_name_20 (
gold VARCHAR,
nation VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Tell me the gold for netherlands
| SELECT gold FROM table_name_20 WHERE nation = "netherlands" | sql_create_context |
CREATE TABLE PostLinks (
Id number,
CreationDate time,
PostId number,
RelatedPostId number,
LinkTypeId number
)
CREATE TABLE PostNotices (
Id number,
PostId number,
PostNoticeTypeId number,
CreationDate time,
DeletionDate time,
ExpiryDate time,
Body text,
OwnerUserId... | SELECT * FROM Votes WHERE CreationDate IS NULL | sede |
CREATE TABLE table_15905399_1 (
active VARCHAR,
iin_ranges VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Is the iin range 4 active?
| SELECT active FROM table_15905399_1 WHERE iin_ranges = "4" | sql_create_context |
CREATE TABLE table_12535 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text,
"Money ( \u00a3 )" real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the country of the player whose score is 71-69-70-69=279?
| SELECT "Country" FROM table_12535 WHERE "Score" = '71-69-70-69=279' | wikisql |
CREATE TABLE gyb (
CLINIC_ID text,
COMP_ID text,
DATA_ID text,
DIFF_PLACE_FLG number,
FERTILITY_STS number,
FLX_MED_ORG_ID text,
HOSP_LEV number,
HOSP_STS number,
IDENTITY_CARD text,
INPT_AREA_BED text,
INSURED_IDENTITY number,
INSURED_STS text,
INSU_TYPE text,
IN... | SELECT qtb.MED_CLINIC_ID FROM qtb WHERE qtb.PERSON_ID = '75810879' AND qtb.MED_SER_ORG_NO = '2045056' AND qtb.OUT_DIAG_DIS_NM LIKE '%皮炎%' UNION SELECT gyb.MED_CLINIC_ID FROM gyb WHERE gyb.PERSON_ID = '75810879' AND gyb.MED_SER_ORG_NO = '2045056' AND gyb.OUT_DIAG_DIS_NM LIKE '%皮炎%' UNION SELECT zyb.MED_CLINIC_ID FROM zy... | css |
CREATE TABLE table_name_57 (
livery VARCHAR,
number VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the Livery when the Number is 31468?
| SELECT livery FROM table_name_57 WHERE number = 31468 | sql_create_context |
CREATE TABLE table_name_50 (
result VARCHAR,
score VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What result had a score of 3 0?
| SELECT result FROM table_name_50 WHERE score = "3–0" | sql_create_context |
CREATE TABLE table_4467 (
"MPEG-1" text,
"MPEG-2" text,
"MPEG-4 ASP ( MPEG-4 Part 2 ), i.e. DivX , XviD" text,
"H.264/MPEG-4 AVC ( MPEG-4 Part 10 )" text,
"QuickTime" text,
"RealVideo" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Tell me the M... | SELECT "RealVideo" FROM table_4467 WHERE "MPEG-2" = 'yes' AND "MPEG-1" = 'yes' | wikisql |
CREATE TABLE Posts (
Id number,
PostTypeId number,
AcceptedAnswerId number,
ParentId number,
CreationDate time,
DeletionDate time,
Score number,
ViewCount number,
Body text,
OwnerUserId number,
OwnerDisplayName text,
LastEditorUserId number,
LastEditorDisplayName text... | SELECT Id AS "post_link", Score, Tags FROM Posts WHERE LENGTH(Body) < 100 AND Score > 20 AND PostTypeId = 1 ORDER BY Score DESC LIMIT 20 | sede |
CREATE TABLE job_history (
EMPLOYEE_ID decimal(6,0),
START_DATE date,
END_DATE date,
JOB_ID varchar(10),
DEPARTMENT_ID decimal(4,0)
)
CREATE TABLE locations (
LOCATION_ID decimal(4,0),
STREET_ADDRESS varchar(40),
POSTAL_CODE varchar(12),
CITY varchar(30),
STATE_PROVINCE varchar(... | SELECT HIRE_DATE, SALARY FROM employees WHERE NOT FIRST_NAME LIKE '%M%' ORDER BY HIRE_DATE DESC | nvbench |
CREATE TABLE table_2104176_1 (
medal_of_honor VARCHAR,
air_force_cross VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the Medal of Honor with Army Distinguished Service Medal?
| SELECT medal_of_honor FROM table_2104176_1 WHERE air_force_cross = "Army Distinguished Service Medal" | sql_create_context |
CREATE TABLE table_203_565 (
id number,
"wrestlers" text,
"times" number,
"date" text,
"location" text,
"notes" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- what is the last date listed ?
| SELECT "date" FROM table_203_565 ORDER BY id DESC LIMIT 1 | squall |
CREATE TABLE table_9983 (
"Week" real,
"Date" text,
"Opponent" text,
"Score" text,
"Result" text,
"Attendance" text,
"Record" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the number of weeks where the result was listed at bye?
| SELECT COUNT("Week") FROM table_9983 WHERE "Result" = 'bye' | wikisql |
CREATE TABLE keyphrase (
keyphraseid int,
keyphrasename varchar
)
CREATE TABLE field (
fieldid int
)
CREATE TABLE author (
authorid int,
authorname varchar
)
CREATE TABLE paperkeyphrase (
paperid int,
keyphraseid int
)
CREATE TABLE paper (
paperid int,
title varchar,
venueid ... | SELECT DISTINCT COUNT(paper.paperid) FROM author, paper, venue, writes WHERE author.authorname = 'Lisa Beinborn' AND venue.venueid = paper.venueid AND venue.venuename = 'TACL' AND writes.authorid = author.authorid AND writes.paperid = paper.paperid | scholar |
CREATE TABLE table_5473 (
"Corps Name" text,
"Number of Finals Appearances" real,
"Year of First Appearance" real,
"Year of Most Recent Appearance" real,
"All Years of Finals Appearances" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the ye... | SELECT COUNT("Year of Most Recent Appearance") FROM table_5473 WHERE "Corps Name" = 'suncoast sound' AND "Number of Finals Appearances" > '7' | wikisql |
CREATE TABLE d_icd_procedures (
row_id number,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE d_labitems (
row_id number,
itemid number,
label text
)
CREATE TABLE microbiologyevents (
row_id number,
subject_id number,
hadm_id number,
charttime time,
sp... | SELECT prescriptions.startdate FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 65484) AND prescriptions.route = 'po' ORDER BY prescriptions.startdate DESC LIMIT 1 | mimic_iii |
CREATE TABLE diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE lab (
subject_id text,
hadm_id text,
... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.admission_location = "CLINIC REFERRAL/PREMATURE" AND demographic.discharge_location = "LEFT AGAINST MEDICAL ADVI" | mimicsql_data |
CREATE TABLE table_35104 (
"Sanskrit \u0938\u0902\u0938\u094d\u0915\u0943\u0924\u092e\u094d" text,
"Tamil \u0ba4\u0bae\u0bbf\u0bb4\u0bcd" text,
"Telugu \u0c24\u0c46\u0c32\u0c41\u0c17\u0c41" text,
"Kannada \u0c95\u0ca8\u0ccd\u0ca8\u0ca1" text,
"Malayalam \u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02" text,
... | SELECT "Mongolian" FROM table_35104 WHERE "Tamil \u0ba4\u0bae\u0bbf\u0bb4\u0bcd" = 'pūrāṭam பூராடம்' | wikisql |
CREATE TABLE table_57924 (
"Release format" text,
"Country" text,
"Label(s)" text,
"Cat. no." text,
"Release date" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the release date for the standard cd release format in north america?
| SELECT "Release date" FROM table_57924 WHERE "Release format" = 'standard cd' AND "Country" = 'north america' | wikisql |
CREATE TABLE table_17625749_3 (
points_for VARCHAR,
tries_against VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- How many points are there for 63 tries against?
| SELECT points_for FROM table_17625749_3 WHERE tries_against = "63" | sql_create_context |
CREATE TABLE mzjzjlb (
HXPLC number,
HZXM text,
JLSJ time,
JZJSSJ time,
JZKSBM text,
JZKSMC text,
JZKSRQ time,
JZLSH text,
JZZDBM text,
JZZDSM text,
JZZTDM number,
JZZTMC text,
KH text,
KLX number,
MJZH text,
ML number,
MZZYZDZZBM text,
MZZYZDZZMC ... | SELECT mzjzjlb.JZZDBM, mzjzjlb.JZZDSM FROM person_info JOIN hz_info JOIN mzjzjlb JOIN person_info_hz_info ON person_info.RYBH = person_info_hz_info.RYBH AND hz_info.YLJGDM = mzjzjlb.YLJGDM AND hz_info.KH = mzjzjlb.KH AND hz_info.KLX = mzjzjlb.KLX AND person_info_hz_info.KH = hz_info.KH AND person_info_hz_info.KLX = hz_... | css |
CREATE TABLE table_63591 (
"Date" text,
"Team 1" text,
"Result" text,
"Team 2" text,
"Ground" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What team is 2 when the game result is 0-4 at Pailing Sport Park?
| SELECT "Team 2" FROM table_63591 WHERE "Ground" = 'pailing sport park' AND "Result" = '0-4' | wikisql |
CREATE TABLE table_name_39 (
pick VARCHAR,
name VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What was Ralph Shoaf's pick number?
| SELECT pick FROM table_name_39 WHERE name = "ralph shoaf" | sql_create_context |
CREATE TABLE table_204_635 (
id number,
"round" number,
"selection" number,
"player" text,
"position" text,
"college" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- who was the last draftee to be picked by the team ?
| SELECT "player" FROM table_204_635 ORDER BY id DESC LIMIT 1 | squall |
CREATE TABLE table_204_883 (
id number,
"pos." text,
"name" text,
"place of birth" text,
"date of birth" text,
"previous club" text,
"date joined" text,
"fee" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- how many players are listed as ... | SELECT COUNT("name") FROM table_204_883 WHERE "pos." = 'df' | squall |
CREATE TABLE t_kc24 (
MED_SAFE_PAY_ID text,
OVERALL_CD_ORG text,
OVERALL_CD_PERSON text,
MED_CLINIC_ID text,
REF_SLT_FLG number,
CLINIC_SLT_DATE time,
COMP_ID text,
PERSON_ID text,
FLX_MED_ORG_ID text,
INSU_TYPE text,
MED_AMOUT number,
PER_ACC_PAY number,
OVE_PAY numb... | SELECT MED_ORG_DEPT_CD, OUT_DIAG_DIS_CD, AVG(PERSON_AGE) FROM t_kc21 WHERE MED_SER_ORG_NO = '0081088' GROUP BY MED_ORG_DEPT_CD, OUT_DIAG_DIS_CD | css |
CREATE TABLE fzzmzjzjlb (
HXPLC number,
HZXM text,
JLSJ time,
JZJSSJ time,
JZKSBM text,
JZKSMC text,
JZKSRQ time,
JZLSH number,
JZZDBM text,
JZZDSM text,
JZZTDM number,
JZZTMC text,
KH text,
KLX number,
MJZH text,
ML number,
MZZYZDZZBM text,
MZZYZD... | SELECT * FROM person_info JOIN hz_info JOIN zzmzjzjlb ON person_info.RYBH = hz_info.RYBH AND hz_info.YLJGDM = zzmzjzjlb.YLJGDM AND hz_info.KH = zzmzjzjlb.KH AND hz_info.KLX = zzmzjzjlb.KLX WHERE person_info.XM = '姜慧丽' AND hz_info.YLJGDM = '0960685' AND NOT zzmzjzjlb.JZZDSM LIKE '%紧张%' UNION SELECT * FROM person_info JO... | css |
CREATE TABLE table_name_77 (
length VARCHAR,
remarks VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the length of the highway with remarks that it was replaced by bsi-35?
| SELECT length FROM table_name_77 WHERE remarks = "replaced by bsi-35" | sql_create_context |
CREATE TABLE ENROLL (
CLASS_CODE varchar(5),
STU_NUM int,
ENROLL_GRADE varchar(50)
)
CREATE TABLE COURSE (
CRS_CODE varchar(10),
DEPT_CODE varchar(10),
CRS_DESCRIPTION varchar(35),
CRS_CREDIT float(8)
)
CREATE TABLE PROFESSOR (
EMP_NUM int,
DEPT_CODE varchar(10),
PROF_OFFICE va... | SELECT EMP_FNAME, COUNT(EMP_FNAME) FROM CLASS AS T1 JOIN EMPLOYEE AS T2 ON T1.PROF_NUM = T2.EMP_NUM JOIN COURSE AS T3 ON T1.CRS_CODE = T3.CRS_CODE GROUP BY CRS_DESCRIPTION, EMP_FNAME ORDER BY EMP_FNAME DESC | nvbench |
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 HIRE_DATE, MANAGER_ID FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40 ORDER BY HIRE_DATE DESC | nvbench |
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 All_Home, SUM(School_ID) FROM basketball_match GROUP BY All_Home | nvbench |
CREATE TABLE table_11181 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What was the score of the team that played again... | SELECT "Home team score" FROM table_11181 WHERE "Away team" = 'fitzroy' | wikisql |
CREATE TABLE d_icd_procedures (
row_id number,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE prescriptions (
row_id number,
subject_id number,
hadm_id number,
startdate time,
enddate time,
drug text,
dose_val_rx text,
dose_unit_rx text,
route text
... | SELECT COUNT(*) > 0 FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 5828)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'arterial bp [systo... | mimic_iii |
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 COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.discharge_location = "HOME" AND demographic.days_stay > "23" | mimicsql_data |
CREATE TABLE table_25675509_1 (
date__yyyy_mm_dd_ VARCHAR,
latitude VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- On which date did the shock at latitude 08.909 s occur?
| SELECT date__yyyy_mm_dd_ FROM table_25675509_1 WHERE latitude = "08.909° S" | sql_create_context |
CREATE TABLE t_kc22 (
AMOUNT number,
CHA_ITEM_LEV number,
DATA_ID text,
DIRE_TYPE number,
DOSE_FORM text,
DOSE_UNIT text,
EACH_DOSAGE text,
EXP_OCC_DATE time,
FLX_MED_ORG_ID text,
FXBZ number,
HOSP_DOC_CD text,
HOSP_DOC_NM text,
MED_CLINIC_ID text,
MED_DIRE_CD tex... | SELECT AVG(t_kc21.MED_AMOUT) FROM t_kc21 WHERE t_kc21.MED_ORG_DEPT_CD = '6118' AND t_kc21.IN_HOSP_DATE BETWEEN '2010-02-05' AND '2019-12-03' AND t_kc21.IN_DIAG_DIS_CD = 'W66.043' AND t_kc21.CLINIC_TYPE = '住院' | css |
CREATE TABLE table_6659 (
"Tournament" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text,
"2012" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Name the 2012 for us open
| SELECT "2012" FROM table_6659 WHERE "Tournament" = 'us open' | wikisql |
CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE prescriptions (
subject_id text,
hadm_id text,
icustay_id text,
drug_type text,
drug text,
formulary_drug_cd text,
route text,
drug_dose text
)
... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE lab.charttime = "2115-09-18 15:20:00" | mimicsql_data |
CREATE TABLE table_19283 (
"Series" text,
"Main presenter" text,
"Co-presenter" text,
"Comedian" text,
"UK co-presenter" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What series have Caroline Flack as a main presenter?
| SELECT "Series" FROM table_19283 WHERE "Main presenter" = 'Caroline Flack' | wikisql |
CREATE TABLE Votes (
Id number,
PostId number,
VoteTypeId number,
UserId number,
CreationDate time,
BountyAmount number
)
CREATE TABLE Tags (
Id number,
TagName text,
Count number,
ExcerptPostId number,
WikiPostId number
)
CREATE TABLE ReviewTaskResults (
Id number,
... | SELECT * FROM ReviewTasks WHERE PostId = '##PostId:int##' | sede |
CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE lab (
subject_id text,
hadm_id text,
itemid text,
charttime text,
flag text,
value_unit text,
label text,
fluid text
)
CREATE TABLE prescription... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.expire_flag = "0" AND diagnoses.long_title = "Chronic diastolic heart failure" | mimicsql_data |
CREATE TABLE table_1241 (
"Year" real,
"Division" real,
"League" text,
"Regular Season" text,
"Playoffs" text,
"Open Cup" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- When did the playoffs reached Conference Finals?
| SELECT "Year" FROM table_1241 WHERE "Playoffs" = 'Conference Finals' | wikisql |
CREATE TABLE round (
Round_ID int,
Member_ID int,
Decoration_Theme text,
Rank_in_Round int
)
CREATE TABLE member (
Member_ID int,
Name text,
Country text,
College_ID int
)
CREATE TABLE college (
College_ID int,
Name text,
Leader_Name text,
College_Location text
)
-- U... | SELECT Country, COUNT(*) FROM member GROUP BY Country ORDER BY COUNT(*) DESC | nvbench |
CREATE TABLE CloseAsOffTopicReasonTypes (
Id number,
IsUniversal boolean,
InputTitle text,
MarkdownInputGuidance text,
MarkdownPostOwnerGuidance text,
MarkdownPrivilegedUserGuidance text,
MarkdownConcensusDescription text,
CreationDate time,
CreationModeratorId number,
ApprovalDa... | SELECT Users.Id AS "user_link", COUNT(Posts.Id) FROM Posts JOIN Users ON Posts.OwnerUserId = Users.Id WHERE Posts.PostTypeId = 2 AND Posts.OwnerUserId = Users.Id AND Posts.Score > 0 AND EXISTS(SELECT Id FROM PostHistory WHERE PostHistory.PostId = Posts.ParentId AND PostHistory.UserId = Users.Id AND PostHistory.Creation... | sede |
CREATE TABLE table_53641 (
"Driver" text,
"Constructor" text,
"Laps" real,
"Time/Retired" text,
"Grid" real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the high lap total that has a grid of less than 4 and a Time/Retired of + 1 lap?
| SELECT MAX("Laps") FROM table_53641 WHERE "Grid" < '4' AND "Time/Retired" = '+ 1 lap' | wikisql |
CREATE TABLE jyjgzbb (
BGDH text,
BGRQ time,
CKZFWDX text,
CKZFWSX number,
CKZFWXX number,
JCFF text,
JCRGH text,
JCRXM text,
JCXMMC text,
JCZBDM text,
JCZBJGDL number,
JCZBJGDW text,
JCZBJGDX text,
JCZBMC text,
JLDW text,
JYRQ time,
JYZBLSH text,
... | SELECT jyjgzbb.JCRGH, jyjgzbb.JCRXM FROM hz_info JOIN mzjzjlb JOIN jybgb JOIN jyjgzbb JOIN hz_info_mzjzjlb ON hz_info.YLJGDM = hz_info_mzjzjlb.YLJGDM AND hz_info.KH = mzjzjlb.KH AND hz_info.KLX = mzjzjlb.KLX AND hz_info_mzjzjlb.YLJGDM = jybgb.YLJGDM_MZJZJLB AND mzjzjlb.JZLSH = jybgb.JZLSH_MZJZJLB AND jybgb.YLJGDM = jyj... | css |
CREATE TABLE table_name_83 (
championship VARCHAR,
winning_score VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- In which championship did the winner have a score of 9 (66-69-73-71=279)?
| SELECT championship FROM table_name_83 WHERE winning_score = −9(66 - 69 - 73 - 71 = 279) | sql_create_context |
CREATE TABLE table_name_5 (
laps INTEGER,
driver VARCHAR,
grid VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- I want the sum of Laps for wolfgang von trips, and a grid larger than 5
| SELECT SUM(laps) FROM table_name_5 WHERE driver = "wolfgang von trips" AND grid > 5 | sql_create_context |
CREATE TABLE PendingFlags (
Id number,
FlagTypeId number,
PostId number,
CreationDate time,
CloseReasonTypeId number,
CloseAsOffTopicReasonTypeId number,
DuplicateOfQuestionId number,
BelongsOnBaseHostAddress text
)
CREATE TABLE SuggestedEditVotes (
Id number,
SuggestedEditId nu... | SELECT Id AS ID, DisplayName AS Name, Reputation, LastAccessDate AS Seen FROM Users WHERE Location LIKE '%Saudi%' ORDER BY Reputation DESC LIMIT 200 | sede |
CREATE TABLE treatment (
treatmentid number,
patientunitstayid number,
treatmentname text,
treatmenttime time
)
CREATE TABLE patient (
uniquepid text,
patienthealthsystemstayid number,
patientunitstayid number,
gender text,
age text,
ethnicity text,
hospitalid number,
wa... | SELECT t3.diagnosisname FROM (SELECT t2.diagnosisname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, treatment.treatmenttime FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'bronchodilator - metered dose' AND STRFT... | eicu |
CREATE TABLE table_24538 (
"University" text,
"Established as a university" real,
"First establishment" real,
"Student population ( FTE , 2009)" real,
"Research grants (2009, in billion SEK )" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- whatis th... | SELECT MAX("First establishment") FROM table_24538 WHERE "Research grants (2009, in billion SEK )" = '4.027' | wikisql |
CREATE TABLE table_2076608_3 (
control VARCHAR,
founded VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the control type which was founded in 1818?
| SELECT control FROM table_2076608_3 WHERE founded = "1818" | sql_create_context |
CREATE TABLE jybgb (
BBCJBW text,
BBDM text,
BBMC text,
BBZT number,
BGDH text,
BGJGDM text,
BGJGMC text,
BGRGH text,
BGRQ time,
BGRXM text,
BGSJ time,
CJRQ time,
JSBBRQSJ time,
JSBBSJ time,
JYBBH text,
JYJGMC text,
JYJSGH text,
JYJSQM text,
JY... | SELECT COUNT(*) FROM wdmzjzjlb WHERE wdmzjzjlb.YLJGDM = '1511362' AND wdmzjzjlb.RYDJSJ BETWEEN '2018-09-20' AND '2020-02-03' AND DATEDIFF(wdmzjzjlb.CYSJ, wdmzjzjlb.RYSJ) > 8 UNION SELECT COUNT(*) FROM bdmzjzjlb WHERE bdmzjzjlb.YLJGDM = '1511362' AND bdmzjzjlb.RYDJSJ BETWEEN '2018-09-20' AND '2020-02-03' AND DATEDIFF(bd... | css |
CREATE TABLE t_kc22 (
AMOUNT number,
CHA_ITEM_LEV number,
DATA_ID text,
DIRE_TYPE number,
DOSE_FORM text,
DOSE_UNIT text,
EACH_DOSAGE text,
EXP_OCC_DATE time,
FLX_MED_ORG_ID text,
FXBZ number,
HOSP_DOC_CD text,
HOSP_DOC_NM text,
MED_CLINIC_ID text,
MED_DIRE_CD tex... | SELECT qtb.MAIN_COND_DES FROM qtb WHERE qtb.MED_CLINIC_ID = '88548403439' UNION SELECT gyb.MAIN_COND_DES FROM gyb WHERE gyb.MED_CLINIC_ID = '88548403439' UNION SELECT zyb.MAIN_COND_DES FROM zyb WHERE zyb.MED_CLINIC_ID = '88548403439' UNION SELECT mzb.MAIN_COND_DES FROM mzb WHERE mzb.MED_CLINIC_ID = '88548403439' | css |
CREATE TABLE CloseReasonTypes (
Id number,
Name text,
Description text
)
CREATE TABLE ReviewTaskTypes (
Id number,
Name text,
Description text
)
CREATE TABLE ReviewTaskStates (
Id number,
Name text,
Description text
)
CREATE TABLE Tags (
Id number,
TagName text,
Count ... | SELECT Id AS "post_link", Body FROM Posts WHERE NOT ClosedDate IS NULL AND NOT Body LIKE '<blockquote>' + CHAR(10) + ' <p><strong>Possible Duplicate%' | sede |
CREATE TABLE tweets (
UID VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Find the number of users who posted some tweets.
| SELECT COUNT(DISTINCT UID) FROM tweets | sql_create_context |
CREATE TABLE table_854 (
"Rnd" real,
"Circuit" text,
"GTP Winning Team" text,
"Lights Winning Team" text,
"GTO Winning Team" text,
"GTU Winning Team" text,
"Results" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the most rnd for wat... | SELECT MIN("Rnd") FROM table_854 WHERE "Circuit" = 'Watkins Glen' | wikisql |
CREATE TABLE Apartments (
apt_id INTEGER,
building_id INTEGER,
apt_type_code CHAR(15),
apt_number CHAR(10),
bathroom_count INTEGER,
bedroom_count INTEGER,
room_count CHAR(5)
)
CREATE TABLE Guests (
guest_id INTEGER,
gender_code CHAR(1),
guest_first_name VARCHAR(80),
guest_la... | SELECT date_of_birth, COUNT(date_of_birth) FROM Guests WHERE gender_code = "Male" ORDER BY COUNT(date_of_birth) | nvbench |
CREATE TABLE cinema (
Cinema_ID int,
Name text,
Openning_year int,
Capacity int,
Location text
)
CREATE TABLE schedule (
Cinema_ID int,
Film_ID int,
Date text,
Show_times_per_day int,
Price float
)
CREATE TABLE film (
Film_ID int,
Rank_in_series int,
Number_in_seaso... | SELECT Openning_year, AVG(Capacity) FROM cinema GROUP BY Openning_year ORDER BY AVG(Capacity) | nvbench |
CREATE TABLE table_71281 (
"Screening Started" text,
"Screening Completed" text,
"Chapter Unfrozen" text,
"Chapter Opened" text,
"Chapter Closed" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Name the screening started when it was completed 3 may 2... | SELECT "Screening Started" FROM table_71281 WHERE "Screening Completed" = '3 may 2006' | wikisql |
CREATE TABLE table_25938117_1 (
winner VARCHAR,
date VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Name the winner for jan 24
| SELECT winner FROM table_25938117_1 WHERE date = "Jan 24" | sql_create_context |
CREATE TABLE Student (
age VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- How many students are age 18?
| SELECT COUNT(*) FROM Student WHERE age = 18 | sql_create_context |
CREATE TABLE t_kc24 (
MED_SAFE_PAY_ID text,
OVERALL_CD_ORG text,
OVERALL_CD_PERSON text,
MED_CLINIC_ID text,
REF_SLT_FLG number,
CLINIC_SLT_DATE time,
COMP_ID text,
PERSON_ID text,
FLX_MED_ORG_ID text,
INSU_TYPE text,
MED_AMOUT number,
PER_ACC_PAY number,
OVE_PAY numb... | SELECT ILL_PAY FROM t_kc24 WHERE MED_CLINIC_ID = '51769429747' | css |
CREATE TABLE table_66358 (
"Title" text,
"Series" text,
"Director" text,
"Production Number" real,
"Release date" text,
"reissue?" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the production number for Bell Hoppy in the MM Series?
| SELECT COUNT("Production Number") FROM table_66358 WHERE "Series" = 'mm' AND "Title" = 'bell hoppy' | wikisql |
CREATE TABLE hz_info (
KH text,
KLX number,
YLJGDM text,
RYBH text
)
CREATE TABLE jybgb (
YLJGDM text,
YLJGDM_MZJZJLB text,
YLJGDM_ZYJZJLB text,
BGDH text,
BGRQ time,
JYLX number,
JZLSH text,
JZLSH_MZJZJLB text,
JZLSH_ZYJZJLB text,
JZLX number,
KSBM text,
... | SELECT * FROM person_info JOIN hz_info JOIN zyjzjlb ON person_info.RYBH = hz_info.RYBH AND hz_info.YLJGDM = zyjzjlb.YLJGDM AND hz_info.KH = zyjzjlb.KH AND hz_info.KLX = zyjzjlb.KLX WHERE person_info.XM = '水兴平' AND hz_info.YLJGDM = '5237390' AND NOT zyjzjlb.JZKSMC LIKE '%免疫%' | css |
CREATE TABLE jyjgzbb (
BGDH text,
BGRQ time,
CKZFWDX text,
CKZFWSX number,
CKZFWXX number,
JCFF text,
JCRGH text,
JCRXM text,
JCXMMC text,
JCZBDM text,
JCZBJGDL number,
JCZBJGDW text,
JCZBJGDX text,
JCZBMC text,
JLDW text,
JYRQ time,
JYZBLSH text,
... | SELECT zyjzjlb.CYKSDM, zyjzjlb.CYKSMC FROM zyjzjlb WHERE zyjzjlb.JZLSH = '44315858644' | css |
CREATE TABLE table_66209 (
"Constituency number" text,
"Name" text,
"Reserved for ( SC / ST /None)" text,
"District" text,
"Number of electorates (2009)" real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the Reserved for when there are more tha... | SELECT "Reserved for ( SC / ST /None)" FROM table_66209 WHERE "Number of electorates (2009)" > '161,219' AND "Constituency number" = '160' | wikisql |
CREATE TABLE table_1850339_2 (
season VARCHAR,
army___navy_score VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- How many different season have an Army - Navy score of 10 dec. 2016 at Baltimore, MD (M&T Bank Stadium)?
| SELECT COUNT(season) FROM table_1850339_2 WHERE army___navy_score = "10 Dec. 2016 at Baltimore, MD (M&T Bank Stadium)" | sql_create_context |
CREATE TABLE table_11662133_1 (
gross_tonnage INTEGER,
ships_name VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the minimum gross tonnage of the Munich?
| SELECT MIN(gross_tonnage) FROM table_11662133_1 WHERE ships_name = "Munich" | sql_create_context |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.