context stringlengths 11 9.12k | question stringlengths 0 1.06k | SQL stringlengths 2 4.44k | source stringclasses 28
values |
|---|---|---|---|
CREATE TABLE table_62999 (
"Pick" real,
"Team" text,
"Player" text,
"Position" text,
"College" text
) | Which college did the player picked larger than 130 by the New York Jets go to? | SELECT "College" FROM table_62999 WHERE "Pick" > '130' AND "Team" = 'new york jets' | wikisql |
CREATE TABLE table_20573232_1 (
nader_percentage VARCHAR,
obama_percentage VARCHAR
) | What is Nader's percentage when Obama is 44.6%? | SELECT nader_percentage FROM table_20573232_1 WHERE obama_percentage = "44.6%" | sql_create_context |
CREATE TABLE table_name_23 (
ties VARCHAR,
goals_against INTEGER
) | What are the number of Ties for games with Goals Against smaller than 33? | SELECT ties FROM table_name_23 WHERE goals_against < 33 | sql_create_context |
CREATE TABLE table_30353 (
"Late Old English (Anglian)" text,
"Early Middle English" text,
"Late Middle English" text,
"Early Modern English" text,
"Modern English" text,
"Example" text
) | What is the modern English phonology used in the example weg > 'way'; regn > 'rain'? | SELECT "Modern English" FROM table_30353 WHERE "Example" = 'weg > "way"; regn > "rain' | wikisql |
CREATE TABLE locations (
location_id number,
street_address text,
postal_code text,
city text,
state_province text,
country_id text
)
CREATE TABLE employees (
employee_id number,
first_name text,
last_name text,
email text,
phone_number text,
hire_date time,
job_id t... | What is the average salary for each job title? | SELECT job_title, AVG(salary) FROM employees AS T1 JOIN jobs AS T2 ON T1.job_id = T2.job_id GROUP BY T2.job_title | spider |
CREATE TABLE table_261927_2 (
institution VARCHAR,
primary_conference VARCHAR
) | Which institutions primary conference is merged into the university of Massachusetts boston? | SELECT institution FROM table_261927_2 WHERE primary_conference = "Merged into the University of Massachusetts Boston" | sql_create_context |
CREATE TABLE table_203_279 (
id number,
"interferometer and observing mode" text,
"waveband" text,
"limiting magnitude" number,
"minimum baseline (m)\n(un-projected)" number,
"maximum baseline (m)" number,
"approx. no. visibility measurements per year\n(measurements per night x nights used p... | what 's the total limiting matitude of coast visible and coast infrared ? | SELECT SUM("limiting magnitude") FROM table_203_279 WHERE "interferometer and observing mode" IN ('coast visible', 'coast infrared') | squall |
CREATE TABLE Roles (
Role_Code CHAR(15),
Role_Name VARCHAR(255),
Role_Description VARCHAR(255)
)
CREATE TABLE Documents_to_be_Destroyed (
Document_ID INTEGER,
Destruction_Authorised_by_Employee_ID INTEGER,
Destroyed_by_Employee_ID INTEGER,
Planned_Destruction_Date DATETIME,
Actual_Destr... | Show the number of documents in different starting date and group by starting date with a line chart. | SELECT Date_in_Location_From, COUNT(Date_in_Location_From) FROM Document_Locations GROUP BY Date_in_Location_From | nvbench |
CREATE TABLE state (
state_code text,
state_name text,
country_name text
)
CREATE TABLE code_description (
code varchar,
description text
)
CREATE TABLE airport_service (
city_code varchar,
airport_code varchar,
miles_distant int,
direction varchar,
minutes_distant int
)
CREAT... | get SATURDAY fares from WASHINGTON to MONTREAL | 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, days AS DAYS_0, days AS DAYS_1, fare, fare_basis, flight, flight_fare WHERE (CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'MONTREAL' AND DAYS_1.day_name ... | atis |
CREATE TABLE table_2757 (
"Pos" text,
"##" real,
"Name" text,
"Team" text,
"Lap One" text,
"Lap Two" text,
"Lap Three" text,
"Lap Four" text,
"Total Time" text,
"Avg. Speed" text
) | What is tthe lowest number on team 3g? | SELECT MIN("##") FROM table_2757 WHERE "Team" = 'Team 3G' | wikisql |
CREATE TABLE table_28954 (
"Rd." text,
"Circuit" text,
"City / State" text,
"Date" text,
"Championship" text,
"Challenge" text,
"Production" text
) | What was the location for the date 7 10 october? | SELECT "City / State" FROM table_28954 WHERE "Date" = '7–10 October' | wikisql |
CREATE TABLE icustays (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
first_careunit text,
last_careunit text,
first_wardid number,
last_wardid number,
intime time,
outtime time
)
CREATE TABLE d_icd_diagnoses (
row_id number,
icd9_code text,
sh... | what procedure was last taken to patient 25696 in 2105? | SELECT d_icd_procedures.short_title FROM d_icd_procedures WHERE d_icd_procedures.icd9_code IN (SELECT procedures_icd.icd9_code FROM procedures_icd WHERE procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 25696) AND STRFTIME('%y', procedures_icd.charttime) = '2105' ORDER B... | mimic_iii |
CREATE TABLE table_name_10 (
decile INTEGER,
name VARCHAR
) | What is the lowest decile that Ohau School has? | SELECT MIN(decile) FROM table_name_10 WHERE name = "ohau school" | sql_create_context |
CREATE TABLE table_name_48 (
player VARCHAR,
position VARCHAR,
hometown VARCHAR
) | Which player has a Position of infielder, and a Hometown of atlanta, ga? | SELECT player FROM table_name_48 WHERE position = "infielder" AND hometown = "atlanta, ga" | sql_create_context |
CREATE TABLE table_33647 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) | What was the largest crowd where Carlton was the away team? | SELECT MAX("Crowd") FROM table_33647 WHERE "Away team" = 'carlton' | wikisql |
CREATE TABLE table_8405 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text,
"Money ($)" text
) | What country is the player who earned $9,000 from? | SELECT "Country" FROM table_8405 WHERE "Money ($)" = '9,000' | wikisql |
CREATE TABLE equipment_sequence (
aircraft_code_sequence varchar,
aircraft_code varchar
)
CREATE TABLE ground_service (
city_code text,
airport_code text,
transport_type text,
ground_fare int
)
CREATE TABLE restriction (
restriction_code text,
advance_purchase int,
stopovers text,
... | i would like to travel from BOSTON to DENVER | 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 CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'BOSTON' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'DENVER'... | atis |
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... | find the number of american indian/alaska native patients who were born before 2134. | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.ethnicity = "AMERICAN INDIAN/ALASKA NATIVE" AND demographic.dob_year < "2134" | mimicsql_data |
CREATE TABLE chartevents (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
itemid number,
charttime time,
valuenum number,
valueuom text
)
CREATE TABLE labevents (
row_id number,
subject_id number,
hadm_id number,
itemid number,
charttime time,
... | what was patient 30044 first height until 71 months ago? | SELECT chartevents.valuenum 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 = 30044)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'admit ht'... | mimic_iii |
CREATE TABLE table_name_61 (
cuts_made INTEGER,
wins VARCHAR,
top_25 VARCHAR,
top_5 VARCHAR
) | Name the most cuts made with top-25 more than 4 and top 5 of 1 with wins more than 0 | SELECT MAX(cuts_made) FROM table_name_61 WHERE top_25 > 4 AND top_5 = 1 AND wins > 0 | sql_create_context |
CREATE TABLE person_info_hz_info (
RYBH text,
KH number,
KLX number,
YLJGDM number
)
CREATE TABLE hz_info (
KH text,
KLX number,
YLJGDM text
)
CREATE TABLE zyjzjlb (
CYBQDM text,
CYBQMC text,
CYCWH text,
CYKSDM text,
CYKSMC text,
CYSJ time,
CYZTDM number,
HZ... | 19146116这个病人检验的上肢各项指标怎么样 | SELECT * FROM hz_info JOIN mzjzjlb JOIN jybgb JOIN jyjgzbb JOIN person_info_hz_info JOIN person_info 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.... | css |
CREATE TABLE table_203_650 (
id number,
"ceremony" text,
"award" text,
"category" text,
"name" text,
"outcome" text
) | what is the total number of awards that the film won or was nominated for ? | SELECT COUNT(*) FROM table_203_650 | squall |
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
)
... | give the number of patients whose diagnosis long title is malignant neoplasm of descending colon and lab test category is hematology. | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.long_title = "Malignant neoplasm of descending colon" AND lab."CATEGORY" = "Hematology" | mimicsql_data |
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,
... | 从2000年12月26日到2006年5月18日这段时间内,病人74743913所有检验结果指标记录中的检测方法列一下 | SELECT jyjgzbb.JCFF FROM hz_info JOIN txmzjzjlb JOIN jybgb JOIN jyjgzbb ON hz_info.YLJGDM = txmzjzjlb.YLJGDM AND hz_info.KH = txmzjzjlb.KH AND hz_info.KLX = txmzjzjlb.KLX AND txmzjzjlb.YLJGDM = jybgb.YLJGDM_MZJZJLB AND txmzjzjlb.JZLSH = jybgb.JZLSH_MZJZJLB AND jybgb.YLJGDM = jyjgzbb.YLJGDM AND jybgb.BGDH = jyjgzbb.BGDH... | css |
CREATE TABLE table_62754 (
"Rank" real,
"Lane" real,
"Name" text,
"Nationality" text,
"Time" text
) | How many lanes have a rank greater than 8? | SELECT SUM("Lane") FROM table_62754 WHERE "Rank" > '8' | wikisql |
CREATE TABLE table_name_41 (
position VARCHAR,
name VARCHAR
) | What position did kyle mckenzie play? | SELECT position FROM table_name_41 WHERE name = "kyle mckenzie" | sql_create_context |
CREATE TABLE table_name_71 (
touchdowns INTEGER,
field_goals INTEGER
) | Who had the most touchdowns with more than 0 Field goals? | SELECT MAX(touchdowns) FROM table_name_71 WHERE field_goals > 0 | sql_create_context |
CREATE TABLE intakeoutput (
intakeoutputid number,
patientunitstayid number,
cellpath text,
celllabel text,
cellvaluenumeric number,
intakeoutputtime time
)
CREATE TABLE vitalperiodic (
vitalperiodicid number,
patientunitstayid number,
temperature number,
sao2 number,
heartr... | count the number of patients who were diagnosed with hyperkalemia - due to excess intake. | SELECT COUNT(DISTINCT patient.uniquepid) FROM patient WHERE patient.patientunitstayid IN (SELECT diagnosis.patientunitstayid FROM diagnosis WHERE diagnosis.diagnosisname = 'hyperkalemia - due to excess intake') | eicu |
CREATE TABLE table_53802 (
"Nation" text,
"Gold" text,
"Silver" text,
"Bronze" text,
"Total" real
) | How many silvers for finland? | SELECT "Silver" FROM table_53802 WHERE "Nation" = 'finland' | wikisql |
CREATE TABLE table_203_336 (
id number,
"#" number,
"date" text,
"opponent" text,
"score" text,
"win" text,
"loss" text,
"save" text,
"attendance" number,
"record" text
) | what was the difference in attendance between july 7 and july 8 ? | SELECT ABS((SELECT "attendance" FROM table_203_336 WHERE "date" = 'july 7') - (SELECT "attendance" FROM table_203_336 WHERE "date" = 'july 8')) | squall |
CREATE TABLE table_19417244_2 (
directed_by VARCHAR,
us_viewers__millions_ VARCHAR
) | who directed the episode that have 14.59 million viewers | SELECT directed_by FROM table_19417244_2 WHERE us_viewers__millions_ = "14.59" | 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... | 根据不同的出院诊断疾病编码和科室编码,列出所有医疗就诊记录在医院5248115中患者平均是多大年龄? | SELECT gwyjzb.MED_ORG_DEPT_CD, gwyjzb.OUT_DIAG_DIS_CD, AVG(gwyjzb.PERSON_AGE) FROM gwyjzb WHERE gwyjzb.MED_SER_ORG_NO = '5248115' GROUP BY gwyjzb.MED_ORG_DEPT_CD, gwyjzb.OUT_DIAG_DIS_CD UNION SELECT fgwyjzb.MED_ORG_DEPT_CD, fgwyjzb.OUT_DIAG_DIS_CD, AVG(fgwyjzb.PERSON_AGE) FROM fgwyjzb WHERE fgwyjzb.MED_SER_ORG_NO = '52... | css |
CREATE TABLE table_1708050_3 (
wins INTEGER,
position VARCHAR
) | Name the most wins where position is 16th | SELECT MAX(wins) FROM table_1708050_3 WHERE position = "16th" | sql_create_context |
CREATE TABLE table_47344 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"Location" text,
"Record" text
) | On what date did they play in Boston Garden with a record of 22-4? | SELECT "Date" FROM table_47344 WHERE "Location" = 'boston garden' AND "Record" = '22-4' | wikisql |
CREATE TABLE table_45166 (
"Season" real,
"Winner" text,
"Team" text,
"Goals" text,
"Assists" text,
"Points" text
) | How many points when Bill Benson was the winner? | SELECT "Points" FROM table_45166 WHERE "Winner" = 'bill benson' | wikisql |
CREATE TABLE table_12842068_1 (
submitting_country VARCHAR,
film_title_used_in_nomination VARCHAR
) | What country submitted the movie the orphanage? | SELECT submitting_country FROM table_12842068_1 WHERE film_title_used_in_nomination = "The Orphanage" | sql_create_context |
CREATE TABLE table_12218 (
"Place" text,
"Player" text,
"Country" text,
"Score" real,
"To par" text
) | What is the lowest score that has t10 as the place, with Ireland as the country? | SELECT MIN("Score") FROM table_12218 WHERE "Place" = 't10' AND "Country" = 'ireland' | wikisql |
CREATE TABLE table_34263 (
"Name" text,
"Council Seat" text,
"Formed" real,
"Population (2010)" real,
"Area" text,
"Website" text
) | What is the name of the metropolitan that has a population larger than 35,082 and formed after 1897? | SELECT "Name" FROM table_34263 WHERE "Population (2010)" > '35,082' AND "Formed" > '1897' | wikisql |
CREATE TABLE table_name_74 (
position VARCHAR,
player VARCHAR,
goals VARCHAR,
points VARCHAR
) | Mike Forshaw had 0 goals and 28 points. What is his position? | SELECT position FROM table_name_74 WHERE goals = 0 AND points = 28 AND player = "mike forshaw" | sql_create_context |
CREATE TABLE table_name_39 (
home_team VARCHAR,
venue VARCHAR
) | Which team plays at Lake Oval? | SELECT home_team FROM table_name_39 WHERE venue = "lake oval" | sql_create_context |
CREATE TABLE table_203_211 (
id number,
"pos." number,
"time" text,
"athlete" text,
"country" text,
"venue" text,
"date" text
) | how many athletes were faster than 12.40 seconds ? | SELECT COUNT("athlete") FROM table_203_211 WHERE "time" < 12.40 | squall |
CREATE TABLE icustays (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
first_careunit text,
last_careunit text,
first_wardid number,
last_wardid number,
intime time,
outtime time
)
CREATE TABLE admissions (
row_id number,
subject_id number,
hadm... | what was the first ph laboratory test time patient 31482 had during this month? | SELECT labevents.charttime FROM labevents WHERE labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'ph') AND labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 31482) AND DATETIME(labevents.charttime, 'start of month') = DATETIME(CURRENT_TIM... | mimic_iii |
CREATE TABLE table_name_97 (
area_km_2 INTEGER,
census_ranking VARCHAR
) | What is the area of the community with a census ranking of 636 of 5,008? | SELECT AVG(area_km_2) FROM table_name_97 WHERE census_ranking = "636 of 5,008" | sql_create_context |
CREATE TABLE table_11975 (
"Date" text,
"Tournament" text,
"Winning Score" text,
"Margin of Victory" text,
"Runner-up" text
) | Who was the runner up in the konica san jose classic Tournament? | SELECT "Runner-up" FROM table_11975 WHERE "Tournament" = 'konica san jose classic' | wikisql |
CREATE TABLE requirement (
requirement_id int,
requirement varchar,
college varchar
)
CREATE TABLE student (
student_id int,
lastname varchar,
firstname varchar,
program_id int,
declare_major varchar,
total_credit int,
total_gpa float,
entered_as varchar,
admit_term int,... | Is WRITING 303 available to me in Winter 2011 ? | SELECT COUNT(*) > 0 FROM (SELECT course_id FROM student_record WHERE earn_credit = 'Y' AND student_id = 1) AS DERIVED_TABLEalias0, course AS COURSEalias0, course_offering AS COURSE_OFFERINGalias0, semester AS SEMESTERalias0 WHERE COURSEalias0.course_id = COURSE_OFFERINGalias0.course_id AND NOT COURSEalias0.course_id IN... | advising |
CREATE TABLE table_53530 (
"Pick" real,
"Player" text,
"Country of origin*" text,
"PBA team" text,
"College" text
) | What college has pick 45 | SELECT "College" FROM table_53530 WHERE "Pick" = '45' | wikisql |
CREATE TABLE table_34643 (
"Year" real,
"US Cham. Rank" real,
"US Cham. Spending" text,
"Next Highest Spender" text,
"Next Highest Amount" text
) | Which Year is the highest one that has a Next Highest Spender of aarp, and a US Cham Spending of $39,805,000, and a US Cham Rank larger than 1? | SELECT MAX("Year") FROM table_34643 WHERE "Next Highest Spender" = 'aarp' AND "US Cham. Spending" = '$39,805,000' AND "US Cham. Rank" > '1' | wikisql |
CREATE TABLE treatment (
treatmentid number,
patientunitstayid number,
treatmentname text,
treatmenttime time
)
CREATE TABLE cost (
costid number,
uniquepid text,
patienthealthsystemstayid number,
eventtype text,
eventid number,
chargetime time,
cost number
)
CREATE TABLE l... | how many patients have received sedative agent - propofol after the first insulin during the same hospital visit since 6 years ago? | SELECT COUNT(DISTINCT t1.uniquepid) FROM (SELECT patient.uniquepid, treatment.treatmenttime, patient.patienthealthsystemstayid FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'insulin' AND DATETIME(treatment.treatmenttime) >= DATETIME(CURRENT_TIME()... | eicu |
CREATE TABLE table_name_38 (
races VARCHAR,
points VARCHAR
) | Which races did they accumulate at least 125 points? | SELECT races FROM table_name_38 WHERE points = "125" | 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... | count the number of patients whose discharge location is short term hospital and procedure long title is other endoscopy of small intestine? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.discharge_location = "SHORT TERM HOSPITAL" AND procedures.long_title = "Other endoscopy of small intestine" | mimicsql_data |
CREATE TABLE table_27847088_1 (
viewers__millions_ VARCHAR,
series_no VARCHAR
) | How many were the viewers (in millions) of the series no. 45? | SELECT viewers__millions_ FROM table_27847088_1 WHERE series_no = 45 | sql_create_context |
CREATE TABLE table_name_81 (
Id VARCHAR
) | What is 2009, when 2004 is 2R, and when 1993 is A? | SELECT 2009 FROM table_name_81 WHERE 2004 = "2r" AND 1993 = "a" | sql_create_context |
CREATE TABLE apartment_facilities (
apt_id number,
facility_code text
)
CREATE TABLE apartments (
apt_id number,
building_id number,
apt_type_code text,
apt_number text,
bathroom_count number,
bedroom_count number,
room_count text
)
CREATE TABLE guests (
guest_id number,
ge... | What are the first names and last names of all the guests? | SELECT guest_first_name, guest_last_name FROM guests | spider |
CREATE TABLE aircraft (
Aircraft_ID int,
Order_Year int,
Manufacturer text,
Model text,
Fleet_Series text,
Powertrain text,
Fuel_Propulsion text
)
CREATE TABLE pilot_record (
Record_ID int,
Pilot_ID int,
Aircraft_ID int,
Date text
)
CREATE TABLE pilot (
Pilot_ID int,
... | Please compare the frequency of the position of the pilots using a bar chart. | SELECT Position, COUNT(Position) FROM pilot GROUP BY Position | nvbench |
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... | 这个编号是32023982的患者交的医疗费总额不少于3281.11元的医疗记录都多些,在其入院诊断时患的疾病编码和名称分别都是什么? | SELECT t_kc24.t_kc21_IN_DIAG_DIS_CD, t_kc24.t_kc21_IN_DIAG_DIS_NM FROM t_kc24 WHERE t_kc24.t_kc21_PERSON_ID = '32023982' AND t_kc24.MED_CLINIC_ID IN (SELECT t_kc24.MED_CLINIC_ID FROM t_kc24 WHERE t_kc24.MED_AMOUT >= 3281.11) | css |
CREATE TABLE d_icd_procedures (
row_id number,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE labevents (
row_id number,
subject_id number,
hadm_id number,
itemid number,
charttime time,
valuenum number,
valueuom text
)
CREATE TABLE d_labitems (
row_id... | what were the five drugs most frequently prescribed to the male patients aged 40s in the same hospital visit after being diagnosed with pneumonia, organism nos? | SELECT t3.drug FROM (SELECT t2.drug, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, diagnoses_icd.charttime, admissions.hadm_id FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions.hadm_id WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_... | mimic_iii |
CREATE TABLE table_name_84 (
position INTEGER,
difference VARCHAR,
drawn VARCHAR
) | Which Position has a Difference of 5, and a Drawn smaller than 3? | SELECT MIN(position) FROM table_name_84 WHERE difference = "5" AND drawn < 3 | sql_create_context |
CREATE TABLE table_10975034_2 (
player VARCHAR,
college VARCHAR
) | Which player from the 2004 CFL draft attended Wilfrid Laurier? | SELECT player FROM table_10975034_2 WHERE college = "Wilfrid Laurier" | sql_create_context |
CREATE TABLE table_42361 (
"State" text,
"Seats (ACs)" real,
"Date of Counting" text,
"Incumbent" text,
"Election Winner" text
) | What is the smallest number of seats with INC as an election winner and BJP incumbent? | SELECT MIN("Seats (ACs)") FROM table_42361 WHERE "Election Winner" = 'inc' AND "Incumbent" = 'bjp' | wikisql |
CREATE TABLE mission (
Mission_ID int,
Ship_ID int,
Code text,
Launched_Year int,
Location text,
Speed_knots int,
Fate text
)
CREATE TABLE ship (
Ship_ID int,
Name text,
Type text,
Nationality text,
Tonnage int
) | Stack bar chart of the number of type vs Nationality based on type, I want to rank the number of type in asc order. | SELECT Type, COUNT(Type) FROM ship GROUP BY Nationality, Type ORDER BY COUNT(Type) | 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... | what is the number of patients whose ethnicity is white and diagnoses icd9 code is 41512? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.ethnicity = "WHITE" AND diagnoses.icd9_code = "41512" | mimicsql_data |
CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE prescriptions (
subject_id text,
hadm_id... | what is gender and lab test abnormal status of subject id 2110? | SELECT demographic.gender, lab.flag FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.subject_id = "2110" | mimicsql_data |
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 (
... | give me the number of patients whose admission year is less than 2135 and diagnoses icd9 code is 2859? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admityear < "2135" AND diagnoses.icd9_code = "2859" | mimicsql_data |
CREATE TABLE patient (
uniquepid text,
patienthealthsystemstayid number,
patientunitstayid number,
gender text,
age text,
ethnicity text,
hospitalid number,
wardid number,
admissionheight number,
admissionweight number,
dischargeweight number,
hospitaladmittime time,
... | how many patients were prescribed with chlorhexidine gluconate 0.12 % mouth/throat soln multidose? | SELECT COUNT(DISTINCT patient.uniquepid) FROM patient WHERE patient.patientunitstayid IN (SELECT medication.patientunitstayid FROM medication WHERE medication.drugname = 'chlorhexidine gluconate 0.12 % mouth/throat soln multidose') | eicu |
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... | count the number of patients whose age is less than 63 and drug type is base? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.age < "63" AND prescriptions.drug_type = "BASE" | mimicsql_data |
CREATE TABLE table_37702 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" text,
"Result" text
) | When was republican incumbent Joseph McKenna first elected? | SELECT "First elected" FROM table_37702 WHERE "Party" = 'republican' AND "Incumbent" = 'joseph mckenna' | wikisql |
CREATE TABLE table_57970 (
"Episode" real,
"Rating" real,
"Share" real,
"Rating/share (18-49)" text,
"Rank (Timeslot)" real,
"Rank (Night)" real
) | What is the timeslor rank for the episode with larger than 2.9 rating, rating/share of 2.6/8 and rank for the night higher than 5? | SELECT AVG("Rank (Timeslot)") FROM table_57970 WHERE "Rating" > '2.9' AND "Rating/share (18-49)" = '2.6/8' AND "Rank (Night)" > '5' | 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 (... | provide the number of patients whose insurance is medicare and diagnoses short title is idio periph neurpthy nos? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.insurance = "Medicare" AND diagnoses.short_title = "Idio periph neurpthy NOS" | mimicsql_data |
CREATE TABLE table_32222 (
"Res." text,
"Record" text,
"Opponent" text,
"Method" text,
"Event" text,
"Round" real,
"Time" text,
"Location" text
) | What's the lowest round with the opponent John Howard that had a method of Decision (unanimous)? | SELECT MIN("Round") FROM table_32222 WHERE "Method" = 'decision (unanimous)' AND "Opponent" = 'john howard' | 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,
... | 患者51166395425是在什么时间结束的门诊就诊? | SELECT wdmzjzjlb.JZJSSJ FROM wdmzjzjlb WHERE wdmzjzjlb.JZLSH = '51166395425' UNION SELECT bdmzjzjlb.JZJSSJ FROM bdmzjzjlb WHERE bdmzjzjlb.JZLSH = '51166395425' | css |
CREATE TABLE table_59209 (
"Player" text,
"Country" text,
"Year(s) won" text,
"Total" real,
"To par" real
) | What is the total for player karrie webb? | SELECT COUNT("Total") FROM table_59209 WHERE "Player" = 'karrie webb' | wikisql |
CREATE TABLE table_name_12 (
away_team VARCHAR,
home_team VARCHAR
) | Who is the away team that played home team of Perth Wildcats? | SELECT away_team FROM table_name_12 WHERE home_team = "perth wildcats" | sql_create_context |
CREATE TABLE table_62085 (
"Device" text,
"Carrier" text,
"Package Version" text,
"Applications" text,
"Software Platform" text
) | WHAT IS THE PACKAGE VERSION WITH TELUS MOBILITY? | SELECT "Package Version" FROM table_62085 WHERE "Carrier" = 'telus mobility' | wikisql |
CREATE TABLE ReviewRejectionReasons (
Id number,
Name text,
Description text,
PostTypeId number
)
CREATE TABLE Badges (
Id number,
UserId number,
Name text,
Date time,
Class number,
TagBased boolean
)
CREATE TABLE CloseReasonTypes (
Id number,
Name text,
Description... | No of users who have answered a question. | SELECT COUNT(user_posts) FROM (SELECT COUNT(*) AS user_posts FROM Posts WHERE NOT OwnerUserId IS NULL AND PostTypeId = 2 GROUP BY OwnerUserId) AS a | sede |
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... | count the number of patients whose admission location is clinic referral/premature and procedure icd9 code is 45? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admission_location = "CLINIC REFERRAL/PREMATURE" AND procedures.icd9_code = "45" | mimicsql_data |
CREATE TABLE table_9864 (
"Name" text,
"Position" text,
"Height" text,
"Weight" real,
"Year" text,
"Home Town" text
) | What is the total combined weight of players from minnetonka, mn? | SELECT SUM("Weight") FROM table_9864 WHERE "Home Town" = 'minnetonka, mn' | wikisql |
CREATE TABLE medication (
medicationid number,
patientunitstayid number,
drugname text,
dosage text,
routeadmin text,
drugstarttime time,
drugstoptime time
)
CREATE TABLE cost (
costid number,
uniquepid text,
patienthealthsystemstayid number,
eventtype text,
eventid numb... | tell me how much urine catheter patient 015-92657 has produced since 04/16/2104. | SELECT SUM(intakeoutput.cellvaluenumeric) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '015-92657')) AND intakeoutput.celllabel = 'urine... | eicu |
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... | how many patients below 77 years of age have undergone the procedure with short title percu endosc gastrostomy? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.age < "77" AND procedures.short_title = "Percu endosc gastrostomy" | mimicsql_data |
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
... | count the number of patients who have received a microbiological eye test since 2 years ago. | SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE admissions.hadm_id IN (SELECT microbiologyevents.hadm_id FROM microbiologyevents WHERE microbiologyevents.spec_type_desc = 'eye' AND DATETIME(microbiologyevents.charttime) >= DATETIME(CURRENT_TIME(), '-2 year')) | mimic_iii |
CREATE TABLE medication (
medicationid number,
patientunitstayid number,
drugname text,
dosage text,
routeadmin text,
drugstarttime time,
drugstoptime time
)
CREATE TABLE vitalperiodic (
vitalperiodicid number,
patientunitstayid number,
temperature number,
sao2 number,
h... | when was patient 006-227759 first tested at a laboratory until 10/2101? | 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 = '006-227759')) AND STRFTIME('%y-%m', lab.labresulttime) <= '2101-10' ORDER BY lab.la... | eicu |
CREATE TABLE table_55646 (
"Player" text,
"Pos." text,
"From" real,
"School/Country" text,
"Rebs" real,
"Asts" real
) | What is the low rebound total for players from Oklahoma before 1975? | SELECT MIN("Rebs") FROM table_55646 WHERE "School/Country" = 'oklahoma' AND "From" < '1975' | wikisql |
CREATE TABLE suppliers (
supplier_id number,
supplier_name text,
supplier_phone text
)
CREATE TABLE supplier_addresses (
supplier_id number,
address_id number,
date_from time,
date_to time
)
CREATE TABLE customer_orders (
order_id number,
customer_id number,
order_status_code t... | Return the id of the staff whose Staff Department Assignment was earlier than that of any Clerical Staff. | SELECT staff_id FROM staff_department_assignments WHERE date_assigned_to < (SELECT MAX(date_assigned_to) FROM staff_department_assignments WHERE job_title_code = 'Clerical Staff') | spider |
CREATE TABLE table_name_24 (
overall INTEGER,
pick VARCHAR,
college VARCHAR
) | How many overalls have a pick greater than 19, with florida as the college? | SELECT SUM(overall) FROM table_name_24 WHERE pick > 19 AND college = "florida" | sql_create_context |
CREATE TABLE d_items (
row_id number,
itemid number,
label text,
linksto text
)
CREATE TABLE patients (
row_id number,
subject_id number,
gender text,
dob time,
dod time
)
CREATE TABLE transfers (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
... | for the last time, when they came to the hospital first time how much etomidate was prescribed to patient 18677? | SELECT prescriptions.dose_val_rx FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 18677 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime LIMIT 1) AND prescriptions.drug = 'etomidate' ORDER BY prescriptions.startdate DESC LIMIT 1 | mimic_iii |
CREATE TABLE table_name_80 (
year VARCHAR,
actor VARCHAR,
film VARCHAR,
category VARCHAR
) | What year was Jennifer Tilly's Film of Bullets Over Broadway up in the best supporting actress category? | SELECT year FROM table_name_80 WHERE film = "bullets over broadway" AND category = "best supporting actress" AND actor = "jennifer tilly" | sql_create_context |
CREATE TABLE table_204_292 (
id number,
"no." number,
"name" text,
"class" number,
"games" number,
"minutes" number,
"points" number,
"2 points\n(made/attempts)" text,
"2 points\n(%)" number,
"3 points\n(made/attempts)" text,
"3 points\n(%)" number,
"free throws\n(made/at... | next to merritt , who was the top scorer ? | SELECT "name" FROM table_204_292 WHERE "name" <> 'amber merritt' ORDER BY "points" DESC LIMIT 1 | squall |
CREATE TABLE table_204_612 (
id number,
"draft order\nround" number,
"draft order\nchoice" number,
"player" text,
"position" text,
"height" text,
"weight" text,
"college" text
) | who was the tallest player drafted ? | SELECT "player" FROM table_204_612 ORDER BY "height" DESC LIMIT 1 | squall |
CREATE TABLE ReviewTaskResultTypes (
Id number,
Name text,
Description text
)
CREATE TABLE CloseAsOffTopicReasonTypes (
Id number,
IsUniversal boolean,
InputTitle text,
MarkdownInputGuidance text,
MarkdownPostOwnerGuidance text,
MarkdownPrivilegedUserGuidance text,
MarkdownConce... | When did I get votes on my post. | SELECT CreationDate, Name, COUNT(Votes.Id) FROM Votes INNER JOIN VoteTypes ON VoteTypes.Id = Votes.VoteTypeId WHERE PostId = '##postid:int##' GROUP BY CreationDate, Name ORDER BY CreationDate, Name | sede |
CREATE TABLE jobs (
job_id int,
job_title varchar,
description varchar,
requirement varchar,
city varchar,
state varchar,
country varchar,
zip int
)
CREATE TABLE program (
program_id int,
name varchar,
college varchar,
introduction varchar
)
CREATE TABLE requirement (
... | When is the next time the Pharmacotherapeutics will be offered ? | SELECT DISTINCT semester.semester, semester.year FROM semester INNER JOIN course_offering ON semester.semester_id = course_offering.semester INNER JOIN course ON course.course_id = course_offering.course_id WHERE course.name LIKE '%Pharmacotherapeutics%' AND semester.semester_id > (SELECT SEMESTERalias1.semester_id FRO... | advising |
CREATE TABLE table_name_55 (
pick VARCHAR,
college VARCHAR,
player VARCHAR
) | What is Far Eastern College Johnny Abarrientos' Pick number? | SELECT pick FROM table_name_55 WHERE college = "far eastern" AND player = "johnny abarrientos" | sql_create_context |
CREATE TABLE bdmzjzjlb (
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,
MZZYZDZ... | 自2001.10.27起,至2007.12.2止,共有多少医务人员为患者41857706检测指标303435,想知道他们的工号及姓名 | SELECT jyjgzbb.JCRGH, jyjgzbb.JCRXM FROM hz_info JOIN wdmzjzjlb JOIN jybgb JOIN jyjgzbb ON hz_info.YLJGDM = wdmzjzjlb.YLJGDM AND hz_info.KH = wdmzjzjlb.KH AND hz_info.KLX = wdmzjzjlb.KLX AND wdmzjzjlb.YLJGDM = jybgb.YLJGDM_MZJZJLB AND wdmzjzjlb.JZLSH = jybgb.JZLSH_MZJZJLB AND jybgb.YLJGDM = jyjgzbb.YLJGDM AND jybgb.BGD... | css |
CREATE TABLE table_2668416_18 (
party VARCHAR,
incumbent VARCHAR
) | In how many different parts was the incumbent Abraham B. Venable? | SELECT COUNT(party) FROM table_2668416_18 WHERE incumbent = "Abraham B. Venable" | sql_create_context |
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 (
... | Provide the number of patients having lab test fluid as pleural that were diagnosed with adv eff benzodiaz tranq. | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.short_title = "Adv eff benzodiaz tranq" AND lab.fluid = "Pleural" | mimicsql_data |
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... | Show me about the distribution of All_Neutral and School_ID in a bar chart, rank in ascending by the x-axis. | SELECT All_Neutral, School_ID FROM basketball_match ORDER BY All_Neutral | nvbench |
CREATE TABLE table_19468 (
"Team" text,
"# appearances" real,
"years (won in bold)" text,
"# wins" real,
"# runner-up" real,
"Most recent final" text
) | What is the number of appearances where the most recent final result is 1999, beat Genk 3-1? | SELECT COUNT("# appearances") FROM table_19468 WHERE "Most recent final" = '1999, beat Genk 3-1' | wikisql |
CREATE TABLE table_name_27 (
visitor VARCHAR,
date VARCHAR
) | Who was the visiting team on April 6? | SELECT visitor FROM table_name_27 WHERE date = "april 6" | sql_create_context |
CREATE TABLE diagnosis (
diagnosisid number,
patientunitstayid number,
diagnosisname text,
diagnosistime time,
icd9code text
)
CREATE TABLE treatment (
treatmentid number,
patientunitstayid number,
treatmentname text,
treatmenttime time
)
CREATE TABLE cost (
costid number,
... | tell me the maximum total cost of a hospital that contains pregnancy since 2104? | 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 diagnosis.patientunitstayid FROM diagnosis WHERE diagnosis.diagnosisname = 'pregnancy')) AND STRFTIME('%y', cost.charget... | eicu |
CREATE TABLE Visits (
Visit_ID INTEGER,
Tourist_Attraction_ID INTEGER,
Tourist_ID INTEGER,
Visit_Date DATETIME,
Visit_Details VARCHAR(40)
)
CREATE TABLE Tourist_Attraction_Features (
Tourist_Attraction_ID INTEGER,
Feature_ID INTEGER
)
CREATE TABLE Royal_Family (
Royal_Family_ID INTEGER... | Show different ways to get to attractions and the number of attractions that can be accessed in the corresponding way. Plot them as bar chart. | SELECT How_to_Get_There, COUNT(*) FROM Tourist_Attractions GROUP BY How_to_Get_There | nvbench |
CREATE TABLE table_17680 (
"Character" text,
"Portrayed by" text,
"Main cast seasons" text,
"Recurring cast seasons" text,
"# of episodes" real
) | What seasons does Nick Lucas appear in? | SELECT "Recurring cast seasons" FROM table_17680 WHERE "Character" = 'Nick Lucas' | wikisql |
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... | How many patients are discharged due to short term hospital and tested with potassium whole blood? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.discharge_location = "SHORT TERM HOSPITAL" AND lab.label = "Potassium, Whole Blood" | mimicsql_data |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.