instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
Email hashes from Data Explorer. | CREATE TABLE SuggestedEditVotes (Id number,SuggestedEditId number,UserId number,VoteTypeId number,CreationDate time,TargetUserId number,TargetRepChange number)CREATE TABLE ReviewTaskStates (Id number,Name text,Description text)CREATE TABLE PostFeedback (Id number,PostId number,IsAnonymous boolean,VoteTypeId number,Crea... | SELECT EmailHash FROM Users WHERE NOT EmailHash IS NULL |
what is the top five most frequent diagnoses for the patients 50s since 1 year ago? | CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,startd... | SELECT d_icd_diagnoses.short_title FROM d_icd_diagnoses WHERE d_icd_diagnoses.icd9_code IN (SELECT t1.icd9_code FROM (SELECT diagnoses_icd.icd9_code, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM diagnoses_icd WHERE diagnoses_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.age BETWEEN... |
what is the five most common lab test that are done during this year? | CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,cultu... | SELECT t1.labname FROM (SELECT lab.labname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM lab WHERE DATETIME(lab.labresulttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-0 year') GROUP BY lab.labname) AS t1 WHERE t1.c1 <= 5 |
Where were the Womens Doubles in the 1951/1952 season and who won? | CREATE TABLE table_12266757_1 (womens_doubles VARCHAR,season VARCHAR) | SELECT womens_doubles FROM table_12266757_1 WHERE season = "1951/1952" |
What is the Location of the game on 11/08/1975*? | CREATE TABLE table_41051 ("Date" text,"Opponent" text,"Location" text,"Result" text,"Attendance" real) | SELECT "Location" FROM table_41051 WHERE "Date" = '11/08/1975*' |
Show the number of documents created in each day and bin document date by year interval and group by document type with a group line chart, show from low to high by the Document_Date please. | CREATE TABLE Projects (Project_ID INTEGER,Project_Details VARCHAR(255))CREATE TABLE Statements (Statement_ID INTEGER,Statement_Details VARCHAR(255))CREATE TABLE Ref_Document_Types (Document_Type_Code CHAR(15),Document_Type_Name VARCHAR(255),Document_Type_Description VARCHAR(255))CREATE TABLE Accounts (Account_ID INTEGE... | SELECT Document_Date, COUNT(Document_Date) FROM Ref_Document_Types AS T1 JOIN Documents AS T2 ON T1.Document_Type_Code = T2.Document_Type_Code GROUP BY Document_Type_Name ORDER BY Document_Date |
what is the played when the wins is 21 and the positions is higher than 3? | CREATE TABLE table_name_55 (played INTEGER,wins VARCHAR,position VARCHAR) | SELECT SUM(played) FROM table_name_55 WHERE wins = 21 AND position > 3 |
what is the least tonnage grt when the nationality is british and the ship is kidalton? | CREATE TABLE table_name_84 (tonnage_grt INTEGER,nationality VARCHAR,ship VARCHAR) | SELECT MIN(tonnage_grt) FROM table_name_84 WHERE nationality = "british" AND ship = "kidalton" |
when was the last lab test patient 006-168146 has received in 10/last year? | CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE patient (... | 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-168146')) AND DATETIME(lab.labresulttime, 'start of year') = DATETIME(CURRENT_T... |
What are the notes where the authors are Zhou & Zhang? | CREATE TABLE table_42612 ("Name" text,"Novelty" text,"Status" text,"Authors" text,"Unit" text,"Location" text,"Notes" text) | SELECT "Notes" FROM table_42612 WHERE "Authors" = 'zhou & zhang' |
After week 2, how many people attended the game at Rich Stadium against the Miami Dolphins? | CREATE TABLE table_name_61 (attendance VARCHAR,week VARCHAR,game_site VARCHAR,opponent VARCHAR) | SELECT COUNT(attendance) FROM table_name_61 WHERE game_site = "rich stadium" AND opponent = "miami dolphins" AND week > 2 |
Which CPU chip(s) is used in the Classic type hardware? | CREATE TABLE table_13824 ("Brand" text,"Model" text,"Type" text,"Modem" text,"Storage" text,"CPU speed" text,"CPU chip" text) | SELECT "CPU chip" FROM table_13824 WHERE "Type" = 'classic' |
What is the original air date of the episode written by Liz Feldman? | CREATE TABLE table_31395 ("No. in series" real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Production code" real,"U.S. viewers (million)" text) | SELECT "Original air date" FROM table_31395 WHERE "Written by" = 'Liz Feldman' |
Name the record when the attendance was more than 20,228 and rockies was the opponent on june 8 | CREATE TABLE table_68400 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" real,"Record" text) | SELECT "Record" FROM table_68400 WHERE "Attendance" > '20,228' AND "Opponent" = 'rockies' AND "Date" = 'june 8' |
what is the maximum total cost of the hospital that includes the laboratory cd8 cells, percent test the last year? | CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE procedures_icd (row_id number,subject_id number,hadm_id number,icd9_code text,chartti... | SELECT MAX(t1.c1) FROM (SELECT SUM(cost.cost) AS c1 FROM cost WHERE cost.hadm_id IN (SELECT labevents.hadm_id FROM labevents WHERE labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'cd8 cells, percent')) AND DATETIME(cost.chargetime, 'start of year') = DATETIME(CURRENT_TIME(), 'star... |
what is the organism name found in the first urine, catheter specimen test of patient 031-24513 in 03/last year? | CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight number,disch... | SELECT microlab.organism FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-24513')) AND microlab.culturesite = 'urine, catheter specimen' AND DA... |
provide the number of patients who have government insurance policy and have undergone a unilateral radical neck dissection. | 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 text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.insurance = "Government" AND procedures.long_title = "Radical neck dissection, unilateral" |
Number of unique answerers per month. | 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,LastEditorDisplayName text,LastEditDate time,LastActivityDate time,Title text,Ta... | SELECT YR_MONTH, COUNT(*) AS NumAnswerers FROM (SELECT (TIME_TO_STR(p.CreationDate, '%y') + (TIME_TO_STR(p.CreationDate, '%m') - 1) / 12.0) AS YR_MONTH, u.Id AS UID, COUNT(*) AS NumAnswers FROM Users AS u INNER JOIN Posts AS p ON p.OwnerUserId = u.Id AND p.PostTypeId = 2 GROUP BY (TIME_TO_STR(p.CreationDate, '%y') + (T... |
Show the score of the movie with the lowest rating among all movies directed by each director with a scatter chart. | CREATE TABLE Rating (rID int,mID int,stars int,ratingDate date)CREATE TABLE Reviewer (rID int,name text)CREATE TABLE Movie (mID int,title text,year int,director text) | SELECT stars, MIN(T1.stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID GROUP BY director |
Player of dan federman, and a Pick larger than 114 involves which highest round? | CREATE TABLE table_name_59 (round INTEGER,player VARCHAR,pick VARCHAR) | SELECT MAX(round) FROM table_name_59 WHERE player = "dan federman" AND pick > 114 |
Which Heat has a Rank of 8? | CREATE TABLE table_65426 ("Rank" real,"Heat" real,"Lane" real,"Nationality" text,"Time" text) | SELECT MAX("Heat") FROM table_65426 WHERE "Rank" = '8' |
Name the venue for eng by 6 wkts | CREATE TABLE table_70122 ("Date" text,"Home captain" text,"Away captain" text,"Venue" text,"Result" text) | SELECT "Venue" FROM table_70122 WHERE "Result" = 'eng by 6 wkts' |
What score has mtl. maroons as the visitor? | CREATE TABLE table_name_91 (score VARCHAR,visitor VARCHAR) | SELECT score FROM table_name_91 WHERE visitor = "mtl. maroons" |
so how many days have passed since patient 27172 was admitted to the hospital? | CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value num... | SELECT 1 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', admissions.admittime)) FROM admissions WHERE admissions.subject_id = 27172 AND admissions.dischtime IS NULL |
when is the last sputum, tracheal specimen microbiological test on patient 025-44495 during the last hospital encounter? | CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,ag... | SELECT microlab.culturetakentime FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '025-44495' AND NOT patient.hospitaldischargetime IS NULL ORDER BY... |
If the amount of viewers is 2.48 million, what is the original air date? | CREATE TABLE table_24639086_3 (original_air_date VARCHAR,viewers__in_millions_ VARCHAR) | SELECT original_air_date FROM table_24639086_3 WHERE viewers__in_millions_ = "2.48" |
a FIRST class flight to SAN FRANCISCO on AA tuesday next week | CREATE TABLE month (month_number int,month_name text)CREATE TABLE city (city_code varchar,city_name varchar,state_code varchar,country_name varchar,time_zone_code varchar)CREATE TABLE airline (airline_code varchar,airline_name text,note text)CREATE TABLE ground_service (city_code text,airport_code text,transport_type t... | SELECT DISTINCT flight.flight_id FROM airport_service, city, date_day AS DATE_DAY_0, date_day AS DATE_DAY_1, days AS DAYS_0, days AS DAYS_1, fare, fare_basis AS FARE_BASIS_0, fare_basis AS FARE_BASIS_1, flight, flight_fare WHERE ((DATE_DAY_0.day_number = 22 AND DATE_DAY_0.month_number = 3 AND DATE_DAY_0.year = 1991 AND... |
Can you list the 300 -level courses for next semester ? | CREATE TABLE student_record (student_id int,course_id int,semester int,grade varchar,how varchar,transfer_source varchar,earn_credit varchar,repeat_term varchar,test_id varchar)CREATE TABLE course_tags_count (course_id int,clear_grading int,pop_quiz int,group_projects int,inspirational int,long_lectures int,extra_credi... | SELECT DISTINCT course.department, course.name, course.number FROM course, course_offering, semester WHERE course.course_id = course_offering.course_id AND course.department = 'EECS' AND course.number BETWEEN 300 AND 300 + 100 AND semester.semester = 'FA' AND semester.semester_id = course_offering.semester AND semester... |
How many 4 credits is the hand two pair? | CREATE TABLE table_16510 ("Hand" text,"1 credit" real,"2 credits" real,"3 credits" real,"4 credits" real,"5 credits" text) | SELECT COUNT("4 credits") FROM table_16510 WHERE "Hand" = 'Two pair' |
Role of wilfred is what D'Oyly Carte 1945 Tour? | CREATE TABLE table_39565 ("Role" text,"D'Oyly Carte 1920 Tour" text,"D'Oyly Carte 1930 Tour" text,"D'Oyly Carte 1939 Tour" text,"D'Oyly Carte 1945 Tour" text,"D'Oyly Carte 1950 Tour" text) | SELECT "D'Oyly Carte 1945 Tour" FROM table_39565 WHERE "Role" = 'wilfred' |
What club had a loss of 15? | CREATE TABLE table_name_90 (club VARCHAR,lost VARCHAR) | SELECT club FROM table_name_90 WHERE lost = "15" |
What is the sum of Money ($), when Score is 70-71-70-69=280? | CREATE TABLE table_50198 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text,"Money ($)" real) | SELECT SUM("Money ( $ )") FROM table_50198 WHERE "Score" = '70-71-70-69=280' |
What was the score when the record was 39-62? | CREATE TABLE table_56273 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Record" text) | SELECT "Score" FROM table_56273 WHERE "Record" = '39-62' |
Does 628 have any software course prerequisites ? | CREATE TABLE gsi (course_offering_id int,student_id int)CREATE TABLE program_course (program_id int,course_id int,workload int,category varchar)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... | SELECT DISTINCT COURSE_0.department, COURSE_0.name, COURSE_0.number FROM course AS COURSE_0 INNER JOIN course_prerequisite ON COURSE_0.course_id = course_prerequisite.pre_course_id INNER JOIN course AS COURSE_1 ON COURSE_1.course_id = course_prerequisite.course_id INNER JOIN area ON COURSE_0.course_id = area.course_id ... |
What was the score in the game on May 11? | CREATE TABLE table_11963601_11 (score VARCHAR,date VARCHAR) | SELECT score FROM table_11963601_11 WHERE date = "May 11" |
Visualize a pie chart with what are the number of rooms for each bed type? | CREATE TABLE Reservations (Code INTEGER,Room TEXT,CheckIn TEXT,CheckOut TEXT,Rate REAL,LastName TEXT,FirstName TEXT,Adults INTEGER,Kids INTEGER)CREATE TABLE Rooms (RoomId TEXT,roomName TEXT,beds INTEGER,bedType TEXT,maxOccupancy INTEGER,basePrice INTEGER,decor TEXT) | SELECT bedType, COUNT(*) FROM Rooms GROUP BY bedType |
What is the Home Team in Game 2? | CREATE TABLE table_name_80 (home_team VARCHAR,game VARCHAR) | SELECT home_team FROM table_name_80 WHERE game = "game 2" |
What time slots have a 6.3 rating | CREATE TABLE table_16559 ("#" real,"Episode" text,"Air Date" text,"Time slot (EST)" text,"Rating" text,"Share" real,"18-49 (Rating/Share)" text,"Viewers (m)" text,"Rank (Overall)" text) | SELECT "Time slot (EST)" FROM table_16559 WHERE "Rating" = '6.3' |
Name the ted morris memorial trophy for november 22, 2008 | CREATE TABLE table_25318 ("Game" text,"Date" text,"Champion" text,"Score" text,"Runner Up" text,"Stadium" text,"City" text,"Ted Morris Memorial Trophy (Game MVP)" text,"Bruce Coulter Award" text) | SELECT "Ted Morris Memorial Trophy (Game MVP)" FROM table_25318 WHERE "Date" = 'November 22, 2008' |
Name the winning driver for monaco grand prix | CREATE TABLE table_name_41 (winning_driver VARCHAR,name VARCHAR) | SELECT winning_driver FROM table_name_41 WHERE name = "monaco grand prix" |
What member is in the liberal party and has an electorate of bruce? | CREATE TABLE table_67391 ("Member" text,"Party" text,"Electorate" text,"State" text,"Term in office" text) | SELECT "Member" FROM table_67391 WHERE "Party" = 'liberal' AND "Electorate" = 'bruce' |
what is the pearson symbol for the formula with the lightest density ? | CREATE TABLE table_203_613 (id number,"formula" text,"color" text,"symmetry" text,"space group" text,"no" number,"pearson symbol" text,"a (pm)" number,"b (pm)" number,"c (pm)" number,"z" number,"density,g/cm3" number) | SELECT "formula" FROM table_203_613 ORDER BY "density, g/cm3" LIMIT 1 |
How tall is the player from farmington, ky? | CREATE TABLE table_29129 ("Name" text,"Position" text,"Height" text,"Weight" real,"Age" real,"Home Town" text,"Team/School" text) | SELECT "Height" FROM table_29129 WHERE "Home Town" = 'Farmington, KY' |
for the last time until 07/2103, when was patient 025-33728 prescribed narcan and miralax at the same time? | CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE cost (costid number,uniquepid text,patienthealthsyste... | SELECT t1.drugstarttime FROM (SELECT patient.uniquepid, medication.drugstarttime FROM medication JOIN patient ON medication.patientunitstayid = patient.patientunitstayid WHERE medication.drugname = 'narcan' AND patient.uniquepid = '025-33728' AND STRFTIME('%y-%m', medication.drugstarttime) <= '2103-07') AS t1 JOIN (SEL... |
What stamp design has a denomination of $1.18? | CREATE TABLE table_name_33 (design VARCHAR,denomination VARCHAR) | SELECT design FROM table_name_33 WHERE denomination = "$1.18" |
what was the total amount of points scored between topolniky and union landhaus in the 1st match ? | CREATE TABLE table_204_230 (id number,"team #1" text,"agg." text,"team #2" text,"1st match" text,"2nd match" text) | SELECT "1st match" + "1st match" FROM table_204_230 WHERE "team #1" = 'topolniky' |
Which award is in the category of best music video? | CREATE TABLE table_name_55 (award VARCHAR,category VARCHAR) | SELECT award FROM table_name_55 WHERE category = "best music video" |
What is the highest SP+FS that has 131.02 Points, and a Rank larger than 15? | CREATE TABLE table_55520 ("Rank" real,"Name" text,"Nation" text,"SP+FS" real,"Points" real,"Places" real) | SELECT MAX("SP+FS") FROM table_55520 WHERE "Points" = '131.02' AND "Rank" > '15' |
What location had a final score of W 30 5? | CREATE TABLE table_52772 ("Week" real,"Date" text,"Opponent" text,"Location" text,"Final Score" text,"Attendance" text,"Record" text) | SELECT "Location" FROM table_52772 WHERE "Final Score" = 'w 30 – 5' |
how many patients with diagnoses icd9 code 99591 are below the age of 76? | CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug tex... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.age < "76" AND diagnoses.icd9_code = "99591" |
Show each county along with the number of schools, and could you rank by the x-axis in asc? | CREATE TABLE School (School_id text,School_name text,Location text,Mascot text,Enrollment int,IHSAA_Class text,IHSAA_Football_Class text,County text)CREATE TABLE budget (School_id int,Year int,Budgeted int,total_budget_percent_budgeted real,Invested int,total_budget_percent_invested real,Budget_invested_percent text)CR... | SELECT County, COUNT(*) FROM School GROUP BY County ORDER BY County |
What station on the network is tv3? | CREATE TABLE table_160728_4 (network VARCHAR,station VARCHAR) | SELECT network FROM table_160728_4 WHERE station = "TV3" |
what was the maximum yearly number of patients who were admitted for syst/diast hrt fail nos until 1 year ago? | CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE inputevents_... | SELECT MAX(t1.c1) FROM (SELECT COUNT(DISTINCT diagnoses_icd.hadm_id) AS c1 FROM diagnoses_icd WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'syst/diast hrt fail nos') AND DATETIME(diagnoses_icd.charttime) <= DATETIME(CURRENT_TIME(), '-1 year')... |
Compare the average of artists' age by country in a bar graph, and could you show Country from low to high order? | CREATE TABLE exhibition (Exhibition_ID int,Year int,Theme text,Artist_ID int,Ticket_Price real)CREATE TABLE exhibition_record (Exhibition_ID int,Date text,Attendance int)CREATE TABLE artist (Artist_ID int,Name text,Country text,Year_Join int,Age int) | SELECT Country, AVG(Age) FROM artist GROUP BY Country ORDER BY Country |
who has written the most papers on semantic parsing ? | CREATE TABLE paperfield (fieldid int,paperid int)CREATE TABLE paperdataset (paperid int,datasetid int)CREATE TABLE field (fieldid int)CREATE TABLE paper (paperid int,title varchar,venueid int,year int,numciting int,numcitedby int,journalid int)CREATE TABLE cite (citingpaperid int,citedpaperid int)CREATE TABLE dataset (... | SELECT DISTINCT COUNT(paper.paperid), writes.authorid FROM keyphrase, paper, paperkeyphrase, writes WHERE keyphrase.keyphrasename = 'semantic parsing' AND paperkeyphrase.keyphraseid = keyphrase.keyphraseid AND paper.paperid = paperkeyphrase.paperid AND writes.paperid = paper.paperid GROUP BY writes.authorid ORDER BY CO... |
what is the average potassium, whole blood value in 05/this year for patient 12367? | CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE... | SELECT AVG(labevents.valuenum) FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 12367) AND labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'potassium, whole blood') AND DATETIME(labevents.charttime, 'start of year')... |
Find the total number of hours have done for all students in each department. | CREATE TABLE student (dept_code VARCHAR,stu_hrs INTEGER) | SELECT SUM(stu_hrs), dept_code FROM student GROUP BY dept_code |
TAMPA to CHARLOTTE sunday morning | CREATE TABLE month (month_number int,month_name text)CREATE TABLE airline (airline_code varchar,airline_name text,note text)CREATE TABLE airport (airport_code varchar,airport_name text,airport_location text,state_code varchar,country_name varchar,time_zone_code varchar,minimum_connect_time int)CREATE TABLE date_day (mo... | SELECT DISTINCT flight_id FROM flight WHERE (((flight_days IN (SELECT DAYSalias0.days_code FROM days AS DAYSalias0 WHERE DAYSalias0.day_name IN (SELECT DATE_DAYalias0.day_name FROM date_day AS DATE_DAYalias0 WHERE DATE_DAYalias0.day_number = 27 AND DATE_DAYalias0.month_number = 8 AND DATE_DAYalias0.year = 1991)) AND to... |
give me long title of procedure and route of drug administration for patient marilyn norvell. | 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 (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ... | SELECT procedures.long_title, prescriptions.route FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.name = "Marilyn Norvell" |
What is the bronze number for the nation with less than 0 gold? | CREATE TABLE table_64839 ("Rank" real,"Nation" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real) | SELECT MIN("Bronze") FROM table_64839 WHERE "Gold" < '0' |
What round of the draft was Stan Adams selected? | CREATE TABLE table_45705 ("Round" real,"Player" text,"Position" text,"Nationality" text,"College/Junior/Club Team (League)" text) | SELECT AVG("Round") FROM table_45705 WHERE "Player" = 'stan adams' |
Which Total has a Set 2 of 19 25? | CREATE TABLE table_name_60 (total VARCHAR,set_2 VARCHAR) | SELECT total FROM table_name_60 WHERE set_2 = "19–25" |
What is the smallest crowd at the Victoria Park Venue? | CREATE TABLE table_name_94 (crowd INTEGER,venue VARCHAR) | SELECT MIN(crowd) FROM table_name_94 WHERE venue = "victoria park" |
What is the Rank of the Officer with Badge/Serial Number 11755 who died in Gunfire? | CREATE TABLE table_name_17 (rank VARCHAR,cause_of_death VARCHAR,badge_serial_number VARCHAR) | SELECT rank FROM table_name_17 WHERE cause_of_death = "gunfire" AND badge_serial_number = "11755" |
How much is the money ($) when the country is united states, to par is e and the score is 72-75-70-71=288? | CREATE TABLE table_name_59 (money___ INTEGER,country VARCHAR,to_par VARCHAR,score VARCHAR) | SELECT SUM(money___) AS $__ FROM table_name_59 WHERE country = "united states" AND to_par = "e" AND score = 72 - 75 - 70 - 71 = 288 |
What is the pole position for the ferrari at the austrian grand prix? | CREATE TABLE table_1132588_3 (pole_position VARCHAR,constructor VARCHAR,grand_prix VARCHAR) | SELECT pole_position FROM table_1132588_3 WHERE constructor = "Ferrari" AND grand_prix = "Austrian grand_prix" |
Name the district for newtown square | CREATE TABLE table_1979619_3 (district INTEGER,residence VARCHAR) | SELECT MIN(district) FROM table_1979619_3 WHERE residence = "Newtown Square" |
Tell me the build year for total production of 150 | CREATE TABLE table_name_44 (build_year VARCHAR,total_production VARCHAR) | SELECT build_year FROM table_name_44 WHERE total_production = 150 |
Who were the pictorials when the centerfold model was Ava Fabian? | CREATE TABLE table_1566848_7 (pictorials VARCHAR,centerfold_model VARCHAR) | SELECT pictorials FROM table_1566848_7 WHERE centerfold_model = "Ava Fabian" |
Retrieve Answered Posts Tagged as 'Java' (and may contain othe) Created In The Month of January 2018. | CREATE TABLE SuggestedEditVotes (Id number,SuggestedEditId number,UserId number,VoteTypeId number,CreationDate time,TargetUserId number,TargetRepChange number)CREATE TABLE TagSynonyms (Id number,SourceTagName text,TargetTagName text,CreationDate time,OwnerUserId number,AutoRenameCount number,LastAutoRename time,Score n... | SELECT Q.Id, Q.AcceptedAnswerId, Q.CreationDate, Q.Score, Q.Body AS "Question Body", Q.Title AS "Question Title", A.Body AS "Answer Body", Q.Tags FROM Posts AS Q INNER JOIN Posts AS A ON Q.AcceptedAnswerId = A.Id INNER JOIN PostTags AS PT ON PT.PostId = Q.Id WHERE PT.TagId = 17 AND Q.CreationDate BETWEEN '2018-01-01' A... |
What is the number of wins that has a top-10 of 2, and more events than 8, more cuts than 6? | CREATE TABLE table_12071 ("Tournament" text,"Wins" real,"Top-5" real,"Top-10" real,"Top-25" real,"Events" real,"Cuts made" real) | SELECT COUNT("Wins") FROM table_12071 WHERE "Top-10" = '2' AND "Events" > '8' AND "Cuts made" > '6' |
How many times did Keith Downing depart a position? | CREATE TABLE table_18788823_5 (position_in_table VARCHAR,outgoing_manager VARCHAR) | SELECT COUNT(position_in_table) FROM table_18788823_5 WHERE outgoing_manager = "Keith Downing" |
Stack Overflow questions with outstanding close votes (PHP Tag). A list of Stack Overflow questions with outstanding close votes, sorted by number of votes. | CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE PostFeedback (Id number,PostId number,IsAnonymous boolean,VoteTypeId number,CreationDate time)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE Comments (Id number,PostId number,Score number,Text text,CreationDate time,UserDisplayName text,UserId number,Co... | SELECT * FROM (SELECT Posts.Id AS "post_link", AVG(Posts.Score) AS "score", COUNT(*) AS "close_votes", MAX(Votes.CreationDate) AS "last_vote", MIN(Votes.CreationDate) AS "first_vote" FROM Posts INNER JOIN Votes ON Posts.Id = Votes.PostId WHERE Votes.VoteTypeId = 6 AND Posts.ClosedDate IS NULL AND Posts.Tags LIKE '%<php... |
On what date was the venue at Brisbane Cricket Ground? | CREATE TABLE table_name_95 (date VARCHAR,venue VARCHAR) | SELECT date FROM table_name_95 WHERE venue = "brisbane cricket ground" |
What is the average number of goals for players ranked above 9 and playing more than 205 matches? | CREATE TABLE table_name_91 (goals INTEGER,matches VARCHAR,rank VARCHAR) | SELECT AVG(goals) FROM table_name_91 WHERE matches = 205 AND rank > 9 |
Specify the number of patients who were discharged to home after sm bowel endoscopy nec | 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 lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.discharge_location = "HOME HEALTH CARE" AND procedures.short_title = "Sm bowel endoscopy NEC" |
What is the lowest Built, when Floors is greater than 23, and when Rank is 3? | CREATE TABLE table_75910 ("Rank" real,"Name" text,"Built" real,"Height" text,"Floors" real) | SELECT MIN("Built") FROM table_75910 WHERE "Floors" > '23' AND "Rank" = '3' |
For all employees who have the letters D or S in their first name, return a bar chart about the distribution of job_id and the sum of manager_id , and group by attribute job_id, list y-axis in descending order. | 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 regions (REGION_ID decimal(5,0),REGION_NAME varchar(25))CREATE TABLE job_history (EMPLOYEE_ID decimal(6,0),START_DATE date,END_DATE date,JOB_... | SELECT JOB_ID, SUM(MANAGER_ID) FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' GROUP BY JOB_ID ORDER BY SUM(MANAGER_ID) DESC |
what average grid has laps larger than 52 and contains the driver of andrea de adamich? | CREATE TABLE table_name_36 (grid INTEGER,laps VARCHAR,driver VARCHAR) | SELECT AVG(grid) FROM table_name_36 WHERE laps > 52 AND driver = "andrea de adamich" |
how many patients were treated with a procedure-one vessel since 6 years ago? | CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)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 admissions (row_id number,subject_id number,hadm_id ... | SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE admissions.hadm_id IN (SELECT procedures_icd.hadm_id FROM procedures_icd WHERE procedures_icd.icd9_code = (SELECT d_icd_procedures.icd9_code FROM d_icd_procedures WHERE d_icd_procedures.short_title = 'procedure-one vessel') AND DATETIME(procedures_icd.c... |
What is the maximum length in meters for the bridges and what are the architects' names? | CREATE TABLE bridge (length_meters INTEGER,architect_id VARCHAR)CREATE TABLE architect (name VARCHAR,id VARCHAR) | SELECT MAX(T1.length_meters), T2.name FROM bridge AS T1 JOIN architect AS T2 ON T1.architect_id = T2.id |
For those employees who was hired before 2002-06-21, draw a bar chart about the distribution of job_id and the sum of department_id , and group by attribute job_id, rank by the bars in desc please. | 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 countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAI... | SELECT JOB_ID, SUM(DEPARTMENT_ID) FROM employees WHERE HIRE_DATE < '2002-06-21' GROUP BY JOB_ID ORDER BY JOB_ID DESC |
what did patient 028-45581 get diagnosed with in 2102 for the first time? | 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,hospitaladmitsource text,unitadmittime time,unitdischargetime tim... | SELECT diagnosis.diagnosisname FROM diagnosis WHERE diagnosis.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '028-45581')) AND STRFTIME('%y', diagnosis.diagnosistime) = '2102'... |
What are the denomination more than one school have? | CREATE TABLE school (school_id number,school text,location text,enrollment number,founded number,denomination text,boys_or_girls text,day_or_boarding text,year_entered_competition number,school_colors text)CREATE TABLE school_details (school_id number,nickname text,colors text,league text,class text,division text)CREAT... | SELECT denomination FROM school GROUP BY denomination HAVING COUNT(*) > 1 |
Which week had an attendance of 70,225 | CREATE TABLE table_32402 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Attendance" text) | SELECT MIN("Week") FROM table_32402 WHERE "Attendance" = '70,225' |
Name the profits for market value of 11.8 | CREATE TABLE table_19112_3 (profits__billion_$_ VARCHAR,market_value__billion_$_ VARCHAR) | SELECT profits__billion_$_ FROM table_19112_3 WHERE market_value__billion_$_ = "11.8" |
how many patients are diagnosed with urinary tract infection nos and have sI drug route? | 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 lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid ... | 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.short_title = "Urin tract infection NOS" AND prescriptions.route = "SL" |
For those employees who was hired before 2002-06-21, show me about the distribution of job_id and the amount of job_id , and group by attribute job_id in a bar chart, and show Y-axis in descending order. | CREATE TABLE regions (REGION_ID decimal(5,0),REGION_NAME varchar(25))CREATE TABLE jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN_SALARY decimal(6,0),MAX_SALARY decimal(6,0))CREATE TABLE locations (LOCATION_ID decimal(4,0),STREET_ADDRESS varchar(40),POSTAL_CODE varchar(12),CITY varchar(30),STATE_PROVINCE varchar(25)... | SELECT JOB_ID, COUNT(JOB_ID) FROM employees WHERE HIRE_DATE < '2002-06-21' GROUP BY JOB_ID ORDER BY COUNT(JOB_ID) DESC |
What was the date of the game that had a score of 3 1? | CREATE TABLE table_name_60 (date VARCHAR,score VARCHAR) | SELECT date FROM table_name_60 WHERE score = "3 – 1" |
What is the score of the Boston Bruins game from April 11? | CREATE TABLE table_35778 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Record" text) | SELECT "Score" FROM table_35778 WHERE "Home" = 'boston bruins' AND "Date" = 'april 11' |
Name the number of events for reset points being 98625 | CREATE TABLE table_1964 ("#" real,"Player" text,"Country" text,"Points" real,"Events" real,"Reset Points" real) | SELECT COUNT("Events") FROM table_1964 WHERE "Reset Points" = '98625' |
What is the cumulative time (min and seconds) that has more than 6 seconds in shuttle time and a total level time of 64.8 seconds? | CREATE TABLE table_name_93 (cumulative_time__min_and_seconds_ VARCHAR,shuttle_time__seconds_ VARCHAR,total_level_time__s_ VARCHAR) | SELECT cumulative_time__min_and_seconds_ FROM table_name_93 WHERE shuttle_time__seconds_ > 6 AND total_level_time__s_ = 64.8 |
Most recent comments on answers in a given tag. | CREATE TABLE PostNotices (Id number,PostId number,PostNoticeTypeId number,CreationDate time,DeletionDate time,ExpiryDate time,Body text,OwnerUserId number,DeletionUserId number)CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,CreationDate time,RejectionReasonId number,Comment ... | SELECT c.UserId AS "user_link", c.CreationDate, c.Id AS "comment_link", c.PostId AS "post_link", c.Text FROM Comments AS c JOIN Posts AS p ON c.PostId = p.Id JOIN Posts AS q ON p.ParentId = q.Id WHERE (p.PostTypeId = 2) AND (q.Tags LIKE '%<##tagName?gn.general-topology##>%') ORDER BY CreationDate DESC LIMIT 500 |
What is the average upper index MJ/Nm 3 for the upper index Kcal/Nm 3 entry of 19,376? | CREATE TABLE table_64432 ("Fuel gas" text,"Upper index Kcal/ Nm 3" real,"Lower index Kcal/ Nm 3" real,"Upper index MJ/ Nm 3" real,"Lower index MJ/ Nm 3" real) | SELECT AVG("Upper index MJ/ Nm 3") FROM table_64432 WHERE "Upper index Kcal/ Nm 3" = '19,376' |
Name the total viewers on fx+ for night on the sun | CREATE TABLE table_28750 ("Episode number (Production number)" text,"Title" text,"Original air date" text,"Total viewers on FX" text,"Total viewers on FX+" text,"Total viewers" text,"Rank on channel" text) | SELECT "Total viewers on FX+" FROM table_28750 WHERE "Title" = 'Night on the Sun' |
What is the chassis for Bruce Mclaren with all rounds and a g tyre? | CREATE TABLE table_58507 ("Constructor" text,"Chassis" text,"Engine" text,"Tyre" text,"Driver" text,"Rounds" text) | SELECT "Chassis" FROM table_58507 WHERE "Rounds" = 'all' AND "Tyre" = 'g' AND "Driver" = 'bruce mclaren' |
what artist won in 1953 | CREATE TABLE table_name_41 (artist VARCHAR,year VARCHAR) | SELECT artist FROM table_name_41 WHERE year = "1953" |
Which one of the duration has a translation of 1000 lies? | CREATE TABLE table_name_73 (duration VARCHAR,translation VARCHAR) | SELECT duration FROM table_name_73 WHERE translation = "1000 lies" |
What is the total number of cuts made when the events are more than 3? | CREATE TABLE table_name_47 (cuts_made VARCHAR,events INTEGER) | SELECT COUNT(cuts_made) FROM table_name_47 WHERE events > 3 |
What is the greatest goals for Curtis Davies if ends is greater than 2012? | CREATE TABLE table_name_9 (goals INTEGER,name VARCHAR,ends VARCHAR) | SELECT MAX(goals) FROM table_name_9 WHERE name = "curtis davies" AND ends > 2012 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.