context stringlengths 11 9.12k | question stringlengths 0 1.06k | SQL stringlengths 2 4.44k | source stringclasses 28
values |
|---|---|---|---|
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... | what is insurance and death status of subject name wayne shelton? | SELECT demographic.insurance, demographic.expire_flag FROM demographic WHERE demographic.name = "Wayne Shelton" | mimicsql_data |
CREATE TABLE event (
Event_ID int,
Date text,
Venue text,
Name text,
Event_Attendance int
)
CREATE TABLE journalist (
journalist_ID int,
Name text,
Nationality text,
Age text,
Years_working int
)
CREATE TABLE news_report (
journalist_ID int,
Event_ID int,
Work_Type ... | Bar graph to show the number of nationality from different nationality, and rank from low to high by the Y. | SELECT Nationality, COUNT(Nationality) FROM journalist GROUP BY Nationality ORDER BY COUNT(Nationality) | nvbench |
CREATE TABLE table_79150 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" real,
"Results" text
) | What was the result of the Oregon 5 District incumbent who was first elected in 1996? | SELECT "Results" FROM table_79150 WHERE "First elected" = '1996' AND "District" = 'oregon 5' | wikisql |
CREATE TABLE table_79852 (
"Rider" text,
"Date" text,
"Place" text,
"Race" text,
"Event" text,
"Machine" text
) | What event was Rob Vine riding? | SELECT "Event" FROM table_79852 WHERE "Rider" = 'rob vine' | wikisql |
CREATE TABLE PostHistory (
Id number,
PostHistoryTypeId number,
PostId number,
RevisionGUID other,
CreationDate time,
UserId number,
UserDisplayName text,
Comment text,
Text text,
ContentLicense text
)
CREATE TABLE CloseReasonTypes (
Id number,
Name text,
Description... | List of Not-Closed Community Wiki Posts. List of Not-Closed Community Wiki Posts
Get all Question and Answer that are Community Wiki but not closed.
Don't list all answers of a Community Wiki Question because they are all Community Wiki anyway. | SELECT PostTypes.Name, Posts.Id AS "post_link", Posts.Score AS Score, Posts.CreationDate FROM Posts INNER JOIN PostTypes ON Posts.PostTypeId = PostTypes.Id LEFT JOIN Posts AS ParentPosts ON Posts.ParentId = ParentPosts.Id WHERE Posts.PostTypeId IN (1, 2) AND NOT (Posts.CommunityOwnedDate IS NULL) AND (ParentPosts.Commu... | sede |
CREATE TABLE table_13018091_1 (
position INTEGER,
club VARCHAR
) | What position did the sheffield eagles finish in? | SELECT MAX(position) FROM table_13018091_1 WHERE club = "Sheffield Eagles" | sql_create_context |
CREATE TABLE aircraft (
aid number(9,0),
name varchar2(30),
distance number(6,0)
)
CREATE TABLE flight (
flno number(4,0),
origin varchar2(20),
destination varchar2(20),
distance number(6,0),
departure_date date,
arrival_date date,
price number(7,2),
aid number(9,0)
)
CREAT... | Show all destinations and the number of flights to each destination Plot them as bar chart, list by the x axis in ascending. | SELECT destination, COUNT(*) FROM flight GROUP BY destination ORDER BY destination | nvbench |
CREATE TABLE intakeoutput (
intakeoutputid number,
patientunitstayid number,
cellpath text,
celllabel text,
cellvaluenumeric number,
intakeoutputtime time
)
CREATE TABLE diagnosis (
diagnosisid number,
patientunitstayid number,
diagnosisname text,
diagnosistime time,
icd9cod... | until 2104 what is the four most commonly taken lab test for patients 60 or above? | SELECT t1.labname FROM (SELECT lab.labname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.age >= 60) AND STRFTIME('%y', lab.labresulttime) <= '2104' GROUP BY lab.labname) AS t1 WHERE t1.c1 <= 4 | eicu |
CREATE TABLE table_203_607 (
id number,
"catalogue number" text,
"artist" text,
"release title" text,
"format" text,
"release date" text
) | which format had the most releases ? | SELECT "format" FROM table_203_607 GROUP BY "format" ORDER BY COUNT("release title") DESC LIMIT 1 | squall |
CREATE TABLE table_name_66 (
place VARCHAR,
to_par VARCHAR,
player VARCHAR
) | What is the place of To par of e when Arron Oberholser was the player ? | SELECT place FROM table_name_66 WHERE to_par = "e" AND player = "arron oberholser" | sql_create_context |
CREATE TABLE locations (
LOCATION_ID decimal(4,0),
STREET_ADDRESS varchar(40),
POSTAL_CODE varchar(12),
CITY varchar(30),
STATE_PROVINCE varchar(25),
COUNTRY_ID varchar(2)
)
CREATE TABLE employees (
EMPLOYEE_ID decimal(6,0),
FIRST_NAME varchar(20),
LAST_NAME varchar(25),
EMAIL v... | For all employees who have the letters D or S in their first name, a bar chart shows the distribution of hire_date and the sum of department_id bin hire_date by weekday, and order y-axis in ascending order. | SELECT HIRE_DATE, SUM(DEPARTMENT_ID) FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' ORDER BY SUM(DEPARTMENT_ID) | nvbench |
CREATE TABLE has_allergy (
stuid number,
allergy text
)
CREATE TABLE allergy_type (
allergy text,
allergytype text
)
CREATE TABLE student (
stuid number,
lname text,
fname text,
age number,
sex text,
major number,
advisor number,
city_code text
) | How many distinct allergies are there? | SELECT COUNT(DISTINCT allergytype) FROM allergy_type | spider |
CREATE TABLE table_24152 (
"Outcome" text,
"Year" real,
"Championship" text,
"Surface" text,
"Partner" text,
"Opponents in the final" text,
"Score in the final" text
) | Who were D rr's opponents in the final on year 1968? | SELECT "Opponents in the final" FROM table_24152 WHERE "Year" = '1968' | wikisql |
CREATE TABLE table_name_85 (
country VARCHAR,
name VARCHAR
) | Which country does the player pele belong to? | SELECT country FROM table_name_85 WHERE name = "pele" | sql_create_context |
CREATE TABLE table_22564 (
"Position" real,
"Team" text,
"Played" real,
"Wins" real,
"Draws P.K. Wins / P.K. Losses" text,
"Losses" real,
"Scored" real,
"Conceded" real,
"Points" real
) | Name the wins for draws pk is 3/0 | SELECT "Wins" FROM table_22564 WHERE "Draws P.K. Wins / P.K. Losses" = '3/0' | wikisql |
CREATE TABLE table_name_58 (
minister VARCHAR,
left_office VARCHAR
) | Who is the mInister who left office during 1960? | SELECT minister FROM table_name_58 WHERE left_office = "1960" | sql_create_context |
CREATE TABLE table_204_981 (
id number,
"ep#" number,
"title" text,
"broadcast date" text,
"written by" text,
"directed by" text
) | how many episodes are there total ? | SELECT COUNT("ep#") FROM table_204_981 | squall |
CREATE TABLE table_name_8 (
against INTEGER,
losses VARCHAR,
draws VARCHAR
) | What is the sum of Against values for teams with 5 losses and 0 draws? | SELECT SUM(against) FROM table_name_8 WHERE losses = 5 AND draws < 0 | sql_create_context |
CREATE TABLE table_name_37 (
role VARCHAR,
year VARCHAR
) | What role was played in 2007? | SELECT role FROM table_name_37 WHERE year = 2007 | sql_create_context |
CREATE TABLE table_name_56 (
attendance VARCHAR,
group_position VARCHAR
) | How many people were in attendance when the group position was 3rd? | SELECT attendance FROM table_name_56 WHERE group_position = "3rd" | sql_create_context |
CREATE TABLE hz_info_mzjzjlb (
JZLSH number,
YLJGDM number,
mzjzjlb_id number
)
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 t... | 41736838这位患者的妊娠相关性血浆蛋白-A指标在08年4月18日至10月22日期间的情况 | SELECT * 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 = jyjgzbb.YLJGDM AND jybgb.BGDH ... | css |
CREATE TABLE table_name_18 (
type VARCHAR,
course VARCHAR
) | What type had a course of Grosseto To Rieti? | SELECT type FROM table_name_18 WHERE course = "grosseto to rieti" | sql_create_context |
CREATE TABLE zyjzjlb (
CYBQDM text,
CYBQMC text,
CYCWH text,
CYKSDM text,
CYKSMC text,
CYSJ time,
CYZTDM number,
HZXM text,
JZKSDM text,
JZKSMC text,
JZLSH text,
KH text,
KLX number,
MZBMLX number,
MZJZLSH text,
MZZDBM text,
MZZDMC text,
MZZYZDZZBM... | 查查检测指标643141数值的平均值以及最值,是针对门诊诊断为疾病I65.176的患者的 | SELECT AVG(jyjgzbb.JCZBJGDL), MIN(jyjgzbb.JCZBJGDL), MAX(jyjgzbb.JCZBJGDL) FROM mzjzjlb JOIN jybgb JOIN jyjgzbb JOIN jybgb_jyjgzbb ON mzjzjlb.YLJGDM = jybgb.YLJGDM_MZJZJLB AND mzjzjlb.JZLSH = jybgb.JZLSH_MZJZJLB AND jybgb.YLJGDM = jybgb_jyjgzbb.YLJGDM AND jybgb.BGDH = jyjgzbb.BGDH AND jybgb_jyjgzbb.JYZBLSH = jyjgzbb.JY... | css |
CREATE TABLE table_49428 (
"Date" text,
"Time" text,
"Home" text,
"Geust" text,
"Result" text
) | What is the home of fc st. gallen (asl) geust? | SELECT "Home" FROM table_49428 WHERE "Geust" = 'fc st. gallen (asl)' | wikisql |
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... | 45700133患者被开出过金额不低于9202.16元的药品在哪几次医疗记录中和医疗就诊编号是多少? | SELECT MED_CLINIC_ID FROM t_kc21 WHERE PERSON_ID = '45700133' AND MED_CLINIC_ID IN (SELECT MED_CLINIC_ID FROM t_kc22 WHERE AMOUNT >= 9202.16) | css |
CREATE TABLE people_addresses (
person_address_id number,
person_id number,
address_id number,
date_from time,
date_to time
)
CREATE TABLE candidate_assessments (
candidate_id number,
qualification text,
assessment_date time,
asessment_outcome_code text
)
CREATE TABLE people (
... | What are the ids of the courses that are registered or attended by the student whose id is 121? | SELECT course_id FROM student_course_registrations WHERE student_id = 121 UNION SELECT course_id FROM student_course_attendance WHERE student_id = 121 | spider |
CREATE TABLE table_name_14 (
build_date VARCHAR,
prr_class VARCHAR,
builder’s_model VARCHAR
) | When was the build date for ff20 PRR class and erie built builder's model? | SELECT build_date FROM table_name_14 WHERE prr_class = "ff20" AND builder’s_model = "erie built" | sql_create_context |
CREATE TABLE countries (
COUNTRY_ID varchar(2),
COUNTRY_NAME varchar(40),
REGION_ID decimal(10,0)
)
CREATE TABLE locations (
LOCATION_ID decimal(4,0),
STREET_ADDRESS varchar(40),
POSTAL_CODE varchar(12),
CITY varchar(30),
STATE_PROVINCE varchar(25),
COUNTRY_ID varchar(2)
)
CREATE T... | Just show the first name and the manager id with a bar chart, and sort total number from high to low order. | SELECT T1.FIRST_NAME, T1.MANAGER_ID FROM employees AS T1 JOIN departments AS T2 ON T1.DEPARTMENT_ID = T2.DEPARTMENT_ID WHERE T1.EMPLOYEE_ID = T2.MANAGER_ID ORDER BY T1.MANAGER_ID DESC | nvbench |
CREATE TABLE ReviewTaskResultTypes (
Id number,
Name text,
Description text
)
CREATE TABLE Posts (
Id number,
PostTypeId number,
AcceptedAnswerId number,
ParentId number,
CreationDate time,
DeletionDate time,
Score number,
ViewCount number,
Body text,
OwnerUserId num... | Ubuntu / Linux in question title. | SELECT Id, Title, Tags, LastActivityDate, ClosedDate FROM Posts WHERE Title LIKE '%buntu%' OR Title LIKE '%inux%' ORDER BY LastActivityDate DESC | sede |
CREATE TABLE table_10602294_1 (
pressure VARCHAR,
deaths VARCHAR
) | What was the cyclone's pressure in the storm that death was equal to 95km/h (60mph)? | SELECT pressure FROM table_10602294_1 WHERE deaths = "95km/h (60mph)" | sql_create_context |
CREATE TABLE table_2518850_4 (
prefecture VARCHAR,
high_school_name VARCHAR
) | In what prefecture is Nihon Bunri located? | SELECT prefecture FROM table_2518850_4 WHERE high_school_name = "Nihon Bunri" | sql_create_context |
CREATE TABLE table_62902 (
"Name (pinyin)" text,
"Name (Wade Giles)" text,
"Characters" text,
"Type" text,
"Construction" text
) | What type has the characters ? | SELECT "Type" FROM table_62902 WHERE "Characters" = '廣利' | wikisql |
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 text,
RZBQMC text,
RYCWH text,
CYKSDM text,
CYKSMC text,
CYBQDM tex... | 65189711033的检验报告单具体是哪个科室负责开出的,把科室的编码和名称查询一下 | SELECT KSBM, KSMC FROM jybgb WHERE BGDH = '65189711033' | css |
CREATE TABLE table_42845 (
"Date" text,
"Home team" text,
"Score" text,
"Away team" text,
"Venue" text,
"Competition" text
) | Who is the away team for the tome team Leeds United, at the League Cup Competition? | SELECT "Away team" FROM table_42845 WHERE "Home team" = 'leeds united' AND "Competition" = 'league cup' | wikisql |
CREATE TABLE intakeoutput (
intakeoutputid number,
patientunitstayid number,
cellpath text,
celllabel text,
cellvaluenumeric number,
intakeoutputtime time
)
CREATE TABLE lab (
labid number,
patientunitstayid number,
labname text,
labresult number,
labresulttime time
)
CREAT... | what are the newly prescribed medicines of patient 003-10080 today compared to that yesterday? | SELECT medication.drugname FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.uniquepid = '003-10080') AND DATETIME(medication.drugstarttime, 'start of day') = DATETIME(CURRENT_TIME(), 'start of day', '-0 day') EXCEPT SELECT medication.drugname FROM medica... | eicu |
CREATE TABLE table_42910 (
"Year" real,
"Champion" text,
"Runner-up" text,
"Third place" text,
"Fourth place" text,
"Jack Tompkins Trophy (MVP)" text
) | What is the Champion with a Year that is 2008? | SELECT "Champion" FROM table_42910 WHERE "Year" = '2008' | wikisql |
CREATE TABLE patients (
row_id number,
subject_id number,
gender text,
dob time,
dod time
)
CREATE TABLE d_labitems (
row_id number,
itemid number,
label text
)
CREATE TABLE prescriptions (
row_id number,
subject_id number,
hadm_id number,
startdate time,
enddate ti... | what is a number of times that patient 17638 has had an l nephrostomy's output in 05/2105? | SELECT COUNT(*) FROM outputevents WHERE outputevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 17638)) AND outputevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'l nephrostomy' AND... | mimic_iii |
CREATE TABLE PostNotices (
Id number,
PostId number,
PostNoticeTypeId number,
CreationDate time,
DeletionDate time,
ExpiryDate time,
Body text,
OwnerUserId number,
DeletionUserId number
)
CREATE TABLE PendingFlags (
Id number,
FlagTypeId number,
PostId number,
Creati... | ELECT * FROM posts WHERE Id < 50000. | SELECT * FROM Posts WHERE Id > 50000 AND Id < 10000 | sede |
CREATE TABLE table_40551 (
"Race" text,
"Pole position" text,
"Fastest lap" text,
"Most laps led" text,
"Winning driver" text,
"Winning team" text,
"Report" text
) | What is Winning Team, when Most Laps Led is Alex Tagliani? | SELECT "Winning team" FROM table_40551 WHERE "Most laps led" = 'alex tagliani' | wikisql |
CREATE TABLE table_71238 (
"School" text,
"Location" text,
"Mascot" text,
"County" text,
"Enrollment IHSAA Class" text,
"Joined" real,
"Previous Conference" text
) | What is the mascot for South Bend Clay? | SELECT "Mascot" FROM table_71238 WHERE "School" = 'south bend clay' | wikisql |
CREATE TABLE table_38077 (
"Rank" text,
"Scorer" text,
"Club" text,
"Goals" real,
"Matches" text
) | Which Goals have a Club of hallelujah fc, and a Rank of 7? | SELECT SUM("Goals") FROM table_38077 WHERE "Club" = 'hallelujah fc' AND "Rank" = '7' | wikisql |
CREATE TABLE table_19979 (
"No." real,
"English name" text,
"Bulgarian name" text,
"Bulgarian name ( Transliteration )" text,
"Old Bulgarian Names" text,
"Old Bulgarian name (Transliteration)" text,
"Old Bulgarian name - Meaning" text
) | Name the old bulgarian name for ruen, ruy | SELECT "Old Bulgarian name - Meaning" FROM table_19979 WHERE "Old Bulgarian name (Transliteration)" = 'Ruen, Ruy' | wikisql |
CREATE TABLE Badges (
Id number,
UserId number,
Name text,
Date time,
Class number,
TagBased boolean
)
CREATE TABLE SuggestedEdits (
Id number,
PostId number,
CreationDate time,
ApprovalDate time,
RejectionDate time,
OwnerUserId number,
Comment text,
Text text,
... | search the number of aurelia questions. | SELECT COUNT(Id) FROM Posts WHERE Tags LIKE '%angular%' | sede |
CREATE TABLE table_203_701 (
id number,
"#" number,
"title" text,
"featured guest(s)" text,
"producer(s)" text,
"length" text
) | how many tracks were at least 3 minutes or more in length ? | SELECT COUNT("title") FROM table_203_701 WHERE "length" >= '3' | squall |
CREATE TABLE table_10204 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) | When did St Kilda play a home game? | SELECT "Date" FROM table_10204 WHERE "Home team" = 'st kilda' | wikisql |
CREATE TABLE dual_carrier (
main_airline varchar,
low_flight_number int,
high_flight_number int,
dual_airline varchar,
service_name text
)
CREATE TABLE code_description (
code varchar,
description text
)
CREATE TABLE flight (
aircraft_code_sequence text,
airline_code varchar,
a... | what flights go from DALLAS to DENVER leaving after 1500 | 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_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'DENVER' AND flight.departure_time > 1500 AND flight.to_airport = AIRPORT_SERVICE_1.airpor... | atis |
CREATE TABLE table_name_31 (
label VARCHAR,
catalogue VARCHAR
) | What label has brol 34531 as it's catalogue? | SELECT label FROM table_name_31 WHERE catalogue = "brol 34531" | sql_create_context |
CREATE TABLE table_name_41 (
polling_dates VARCHAR,
alex_munter VARCHAR,
polling_firm VARCHAR
) | What dates does Alex Munter have 25% and the polling firm of Decima? | SELECT polling_dates FROM table_name_41 WHERE alex_munter = "25%" AND polling_firm = "decima" | 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 procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
... | what is the number of patients whose diagnoses long title is other and unspecified coagulation defects and drug type is additive? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE diagnoses.long_title = "Other and unspecified coagulation defects" AND prescriptions.drug_type = "ADDITIVE" | mimicsql_data |
CREATE TABLE wdmzjzjlb (
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... | 在2006年10月23日到2018年1月9日期间,1075351医疗机构有过几次转诊门诊的就诊记录 | SELECT COUNT(*) FROM wdmzjzjlb WHERE wdmzjzjlb.YLJGDM = '1075351' AND wdmzjzjlb.JZKSRQ BETWEEN '2006-10-23' AND '2018-01-09' AND wdmzjzjlb.ZZBZ > 0 UNION SELECT COUNT(*) FROM bdmzjzjlb WHERE bdmzjzjlb.YLJGDM = '1075351' AND bdmzjzjlb.JZKSRQ BETWEEN '2006-10-23' AND '2018-01-09' AND bdmzjzjlb.ZZBZ > 0 | css |
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... | 药物编号733425674的使用频率和每次剂量在医疗就诊69216697191中有多大? | SELECT t_kc22.USE_FRE, t_kc22.EACH_DOSAGE FROM t_kc22 JOIN t_kc21_t_kc22 JOIN t_kc21 ON t_kc21_t_kc22.MED_EXP_DET_ID = t_kc22.MED_EXP_DET_ID AND t_kc21_t_kc22.MED_CLINIC_ID = t_kc21.MED_CLINIC_ID WHERE t_kc21.MED_CLINIC_ID = '69216697191' AND t_kc22.SOC_SRT_DIRE_CD = '733425674' | css |
CREATE TABLE table_49957 (
"Season" real,
"Date" text,
"Home team" text,
"Score" text,
"Away team" text,
"Venue" text,
"Competition round" text
) | What is the venue of season 1983, which had alianza lima as the home team? | SELECT "Venue" FROM table_49957 WHERE "Home team" = 'alianza lima' AND "Season" = '1983' | wikisql |
CREATE TABLE semester (
semester_id int,
semester varchar,
year int
)
CREATE TABLE course_tags_count (
course_id int,
clear_grading int,
pop_quiz int,
group_projects int,
inspirational int,
long_lectures int,
extra_credit int,
few_tests int,
good_feedback int,
tough_... | I want to see the requirements for a CS-LSA degree . | SELECT DISTINCT program_requirement.additional_req, program_requirement.category, program_requirement.min_credit, program.name FROM program, program_requirement WHERE program.name LIKE '%CS-LSA%' AND program.program_id = program_requirement.program_id | advising |
CREATE TABLE table_42127 (
"Year" real,
"Country" text,
"Team" text,
"Individual" text,
"Location" text,
"Runners-up" text
) | How many years was the individual winner from the United States was Tiger Woods? | SELECT COUNT("Year") FROM table_42127 WHERE "Country" = 'united states' AND "Individual" = 'tiger woods' | wikisql |
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... | 医生21581460的门诊量在2002年10月1日到2016年7月5日内总共有多少人? | SELECT COUNT(*) FROM txmzjzjlb WHERE txmzjzjlb.ZZYSGH = '21581460' AND txmzjzjlb.JZKSRQ BETWEEN '2002-10-01' AND '2016-07-05' UNION SELECT COUNT(*) FROM ftxmzjzjlb WHERE ftxmzjzjlb.ZZYSGH = '21581460' AND ftxmzjzjlb.JZKSRQ BETWEEN '2002-10-01' AND '2016-07-05' | css |
CREATE TABLE table_66330 (
"Stadium" text,
"Capacity" real,
"City" text,
"Country" text,
"Home team/s" text,
"Closed (as a RL stadium)" real
) | What is the earliest closed year in the country of france? | SELECT MIN("Closed (as a RL stadium)") FROM table_66330 WHERE "Country" = 'france' | wikisql |
CREATE TABLE table_27872 (
"Settlement" text,
"Cyrillic Name Other Names" text,
"Type" text,
"Population (2011)" real,
"Largest ethnic group (2002)" text,
"Dominant religion (2002)" text
) | What is the largest ethnic group in 2002 when the population is 200? | SELECT "Largest ethnic group (2002)" FROM table_27872 WHERE "Population (2011)" = '200' | wikisql |
CREATE TABLE table_46731 (
"Model" text,
"Memory ( RAM )" text,
"Storage ( flash )" text,
"Operating system version" text,
"Memory card" text,
"Weight, dimensions" text,
"Retail availability" text
) | What is the weight and dimensions of an N800? | SELECT "Weight, dimensions" FROM table_46731 WHERE "Model" = 'n800' | wikisql |
CREATE TABLE table_name_88 (
attendance INTEGER,
week VARCHAR
) | What's the lowest attendance recorded for week 15? | SELECT MIN(attendance) FROM table_name_88 WHERE week = 15 | sql_create_context |
CREATE TABLE table_69771 (
"Player" text,
"Country" text,
"Year(s) won" text,
"Total" real,
"To par" text,
"Finish" text
) | What was the finish of the winner of the 2000 Masters? | SELECT "Finish" FROM table_69771 WHERE "Year(s) won" = '2000' | wikisql |
CREATE TABLE table_13503 (
"Year" real,
"Competition" text,
"Venue" text,
"Position" text,
"Event" text
) | Where was the London Marathon held? | SELECT "Venue" FROM table_13503 WHERE "Event" = 'marathon' AND "Competition" = 'london marathon' | wikisql |
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 employees (
EMPLOYEE_ID decimal(6,0),
FIRST_NAME varchar(20),
LAST_NAME varchar(25),
EMAIL varchar(25),
PHONE_NUMBER varchar(20),
... | For those employees who was hired before 2002-06-21, give me the comparison about the sum of department_id over the job_id , and group by attribute job_id by a bar chart. | SELECT JOB_ID, SUM(DEPARTMENT_ID) FROM employees WHERE HIRE_DATE < '2002-06-21' GROUP BY JOB_ID | nvbench |
CREATE TABLE building (
name VARCHAR,
building_id VARCHAR
)
CREATE TABLE institution (
building_id VARCHAR,
founded VARCHAR
) | Show the names of buildings except for those having an institution founded in 2003. | SELECT name FROM building EXCEPT SELECT T1.name FROM building AS T1 JOIN institution AS T2 ON T1.building_id = T2.building_id WHERE T2.founded = 2003 | sql_create_context |
CREATE TABLE table_name_76 (
thumb_stick VARCHAR,
wrist_pad VARCHAR,
supplier VARCHAR
) | Which Thumb stick has a Wrist pad of no, and a Supplier of sharkoon? | SELECT thumb_stick FROM table_name_76 WHERE wrist_pad = "no" AND supplier = "sharkoon" | 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... | 编号25164587531的医疗就诊入院时被诊断出来的是什么疾病,疾病的编号是什么 | SELECT t_kc21.IN_DIAG_DIS_CD, t_kc21.IN_DIAG_DIS_NM FROM t_kc21 WHERE t_kc21.MED_CLINIC_ID = '25164587531' | css |
CREATE TABLE table_42844 (
"Sunshine (hrs/year)" text,
"Rain (mm/year)" text,
"Snow (days/year)" real,
"Storms (days/year)" real,
"Fog (days/year)" real
) | What are the number of storms where fog is lower than 74, and sunshine is 2 668? | SELECT COUNT("Storms (days/year)") FROM table_42844 WHERE "Fog (days/year)" < '74' AND "Sunshine (hrs/year)" = '2 668' | wikisql |
CREATE TABLE accounts (
custid number,
name text
)
CREATE TABLE checking (
custid number,
balance number
)
CREATE TABLE savings (
custid number,
balance number
) | Find the balance of the checking account belonging to an owner whose name contains 'ee'. | SELECT T2.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T1.name LIKE '%ee%' | spider |
CREATE TABLE table_name_85 (
text VARCHAR,
wade_giles VARCHAR
) | Which text has Wade-Giles translation of ai-ma hsin-y an? | SELECT text FROM table_name_85 WHERE wade_giles = "ai-ma … hsin-yüan" | sql_create_context |
CREATE TABLE table_name_57 (
written_by VARCHAR,
code VARCHAR
) | Which Written by has a Code of 1.2 1.3? | SELECT written_by FROM table_name_57 WHERE code = "1.2 1.3" | sql_create_context |
CREATE TABLE FlagTypes (
Id number,
Name text,
Description text
)
CREATE TABLE PostNotices (
Id number,
PostId number,
PostNoticeTypeId number,
CreationDate time,
DeletionDate time,
ExpiryDate time,
Body text,
OwnerUserId number,
DeletionUserId number
)
CREATE TABLE Rev... | Finding my Low Quality Answers. This will rank your Questions by the length of the post. | SELECT OwnerUserId AS "user_link", Id AS "post_link", LENGTH(Body) AS "length_of_post" FROM Posts WHERE NOT ParentId IS NULL AND OwnerUserId = '##UserId##' ORDER BY 'length_of_post' | sede |
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_DIRE_CD text,
MED_DIRE_NM text,... | 你知道排名第一与手术量排名倒数第一的科室的手术量从16年11月23日到18年6月23日相差多少么? | SELECT (SELECT COUNT(*) FROM t_kc22 WHERE t_kc22.STA_DATE BETWEEN '2016-11-23' AND '2018-06-23' AND t_kc22.MED_INV_ITEM_TYPE = '手术费' GROUP BY t_kc22.MED_ORG_DEPT_CD ORDER BY COUNT(*) DESC LIMIT 1) - (SELECT COUNT(*) FROM t_kc22 WHERE t_kc22.STA_DATE BETWEEN '2016-11-23' AND '2018-06-23' AND t_kc22.MED_INV_ITEM_TYPE = '... | css |
CREATE TABLE table_14884 (
"Rider" text,
"Years active" text,
"Races" real,
"Wins" real,
"2nd pl." real,
"3rd pl." real,
"Titles." real
) | What is the total number of 2nd place finishes for riders active in years 2009-2010 and more than 0 wins? | SELECT SUM("2nd pl.") FROM table_14884 WHERE "Years active" = '2009-2010' AND "Wins" > '0' | wikisql |
CREATE TABLE table_77986 (
"Line" text,
"Began operation" real,
"Stations" real,
"Length (km)" text,
"Terminals" text
) | What is the average operation beginning with a length of ampang and over 27 stations? | SELECT AVG("Began operation") FROM table_77986 WHERE "Length (km)" = 'ampang' AND "Stations" > '27' | wikisql |
CREATE TABLE table_10564 (
"Week" text,
"Date" text,
"Opponent" text,
"Result" text,
"Kickoff [a ]" text,
"Game site" text,
"Attendance" text,
"Record" text
) | When they were playing the detroit lions at tampa stadium, what was the score? | SELECT "Result" FROM table_10564 WHERE "Game site" = 'tampa stadium' AND "Opponent" = 'detroit lions' | wikisql |
CREATE TABLE professor (
emp_num number,
dept_code text,
prof_office text,
prof_extension text,
prof_high_degree text
)
CREATE TABLE enroll (
class_code text,
stu_num number,
enroll_grade text
)
CREATE TABLE department (
dept_code text,
dept_name text,
school_code text,
... | Which department offers the most credits all together? | SELECT T3.dept_name FROM course AS T1 JOIN class AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T1.dept_code = T3.dept_code GROUP BY T1.dept_code ORDER BY SUM(T1.crs_credit) DESC LIMIT 1 | spider |
CREATE TABLE table_43570 (
"landsv\u00e6\u00f0i" text,
"(English)" text,
"Population 2011-01-01" text,
"Area (km\u00b2)" text,
"Pop./ km\u00b2" real
) | What is the area for a population of 0.58 km? | SELECT "Area (km\u00b2)" FROM table_43570 WHERE "Pop./ km\u00b2" = '0.58' | wikisql |
CREATE TABLE table_53972 (
"Peak" text,
"metres" real,
"feet" real,
"Latitude (N)" text,
"Longitude (E)" text,
"Prominence (m)" real
) | What is the average feet that has a Latitude (N) of 35 48 35 , and under 8,047m? | SELECT AVG("feet") FROM table_53972 WHERE "Latitude (N)" = '35°48′35″' AND "metres" < '8,047' | wikisql |
CREATE TABLE table_59463 (
"Year" text,
"Champion" text,
"Runner-up" text,
"Score" text,
"Name" text
) | What's the score in 1990? | SELECT "Score" FROM table_59463 WHERE "Year" = '1990' | wikisql |
CREATE TABLE table_name_89 (
result VARCHAR,
venue VARCHAR
) | what number of people went to the tiger stadium | SELECT result FROM table_name_89 WHERE venue = "tiger stadium" | sql_create_context |
CREATE TABLE table_25519 (
"No. in series" real,
"No. in season" real,
"Title" text,
"Directed by" text,
"Written by" text,
"Original air date" text
) | David James Elliott directed which episode number within the series? | SELECT "No. in series" FROM table_25519 WHERE "Directed by" = 'David James Elliott' | wikisql |
CREATE TABLE table_20650 (
"Province" text,
"Map #" real,
"ISO 3166-2:AF" text,
"Centers" text,
"Population" real,
"Area (km\u00b2)" real,
"Language" text,
"Notes" text,
"U.N. Region" text
) | Name the area for map # 24 | SELECT "Area (km\u00b2)" FROM table_20650 WHERE "Map #" = '24' | wikisql |
CREATE TABLE intakeoutput (
intakeoutputid number,
patientunitstayid number,
cellpath text,
celllabel text,
cellvaluenumeric number,
intakeoutputtime time
)
CREATE TABLE microlab (
microlabid number,
patientunitstayid number,
culturesite text,
organism text,
culturetakentime... | count the number of times that patient 018-119251 has been prescribed the nss infusion since 1 year ago. | SELECT COUNT(*) FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '018-119251')) AND medication.drugname = 'nss infusion' AND DATETIME(medication... | eicu |
CREATE TABLE mzjzjlb_jybgb (
YLJGDM_MZJZJLB text,
BGDH number,
YLJGDM number
)
CREATE TABLE zyjzjlb (
CYBQDM text,
CYBQMC text,
CYCWH text,
CYKSDM text,
CYKSMC text,
CYSJ time,
CYZTDM number,
HZXM text,
JZKSDM text,
JZKSMC text,
JZLSH text,
KH text,
KLX n... | 在15年8月6日到16年2月8日这段时间,患者37516141一共有多少检验报告单,把这些检验报告单的标本采集部位列出来 | SELECT jybgb.BBCJBW FROM hz_info JOIN mzjzjlb JOIN jybgb JOIN mzjzjlb_jybgb ON hz_info.YLJGDM = mzjzjlb.YLJGDM AND hz_info.KH = mzjzjlb.KH AND hz_info.KLX = mzjzjlb.KLX AND mzjzjlb.YLJGDM = mzjzjlb_jybgb.YLJGDM_MZJZJLB AND mzjzjlb.JZLSH = jybgb.JZLSH_MZJZJLB AND mzjzjlb_jybgb.YLJGDM = jybgb.YLJGDM AND mzjzjlb_jybgb.BGD... | css |
CREATE TABLE table_52991 (
"Constructor" text,
"Chassis" text,
"Engine" text,
"Tyres" text,
"Driver" text,
"Rounds" text
) | What is the tyres for Didier pironi? | SELECT "Tyres" FROM table_52991 WHERE "Driver" = 'didier pironi' | wikisql |
CREATE TABLE event (
Event_ID int,
Date text,
Venue text,
Name text,
Event_Attendance int
)
CREATE TABLE news_report (
journalist_ID int,
Event_ID int,
Work_Type text
)
CREATE TABLE journalist (
journalist_ID int,
Name text,
Nationality text,
Age text,
Years_working... | Return me a pie chart to show the average experience working length of journalists working on different role type. | SELECT Work_Type, AVG(Years_working) FROM journalist AS t1 JOIN news_report AS t2 ON t1.journalist_ID = t2.journalist_ID GROUP BY t2.Work_Type | nvbench |
CREATE TABLE zyjzjlb (
CYBQDM text,
CYBQMC text,
CYCWH text,
CYKSDM text,
CYKSMC text,
CYSJ time,
CYZTDM number,
HZXM text,
JZKSDM text,
JZKSMC text,
JZLSH text,
KH text,
KLX number,
MZBMLX number,
MZJZLSH text,
MZZDBM text,
MZZDMC text,
MZZYZDZZBM... | 在00年1月17日直到11年5月4日这一段时间,病患云天干内所有检验结果指标记录中的仪器编号以及名称分别叫什么? | SELECT jyjgzbb.YQBH, jyjgzbb.YQMC FROM person_info JOIN hz_info JOIN wdmzjzjlb JOIN jybgb JOIN jyjgzbb ON person_info.RYBH = hz_info.RYBH AND 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_MZJZ... | css |
CREATE TABLE d_items (
row_id number,
itemid number,
label text,
linksto text
)
CREATE TABLE transfers (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
eventtype text,
careunit text,
wardid number,
intime time,
outtime time
)
CREATE TABLE labev... | tell me the top three most common output event last year? | SELECT d_items.label FROM d_items WHERE d_items.itemid IN (SELECT t1.itemid FROM (SELECT outputevents.itemid, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM outputevents WHERE DATETIME(outputevents.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year') GROUP BY outputevents.itemid) AS... | mimic_iii |
CREATE TABLE table_12927 (
"Player" text,
"Country" text,
"Year(s) won" text,
"Total" real,
"To par" real
) | What country has a to par larger than 5 and a player John Mahaffey? | SELECT "Country" FROM table_12927 WHERE "To par" > '5' AND "Player" = 'john mahaffey' | wikisql |
CREATE TABLE table_23840 (
"Type" text,
"Beam height (mm)" real,
"Flange width (mm)" real,
"Web thickness (mm)" text,
"Flange thickness (mm)" text,
"Weight (kg/m)" text,
"Cross-section area (cm 2 )" text,
"Moment of inertia in torsion (J) (cm 4 )" text
) | What is the flange thickness (mm) for the weight (kg/m) 10.4? | SELECT "Flange thickness (mm)" FROM table_23840 WHERE "Weight (kg/m)" = '10.4' | wikisql |
CREATE TABLE Products (
Code INTEGER,
Name VARCHAR(255),
Price DECIMAL,
Manufacturer INTEGER
)
CREATE TABLE Manufacturers (
Code INTEGER,
Name VARCHAR(255),
Headquarter VARCHAR(255),
Founder VARCHAR(255),
Revenue REAL
) | For those records from the products and each product's manufacturer, visualize a bar chart about the distribution of name and the average of manufacturer , and group by attribute name, rank in desc by the x axis please. | SELECT T2.Name, T1.Manufacturer FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T2.Name ORDER BY T2.Name DESC | nvbench |
CREATE TABLE Users (
Id number,
Reputation number,
CreationDate time,
DisplayName text,
LastAccessDate time,
WebsiteUrl text,
Location text,
AboutMe text,
Views number,
UpVotes number,
DownVotes number,
ProfileImageUrl text,
EmailHash text,
AccountId number
)
CRE... | RLA-RegDiscontinuity: all users with 5 downvotes in a week. | SELECT u.Id, u.DisplayName, u.Reputation, v.weekno, COUNT(v.Id) AS downvotes, MIN(v.CreationDate) AS fromdate, MAX(v.CreationDate) AS todate FROM Users AS u, Posts AS p, (SELECT Id, DATEDIFF(week, '2019-01-01', creationdate) AS weekno, CreationDate, PostId FROM Votes WHERE CreationDate >= '2019-01-01' AND VoteTypeId = ... | sede |
CREATE TABLE table_name_64 (
apps INTEGER,
player VARCHAR,
goals VARCHAR
) | How many Apps did Player Gilberto with more than 1 Goals have? | SELECT AVG(apps) FROM table_name_64 WHERE player = "gilberto" AND goals > 1 | sql_create_context |
CREATE TABLE Users (
Id number,
Reputation number,
CreationDate time,
DisplayName text,
LastAccessDate time,
WebsiteUrl text,
Location text,
AboutMe text,
Views number,
UpVotes number,
DownVotes number,
ProfileImageUrl text,
EmailHash text,
AccountId number
)
CRE... | dplyr Questions ansswered in less than 1 day. | SELECT COUNT(*) FROM Posts AS question INNER JOIN PostTags AS pt ON pt.PostId = question.Id INNER JOIN Tags AS t ON t.Id = pt.TagId WHERE TagName IN ('visual-studio', 'visual-studio-2013', 'visual-studio-2012') AND YEAR(question.CreationDate) = 2014 | sede |
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 medication (
medi... | did patient 031-16123 have the results of the microbiology test of the urine, voided specimen last month? | SELECT COUNT(*) FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-16123')) AND microlab.culturesite = 'urine, voided specimen' AND DATETIME(micr... | eicu |
CREATE TABLE table_name_94 (
game VARCHAR,
date VARCHAR
) | What is the playoffs Game number on April 26? | SELECT game FROM table_name_94 WHERE date = "april 26" | sql_create_context |
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 jobs (
JOB_ID varchar(10),
JOB_TITLE varchar(35),
MIN_SALARY decimal(6,0),
MAX_SALARY decimal(6,0)
)
CREATE TABLE regions (
REGION_... | For those employees whose salary is in the range of 8000 and 12000 and commission is not null or department number does not equal to 40, return a bar chart about the distribution of hire_date and the amount of hire_date bin hire_date by weekday, and I want to order in descending by the y axis. | SELECT HIRE_DATE, COUNT(HIRE_DATE) FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40 ORDER BY COUNT(HIRE_DATE) DESC | nvbench |
CREATE TABLE table_39512 (
"Year (Ceremony)" text,
"Film title used in nomination" text,
"Original title" text,
"Language (s)" text,
"Result" text
) | What is the original title of the Gypsy Magic film title used in nomination? | SELECT "Original title" FROM table_39512 WHERE "Film title used in nomination" = 'gypsy magic' | wikisql |
CREATE TABLE table_5788 (
"Date" text,
"Tournament" text,
"Surface" text,
"Partnering" text,
"Opponents in the final" text,
"Score" text
) | When has a Score of 6 3, 6 4? | SELECT "Date" FROM table_5788 WHERE "Score" = '6–3, 6–4' | wikisql |
CREATE TABLE table_78269 (
"Driver" text,
"Constructor" text,
"Laps" real,
"Time/Retired" text,
"Grid" real
) | What was the retired time on someone who had 43 laps on a grip of 18? | SELECT "Time/Retired" FROM table_78269 WHERE "Laps" = '43' AND "Grid" = '18' | wikisql |
CREATE TABLE table_203_501 (
id number,
"title" text,
"genre" text,
"sub\u00addivisions" text,
"libretto" text,
"premiere date" text,
"place, theatre" text
) | how many number of 1 acts were there ? | SELECT COUNT(*) FROM table_203_501 WHERE "sub\u00addivisions" = '1 act' | squall |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.