instruction stringlengths 151 7.46k | output stringlengths 2 4.44k | source stringclasses 26
values |
|---|---|---|
CREATE TABLE table_40114 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- When was the attendance less than 44,851 during the first 4 weeks of the season?
| SELECT "Date" FROM table_40114 WHERE "Week" < '4' AND "Attendance" = '44,851' | wikisql |
CREATE TABLE table_name_68 (
height_metres___ft VARCHAR,
years_as_tallest VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Name the Height metres / ft of Years with tallest of 1098 1310?
| SELECT height_metres___ft FROM table_name_68 WHERE years_as_tallest = "1098–1310" | sql_create_context |
CREATE TABLE table_70353 (
"Call sign" text,
"Frequency MHz" real,
"City of license" text,
"ERP W" real,
"Class" text,
"FCC info" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Name the sum of ERP W for class of d and frequency mhz of 98.7
| SELECT SUM("ERP W") FROM table_70353 WHERE "Class" = 'd' AND "Frequency MHz" = '98.7' | wikisql |
CREATE TABLE phone (
Name text,
Phone_ID int,
Memory_in_G int,
Carrier text,
Price real
)
CREATE TABLE market (
Market_ID int,
District text,
Num_of_employees int,
Num_of_shops real,
Ranking int
)
CREATE TABLE phone_market (
Market_ID int,
Phone_ID text,
Num_of_stoc... | SELECT Name, COUNT(Name) FROM phone_market AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID JOIN phone AS T3 ON T1.Phone_ID = T3.Phone_ID GROUP BY Name | nvbench |
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 INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.admission_location = "TRSF WITHIN THIS FACILITY" AND prescriptions.formulary_drug_cd = "BUME05" | mimicsql_data |
CREATE TABLE management (
department_ID int,
head_ID int,
temporary_acting text
)
CREATE TABLE department (
Department_ID int,
Name text,
Creation text,
Ranking int,
Budget_in_Billions real,
Num_Employees real
)
CREATE TABLE head (
head_ID int,
name text,
born_state tex... | SELECT Creation, AVG(Budget_in_Billions) FROM department ORDER BY Creation | nvbench |
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 prescriptions (
subject_id text,
hadm_id... | SELECT diagnoses.short_title, diagnoses.long_title FROM diagnoses WHERE diagnoses.icd9_code = "4271" | mimicsql_data |
CREATE TABLE table_name_70 (
date VARCHAR,
venue VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What date was the game played at the venue of Hrazdan Stadium, Yerevan, Armenia?
| SELECT date FROM table_name_70 WHERE venue = "hrazdan stadium, yerevan, armenia" | sql_create_context |
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,
COM_PAY number,
DATA_ID text,
ENT_ACC_PAY number,
ENT_PAY number,
F... | SELECT COUNT(*) FROM gwyjzb JOIN t_kc22 ON gwyjzb.MED_CLINIC_ID = t_kc22.MED_CLINIC_ID WHERE gwyjzb.PERSON_ID = '70297325' AND t_kc22.STA_DATE BETWEEN '2016-05-13' AND '2020-10-13' GROUP BY t_kc22.SOC_SRT_DIRE_CD ORDER BY COUNT(*) DESC LIMIT 1 UNION SELECT COUNT(*) FROM fgwyjzb JOIN t_kc22 ON fgwyjzb.MED_CLINIC_ID = t_... | css |
CREATE TABLE shipments (
shipment_id number,
order_id number,
invoice_number number,
shipment_tracking_number text,
shipment_date time,
other_shipment_details text
)
CREATE TABLE order_items (
order_item_id number,
product_id number,
order_id number,
order_item_status text,
... | SELECT order_id FROM shipments WHERE shipment_date > "2000-01-01" | spider |
CREATE TABLE table_6183 (
"Year" real,
"Song" text,
"US Hot 100" text,
"UK Singles" text,
"Album" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which Year has an Album of airwaves, and a US Hot 100 of ?
| SELECT MAX("Year") FROM table_6183 WHERE "Album" = 'airwaves' AND "US Hot 100" = '–' | wikisql |
CREATE TABLE table_2009 (
"Branding" text,
"Callsign" text,
"Frequency" text,
"Power (kW)" text,
"Location" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the brand in Cabanatuan?
| SELECT "Branding" FROM table_2009 WHERE "Location" = 'Cabanatuan' | wikisql |
CREATE TABLE t_kc21 (
CLINIC_ID text,
CLINIC_TYPE 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,
... | SELECT SUM(t_kc24.OVE_PAY) FROM t_kc21 JOIN t_kc24 JOIN t_kc21_t_kc24 ON t_kc21.MED_CLINIC_ID = t_kc21_t_kc24.MED_CLINIC_ID AND t_kc21_t_kc24.MED_SAFE_PAY_ID = t_kc24.MED_SAFE_PAY_ID WHERE t_kc21.PERSON_NM = '柏嘉纳' AND t_kc24.CLINIC_SLT_DATE BETWEEN '2003-05-08' AND '2018-09-10' | css |
CREATE TABLE table_77517 (
"Team" text,
"Games Played" real,
"Wins" real,
"Losses" real,
"Ties" real,
"Goals For" real,
"Goals Against" real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the average ties when the team is montreal victori... | SELECT AVG("Ties") FROM table_77517 WHERE "Team" = 'montreal victorias' AND "Games Played" > '8' | wikisql |
CREATE TABLE table_name_18 (
winner_2nd VARCHAR,
race VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Who was the winner/2nd place finisher in the Caulfield Guineas?
| SELECT winner_2nd FROM table_name_18 WHERE race = "caulfield guineas" | sql_create_context |
CREATE TABLE table_9056 (
"Outcome" text,
"Date" real,
"Championship" text,
"Surface" text,
"Opponent" text,
"Score" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What was the surface type during the match with the score of 6 4, 7 6 (7-5)??
| SELECT "Surface" FROM table_9056 WHERE "Score" = '6–4, 7–6 (7-5)' | wikisql |
CREATE TABLE table_25396 (
"Player" text,
"Games Played" real,
"Field Goals" real,
"Three Pointers" real,
"Free Throws" real,
"Rebounds" real,
"Assists" real,
"Blocks" real,
"Steals" real,
"Points" real
)
-- Using valid SQLite, answer the following questions for the tables prov... | SELECT MAX("Blocks") FROM table_25396 WHERE "Player" = 'Kendall Gill' | wikisql |
CREATE TABLE table_29545336_2 (
title VARCHAR,
featured_character_s_ VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the title of the episode that featured Abbud Siddiqui?
| SELECT title FROM table_29545336_2 WHERE featured_character_s_ = "Abbud Siddiqui" | sql_create_context |
CREATE TABLE table_72231 (
"Country" text,
"Interview" text,
"Swimsuit" text,
"Evening Gown" text,
"Average" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which country had an interview score of 9.40 and average of 9.44?
| SELECT "Country" FROM table_72231 WHERE "Interview" = '9.40' AND "Average" = '9.44' | wikisql |
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 INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admission_type = "ELECTIVE" AND lab.label = "Gentamicin" | mimicsql_data |
CREATE TABLE table_38996 (
"Jyutping" text,
"Character" text,
"Portuguese" text,
"Relative value" text,
"Metric value" text,
"Imperial value" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What metric value has a jyutping of lei4?
| SELECT "Metric value" FROM table_38996 WHERE "Jyutping" = 'lei4' | wikisql |
CREATE TABLE train (
train_id number,
name text,
time text,
service text
)
CREATE TABLE train_station (
train_id number,
station_id number
)
CREATE TABLE station (
station_id number,
name text,
annual_entry_exit number,
annual_interchanges number,
total_passengers number,
... | SELECT T2.name, T3.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id | spider |
CREATE TABLE table_69743 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Record" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the Date that chicago black hawks has a Record of 2 2?
| SELECT "Date" FROM table_69743 WHERE "Visitor" = 'chicago black hawks' AND "Record" = '2–2' | wikisql |
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 jybgb.BBCJBW FROM hz_info JOIN mzjzjlb JOIN jybgb ON hz_info.YLJGDM = mzjzjlb.YLJGDM AND hz_info.KH = mzjzjlb.KH AND hz_info.KLX = mzjzjlb.KLX AND mzjzjlb.YLJGDM = jybgb.YLJGDM_MZJZJLB AND mzjzjlb.JZLSH = jybgb.JZLSH_MZJZJLB WHERE hz_info.RYBH = '64770032' AND jybgb.BGRQ BETWEEN '2000-06-13' AND '2019-11-17' UNI... | css |
CREATE TABLE d_icd_diagnoses (
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 prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 1372) AND prescriptions.drug = 'furosemide' AND STRFTIME('%y-%m', prescriptions.startdate) <= '2101-07' | mimic_iii |
CREATE TABLE diagnoses (
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 procedures (
... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admityear < "2177" AND procedures.short_title = "Infusion of vasopressor" | mimicsql_data |
CREATE TABLE county_public_safety (
Name VARCHAR,
Population VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- List the names of counties in descending order of population.
| SELECT Name FROM county_public_safety ORDER BY Population DESC | sql_create_context |
CREATE TABLE SuggestedEdits (
Id number,
PostId number,
CreationDate time,
ApprovalDate time,
RejectionDate time,
OwnerUserId number,
Comment text,
Text text,
Title text,
Tags text,
RevisionGUID other
)
CREATE TABLE PostFeedback (
Id number,
PostId number,
IsAnon... | SELECT DisplayName, (Reputation - 101.0) / DATEDIFF(d, CreationDate, GETDATE()) FROM Users ORDER BY (Reputation - 101.0) / DATEDIFF(d, CreationDate, GETDATE()) DESC | sede |
CREATE TABLE table_79324 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Date" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the tie number when the home team is Port Vale?
| SELECT "Tie no" FROM table_79324 WHERE "Home team" = 'port vale' | wikisql |
CREATE TABLE t_kc21 (
CLINIC_ID text,
CLINIC_TYPE 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,
... | SELECT * FROM t_kc21 WHERE t_kc21.PERSON_NM = '袁清怡' AND t_kc21.MED_SER_ORG_NO = '0621277' AND t_kc21.MED_ORG_DEPT_NM LIKE '%整形%' | css |
CREATE TABLE university (
School_ID int,
School text,
Location text,
Founded real,
Affiliation text,
Enrollment real,
Nickname text,
Primary_conference text
)
CREATE TABLE basketball_match (
Team_ID int,
School_ID int,
Team_Name text,
ACC_Regular_Season text,
ACC_Per... | SELECT Affiliation, SUM(Enrollment) FROM university GROUP BY Affiliation | nvbench |
CREATE TABLE table_14630796_1 (
class_a VARCHAR,
class_aAAA VARCHAR,
Carthage VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Name the class a for carthage
| SELECT class_a FROM table_14630796_1 WHERE class_aAAA = Carthage | sql_create_context |
CREATE TABLE table_203_268 (
id number,
"date" text,
"name" text,
"nationality" text,
"tonnage\n(grt)" number,
"fate" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- other than the united states , what other nationality were the submarines ?
| SELECT DISTINCT "nationality" FROM table_203_268 WHERE "nationality" <> 'united states' | squall |
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 AVG(demographic.age) FROM demographic WHERE demographic.gender = "F" AND demographic.days_stay = "16" | mimicsql_data |
CREATE TABLE table_name_59 (
team_1 VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What was the first leg score for the match with a team 1 of Panathinaikos?
| SELECT 1 AS st_leg FROM table_name_59 WHERE team_1 = "panathinaikos" | sql_create_context |
CREATE TABLE university (
School_ID int,
School text,
Location text,
Founded real,
Affiliation text,
Enrollment real,
Nickname text,
Primary_conference text
)
CREATE TABLE basketball_match (
Team_ID int,
School_ID int,
Team_Name text,
ACC_Regular_Season text,
ACC_Per... | SELECT School_ID, ACC_Percent FROM basketball_match GROUP BY ACC_Regular_Season | nvbench |
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 hz_info JOIN mzjzjlb ON hz_info.YLJGDM = mzjzjlb.YLJGDM AND hz_info.KH = mzjzjlb.KH AND hz_info.KLX = mzjzjlb.KLX WHERE hz_info.person_info_XM = '邹浩慨' AND mzjzjlb.JZKSRQ BETWEEN '2001-06-20' AND '2018-02-12' AND mzjzjlb.YLJGDM = '6233907' | css |
CREATE TABLE table_28384 (
"No. in series" real,
"No. in season" real,
"Title" text,
"Directed by" text,
"Written by" text,
"Original air date" text,
"Production code" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which season had k0104?
| SELECT MAX("No. in season") FROM table_28384 WHERE "Production code" = 'K0104' | wikisql |
CREATE TABLE table_201_7 (
id number,
"year" number,
"gross domestic product" number,
"us dollar exchange" text,
"inflation index\n(2000=100)" number,
"per capita income\n(as % of usa)" number
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- which year... | SELECT "year" FROM table_201_7 ORDER BY "per capita income\n(as % of usa)" DESC LIMIT 1 | squall |
CREATE TABLE treatment (
treatmentid number,
patientunitstayid number,
treatmentname text,
treatmenttime time
)
CREATE TABLE allergy (
allergyid number,
patientunitstayid number,
drugname text,
allergyname text,
allergytime time
)
CREATE TABLE intakeoutput (
intakeoutputid numb... | SELECT t3.drugname FROM (SELECT t2.drugname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, treatment.treatmenttime, patient.patienthealthsystemstayid FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'antiarrhythmics... | eicu |
CREATE TABLE table_52724 (
"Finished" text,
"Post" real,
"Horse" text,
"Jockey" text,
"Trainer" text,
"Odds" real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Who trained the horse on post 11 with over 36 odds?
| SELECT "Trainer" FROM table_52724 WHERE "Odds" > '36' AND "Post" = '11' | wikisql |
CREATE TABLE table_204_449 (
id number,
"no" number,
"episode" text,
"title" text,
"original airdate" text,
"viewers" number,
"nightly\nrank" number
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- what were the number of episodes in the second sea... | SELECT COUNT("title") FROM table_204_449 | squall |
CREATE TABLE table_name_99 (
drawn VARCHAR,
tries_for VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- How many resulted in draws with 34 tries for?
| SELECT drawn FROM table_name_99 WHERE tries_for = "34" | sql_create_context |
CREATE TABLE table_64850 (
"Player" text,
"Country" text,
"Points" real,
"Events" real,
"Reset Points" real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which player competed in 12 events?
| SELECT "Player" FROM table_64850 WHERE "Events" = '12' | wikisql |
CREATE TABLE table_17139 (
"Player" text,
"No.(s)" text,
"Height in Ft." text,
"Position" text,
"Years for Rockets" text,
"School/Club Team/Country" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the position of the player that came from... | SELECT "Position" FROM table_17139 WHERE "School/Club Team/Country" = 'Purdue' | wikisql |
CREATE TABLE lab (
subject_id text,
hadm_id text,
itemid text,
charttime text,
flag text,
value_unit text,
label text,
fluid text
)
CREATE TABLE diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE demographic (... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.age < "80" AND prescriptions.formulary_drug_cd = "TACR5SM" | mimicsql_data |
CREATE TABLE table_16815824_1 (
round2 VARCHAR,
team VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the score for round 2 for team Toshiba?
| SELECT COUNT(round2) FROM table_16815824_1 WHERE team = "team Toshiba" | sql_create_context |
CREATE TABLE table_40475 (
"English" text,
"German" text,
"Dutch" text,
"Icelandic" text,
"Latin" text,
"Greek" text,
"Russian" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What word in German translates into the Icelandic word efja?
| SELECT "German" FROM table_40475 WHERE "Icelandic" = 'efja' | wikisql |
CREATE TABLE diagnosis (
diagnosisid number,
patientunitstayid number,
diagnosisname text,
diagnosistime time,
icd9code text
)
CREATE TABLE patient (
uniquepid text,
patienthealthsystemstayid number,
patientunitstayid number,
gender text,
age text,
ethnicity text,
hospit... | SELECT COUNT(*) > 0 FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '006-47576')) AND medication.drugname = 'sodium chloride 0.9% 500 ml lvp' A... | eicu |
CREATE TABLE lab (
subject_id text,
hadm_id text,
itemid text,
charttime text,
flag text,
value_unit text,
label text,
fluid text
)
CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob text,
gender text,
... | SELECT demographic.marital_status, demographic.dob FROM demographic WHERE demographic.name = "Jerry Deberry" | mimicsql_data |
CREATE TABLE table_name_38 (
home VARCHAR,
attendance VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What home team has an n/a attendance?
| SELECT home FROM table_name_38 WHERE attendance = "n/a" | sql_create_context |
CREATE TABLE table_33868 (
"Rank" text,
"Player" text,
"Goals" text,
"Assists" text,
"Points" text,
"Years" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- How many goals were scored when 158 points were collected?
| SELECT "Goals" FROM table_33868 WHERE "Points" = '158' | wikisql |
CREATE TABLE table_31912 (
"Name" text,
"Investigation" text,
"Route of administration" text,
"In-vitro / in-vivo" text,
"Imaging / non-imaging" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Tell me the name for Investigation of thrombus imaging an... | SELECT "Name" FROM table_31912 WHERE "Route of administration" = 'iv' AND "Investigation" = 'thrombus imaging' | wikisql |
CREATE TABLE table_name_42 (
venue VARCHAR,
away_team VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What venue was the game played in when the away team was fitzroy?
| SELECT venue FROM table_name_42 WHERE away_team = "fitzroy" | sql_create_context |
CREATE TABLE table_10629 (
"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.
-- Which away team scored 11.9 (75)?
| SELECT "Away team" FROM table_10629 WHERE "Away team score" = '11.9 (75)' | wikisql |
CREATE TABLE cost (
row_id number,
subject_id number,
hadm_id number,
event_type text,
event_id number,
chargetime time,
cost number
)
CREATE TABLE admissions (
row_id number,
subject_id number,
hadm_id number,
admittime time,
dischtime time,
admission_type text,
... | SELECT t1.startdate FROM (SELECT admissions.subject_id, prescriptions.startdate FROM prescriptions JOIN admissions ON prescriptions.hadm_id = admissions.hadm_id WHERE prescriptions.drug = 'senna' AND admissions.subject_id = 5866 AND DATETIME(prescriptions.startdate) <= DATETIME(CURRENT_TIME(), '-19 month')) AS t1 JOIN ... | mimic_iii |
CREATE TABLE table_76878 (
"Name" text,
"Built" text,
"Listed" text,
"Location" text,
"County" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What bridge in Sheridan county was built in 1915?
| SELECT "Name" FROM table_76878 WHERE "County" = 'sheridan' AND "Built" = '1915' | wikisql |
CREATE TABLE table_29443 (
"Episode" text,
"Date" text,
"Official ITV rating (millions)" text,
"Weekly rank" real,
"Share (%)" text,
"Official ITV HD rating (millions)" text,
"Total ITV viewers (millions)" text
)
-- Using valid SQLite, answer the following questions for the tables provided... | SELECT "Total ITV viewers (millions)" FROM table_29443 WHERE "Official ITV rating (millions)" = '10.24' | wikisql |
CREATE TABLE employees (
first_name VARCHAR,
last_name VARCHAR,
hire_date VARCHAR,
department_id VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- display the employee name ( first name and last name ) and hire date for all employees in the same departm... | SELECT first_name, last_name, hire_date FROM employees WHERE department_id = (SELECT department_id FROM employees WHERE first_name = "Clara") AND first_name <> "Clara" | sql_create_context |
CREATE TABLE table_14609295_4 (
postseason VARCHAR,
overall VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- How far into the postseason did the Rams go when their record was 29-7?
| SELECT postseason FROM table_14609295_4 WHERE overall = "29-7" | sql_create_context |
CREATE TABLE table_19908651_3 (
fastest_lap VARCHAR,
pole_position VARCHAR,
winning_driver VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Who did the fastest lap in the race won by Paul Tracy, with Emerson Fittipaldi at the pole position?
| SELECT fastest_lap FROM table_19908651_3 WHERE pole_position = "Emerson Fittipaldi" AND winning_driver = "Paul Tracy" | sql_create_context |
CREATE TABLE table_65230 (
"Attendance" real,
"Round" text,
"Date" text,
"Home" text,
"Score" text,
"Away" text,
"Venue" text,
"Weekday" text,
"Time of Day" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What round was the match at W... | SELECT "Round" FROM table_65230 WHERE "Venue" = 'westpac stadium' AND "Away" = 'newcastle jets' | wikisql |
CREATE TABLE hz_info (
KH text,
KLX number,
YLJGDM text,
RYBH text
)
CREATE TABLE zyjzjlb (
YLJGDM text,
JZLSH text,
MZJZLSH text,
KH text,
KLX number,
HZXM text,
WDBZ number,
RYDJSJ time,
RYTJDM number,
RYTJMC text,
JZKSDM text,
JZKSMC text,
RZBQDM t... | (SELECT jybgb.BGDH FROM person_info JOIN hz_info JOIN mzjzjlb JOIN jybgb 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 AND mzjzjlb.YLJGDM = jybgb.YLJGDM_MZJZJLB AND mzjzjlb.JZLSH = jybgb.JZLSH_MZJZJLB WHERE person_info.XM = '任凌霜' AND NOT... | css |
CREATE TABLE diagnosis (
diagnosisid number,
patientunitstayid number,
diagnosisname text,
diagnosistime time,
icd9code text
)
CREATE TABLE intakeoutput (
intakeoutputid number,
patientunitstayid number,
cellpath text,
celllabel text,
cellvaluenumeric number,
intakeoutputtim... | SELECT COUNT(DISTINCT patient.uniquepid) FROM patient WHERE patient.patientunitstayid IN (SELECT medication.patientunitstayid FROM medication WHERE medication.drugname = 'roxicodone' AND STRFTIME('%y', medication.drugstarttime) >= '2102') | eicu |
CREATE TABLE table_18119 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" real,
"Results" text,
"Candidates" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- what is the party when candidates is jim demint (r) 80%?
| SELECT "Party" FROM table_18119 WHERE "Candidates" = 'Jim DeMint (R) 80%' | wikisql |
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 COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.age < "50" AND lab."CATEGORY" = "Chemistry" | mimicsql_data |
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 SUM(upvote) AS totup, SUM(downvote) AS totdown, SUM(upvote) * 5 - SUM(downvote) * 2 AS "score" FROM (SELECT p.Id, SUM(CASE WHEN v.VoteTypeId = 2 THEN 1 ELSE 0 END) AS upvote, SUM(CASE WHEN v.VoteTypeId = 3 THEN 1 ELSE 0 END) AS downvote FROM Posts AS p INNER JOIN PostTags AS pt ON pt.PostId = p.Id INNER JOIN Tag... | sede |
CREATE TABLE table_18481791_3 (
no_in_season INTEGER,
directed_by VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- How many seasons were directed by Bryan Spicer?
| SELECT MIN(no_in_season) FROM table_18481791_3 WHERE directed_by = "Bryan Spicer" | 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 COUNT(*) FROM t_kc21 WHERE MED_SER_ORG_NO = '6798056' AND IN_HOSP_DATE BETWEEN '2006-02-01' AND '2011-02-17' AND (REMOTE_SETTLE_FLG = '异地1' OR REMOTE_SETTLE_FLG = '异地2') | css |
CREATE TABLE table_23944006_4 (
outcome VARCHAR,
championship VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Name the outcome for zurich
| SELECT outcome FROM table_23944006_4 WHERE championship = "Zurich" | 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 jybgb.BGDH FROM person_info JOIN hz_info JOIN zzmzjzjlb JOIN jybgb 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 AND zzmzjzjlb.YLJGDM = jybgb.YLJGDM_MZJZJLB AND zzmzjzjlb.JZLSH = jybgb.JZLSH_MZJZJLB WHERE person_info.XM = '何... | css |
CREATE TABLE table_29888 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What a... | SELECT "High rebounds" FROM table_29888 WHERE "High points" = 'Jamal Crawford (20)' | wikisql |
CREATE TABLE table_67592 (
"Coach" text,
"Team" text,
"Wins" real,
"Loss" real,
"PCT." real,
"PTS." real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the number of losses that coach John Kowalski has with a PTS smaller than 9?
| SELECT COUNT("Loss") FROM table_67592 WHERE "Coach" = 'john kowalski' AND "PTS." < '9' | wikisql |
CREATE TABLE PostsWithDeleted (
Id number,
PostTypeId number,
AcceptedAnswerId number,
ParentId number,
CreationDate time,
DeletionDate time,
Score number,
ViewCount number,
Body text,
OwnerUserId number,
OwnerDisplayName text,
LastEditorUserId number,
LastEditorDispl... | SELECT SUM(CASE WHEN up > 0 THEN 1 ELSE 0 END) AS potential, SUM(CASE WHEN up > 0 AND down > 0 THEN 1 ELSE 0 END) AS stuntend, SUM(CASE WHEN up > 0 AND down = 0 THEN 1 ELSE 0 END) AS actual FROM (SELECT MAX(CASE WHEN Score > 0 THEN 1 ELSE 0 END) AS up, MAX(CASE WHEN Score < 1 THEN 1 ELSE 0 END) AS down FROM Posts WHERE... | sede |
CREATE TABLE time_zone (
time_zone_code text,
time_zone_name text,
hours_from_gmt int
)
CREATE TABLE dual_carrier (
main_airline varchar,
low_flight_number int,
high_flight_number int,
dual_airline varchar,
service_name text
)
CREATE TABLE food_service (
meal_code text,
meal_nu... | 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, flight WHERE (((flight.departure_time <= 2200 AND flight.departure_time >= 2000) AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'CLEVELAND' AND fli... | atis |
CREATE TABLE table_name_27 (
player VARCHAR,
nba_team VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What player was drafted for the Detroit Pistons?
| SELECT player FROM table_name_27 WHERE nba_team = "detroit pistons" | sql_create_context |
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 COUNT(*) 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_info.KLX AND person_in... | css |
CREATE TABLE table_name_29 (
year VARCHAR,
report VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- When was a report not held?
| SELECT year FROM table_name_29 WHERE report = "not held" | sql_create_context |
CREATE TABLE flight_fare (
flight_id int,
fare_id int
)
CREATE TABLE days (
days_code varchar,
day_name varchar
)
CREATE TABLE restriction (
restriction_code text,
advance_purchase int,
stopovers text,
saturday_stay_required text,
minimum_stay int,
maximum_stay int,
applica... | SELECT DISTINCT fare.fare_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, fare, fare_basis, flight, flight_fare WHERE CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'DALLAS' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND ... | atis |
CREATE TABLE music_festival (
ID int,
Music_Festival text,
Date_of_ceremony text,
Category text,
Volume int,
Result text
)
CREATE TABLE artist (
Artist_ID int,
Artist text,
Age int,
Famous_Title text,
Famous_Release_date text
)
CREATE TABLE volume (
Volume_ID int,
V... | SELECT Category, COUNT(*) FROM music_festival GROUP BY Category | nvbench |
CREATE TABLE table_79924 (
"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 record where the opponent was @ Orioles and the loss was to Leal (5-4)?
| SELECT "Record" FROM table_79924 WHERE "Opponent" = '@ orioles' AND "Loss" = 'leal (5-4)' | wikisql |
CREATE TABLE table_name_31 (
record VARCHAR,
home VARCHAR,
date VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What record was made in vancouver on December 8?
| SELECT record FROM table_name_31 WHERE home = "vancouver" AND date = "december 8" | sql_create_context |
CREATE TABLE table_name_21 (
name VARCHAR,
best VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Who had the best time of 1:32.269?
| SELECT name FROM table_name_21 WHERE best = "1:32.269" | sql_create_context |
CREATE TABLE microlab (
microlabid number,
patientunitstayid number,
culturesite text,
organism text,
culturetakentime time
)
CREATE TABLE cost (
costid number,
uniquepid text,
patienthealthsystemstayid number,
eventtype text,
eventid number,
chargetime time,
cost number... | SELECT lab.labresulttime FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '002-52932' AND NOT patient.hospitaldischargetime IS NULL ORDER BY patient.hospitala... | eicu |
CREATE TABLE table_name_79 (
season VARCHAR,
top_goalscorer VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- In what season was Sch dlich the top goalscorer?
| SELECT season FROM table_name_79 WHERE top_goalscorer = "schädlich" | sql_create_context |
CREATE TABLE table_203_837 (
id number,
"rank" number,
"name" text,
"height\nft / m" text,
"floors" number,
"year" number,
"notes" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- what number of floors does the leveque tower have ?
| SELECT "floors" FROM table_203_837 WHERE "name" = 'leveque tower' | squall |
CREATE TABLE table_name_3 (
second_member VARCHAR,
first_member VARCHAR,
second_party VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Who is the second member with first member Sir Rowland Hill, BT, and a conservative second party?
| SELECT second_member FROM table_name_3 WHERE first_member = "sir rowland hill, bt" AND second_party = "conservative" | sql_create_context |
CREATE TABLE CloseAsOffTopicReasonTypes (
Id number,
IsUniversal boolean,
InputTitle text,
MarkdownInputGuidance text,
MarkdownPostOwnerGuidance text,
MarkdownPrivilegedUserGuidance text,
MarkdownConcensusDescription text,
CreationDate time,
CreationModeratorId number,
ApprovalDa... | SELECT COUNT(*) AS Edits4Badges FROM (SELECT CAST(CreationDate AS DATETIME) AS foo, PostId FROM PostHistory AS ph WHERE PostHistoryTypeId IN (4, 5) AND PostId NOT IN (SELECT p.Id FROM Posts AS p WHERE p.OwnerUserId = ph.UserId) AND UserId = @userid GROUP BY CAST(CreationDate AS DATETIME), PostId) AS bar | sede |
CREATE TABLE table_name_97 (
runner_s__up VARCHAR,
winning_score VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Who's the Runner(s)-up with a Winning score of 19 (71-63-63-64=261)?
| SELECT runner_s__up FROM table_name_97 WHERE winning_score = −19(71 - 63 - 63 - 64 = 261) | sql_create_context |
CREATE TABLE table_2503102_1 (
engine VARCHAR,
car_sponsor_s_ VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What engine does the Fuzzy's Ultra Premium Vodka sponsored car use?
| SELECT engine FROM table_2503102_1 WHERE car_sponsor_s_ = "Fuzzy's Ultra Premium Vodka" | sql_create_context |
CREATE TABLE diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob text,
gender text,
language text,
religion text,
... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.days_stay > "6" AND prescriptions.route = "IVPCA" | mimicsql_data |
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 COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.gender = "F" AND diagnoses.long_title = "Coronary atherosclerosis of autologous vein bypass graft" | mimicsql_data |
CREATE TABLE STUDENT (
LName VARCHAR,
PRESIDENT_Vote VARCHAR,
Advisor VARCHAR
)
CREATE TABLE VOTING_RECORD (
Id VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Find the distinct last names of all the students who have president votes and whose adviso... | SELECT DISTINCT T1.LName FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = PRESIDENT_Vote INTERSECT SELECT DISTINCT LName FROM STUDENT WHERE Advisor = "8741" | sql_create_context |
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 jyjgzbb (
JYZBLSH text,
YLJGD... | (SELECT jyjgzbb.YQBH, jyjgzbb.YQMC FROM hz_info JOIN mzjzjlb JOIN jybgb JOIN jyjgzbb ON hz_info.YLJGDM = mzjzjlb.YLJGDM AND hz_info.KH = mzjzjlb.KH AND hz_info.KLX = mzjzjlb.KLX AND mzjzjlb.YLJGDM = jybgb.YLJGDM_MZJZJLB AND mzjzjlb.JZLSH = jybgb.JZLSH_MZJZJLB AND jybgb.YLJGDM = jyjgzbb.YLJGDM AND jybgb.BGDH = jyjgzbb.B... | css |
CREATE TABLE customer (
customerid number,
firstname text,
lastname text,
company text,
address text,
city text,
state text,
country text,
postalcode text,
phone text,
fax text,
email text,
supportrepid number
)
CREATE TABLE invoiceline (
invoicelineid number,
... | SELECT COUNT(*) FROM artist WHERE NOT artistid IN (SELECT artistid FROM album) | spider |
CREATE TABLE SuggestedEditVotes (
Id number,
SuggestedEditId number,
UserId number,
VoteTypeId number,
CreationDate time,
TargetUserId number,
TargetRepChange number
)
CREATE TABLE PostFeedback (
Id number,
PostId number,
IsAnonymous boolean,
VoteTypeId number,
CreationD... | SELECT t.TagName, t.Count, p.Id AS "wiki_post_id", 'https://stackoverflow.com/tags/' + t.TagName + '/info' AS "link_to_tag_info" FROM Tags AS t JOIN Posts AS p ON p.Id = t.WikiPostId AND LOWER(p.Body) LIKE '%' + LOWER(@text) + '%' ORDER BY t.Count DESC | sede |
CREATE TABLE Manufacturers (
Code INTEGER,
Name VARCHAR(255),
Headquarter VARCHAR(255),
Founder VARCHAR(255),
Revenue REAL
)
CREATE TABLE Products (
Code INTEGER,
Name VARCHAR(255),
Price DECIMAL,
Manufacturer INTEGER
)
-- Using valid SQLite, answer the following questions for the... | SELECT T2.Founder, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T2.Founder ORDER BY T1.Code DESC | nvbench |
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 diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
C... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.gender = "M" AND demographic.diagnosis = "PITUITARY BLEED" | mimicsql_data |
CREATE TABLE table_name_32 (
points VARCHAR,
goals VARCHAR,
games VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- How many points were scored by the player with 79 goals and who played 38 games?
| SELECT points FROM table_name_32 WHERE goals = "79" AND games = "38" | sql_create_context |
CREATE TABLE table_name_60 (
margin_of_victory VARCHAR,
winning_score VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What was the margin of victory in the tournament with a winning score of 3 (74-68-72-71=285)?
| SELECT margin_of_victory FROM table_name_60 WHERE winning_score = −3(74 - 68 - 72 - 71 = 285) | sql_create_context |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.