instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
tell me the four year survival rate of patients who have been prescribed morphine 4 mg/ml syringe : 1 ml syringe after they were diagnosed with biliary obstruction - cholelithiasis? | CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature number,sao2 number,heartrate number,respiration number,systemicsystolic number,systemicdiastolic number,systemicmean number,obs... | SELECT SUM(CASE WHEN patient.hospitaldischargestatus = 'alive' THEN 1 WHEN STRFTIME('%j', patient.hospitaldischargetime) - STRFTIME('%j', t4.diagnosistime) > 4 * 365 THEN 1 ELSE 0 END) * 100 / COUNT(*) FROM (SELECT t2.uniquepid, t2.diagnosistime FROM (SELECT t1.uniquepid, t1.diagnosistime FROM (SELECT patient.uniquepid... |
Name the 3rd person pl for ~ | CREATE TABLE table_27800 ("Case" text,"1st pers. sing." text,"2nd pers. sing." text,"3rd pers. sing." text,"1st pers. pl" text,"2nd pers. pl." text,"3rd pers pl." text) | SELECT "3rd pers pl." FROM table_27800 WHERE "2nd pers. sing." = 'тонэн ~ тонэныд' |
What is the least amount of matches? | CREATE TABLE table_30113 ("Player" text,"Matches" real,"Innings" real,"Wickets" real,"Average" text,"BBI" text,"BBM" text,"5wi" real) | SELECT MIN("Matches") FROM table_30113 |
On September 7 what was the record? | CREATE TABLE table_name_63 (record VARCHAR,date VARCHAR) | SELECT record FROM table_name_63 WHERE date = "september 7" |
How many mills of 'Grondzeiler' type are built in each year? Give me the trend. | CREATE TABLE bridge (architect_id int,id int,name text,location text,length_meters real,length_feet real)CREATE TABLE architect (id text,name text,nationality text,gender text)CREATE TABLE mill (architect_id int,id int,location text,name text,type text,built_year int,notes text) | SELECT built_year, COUNT(built_year) FROM mill WHERE type = 'Grondzeiler' |
presence of panel reactive antibodies > 20 % | CREATE TABLE table_dev_5 ("id" int,"anemia" bool,"gender" string,"hiv_infection" bool,"hemoglobin_a1c_hba1c" float,"panel_reactive_antibodies" int,"psa" int,"body_mass_index_bmi" float,"NOUSE" float) | SELECT * FROM table_dev_5 WHERE panel_reactive_antibodies > 20 |
How many spectators were at the away team Carlton? | CREATE TABLE table_name_14 (crowd VARCHAR,away_team VARCHAR) | SELECT crowd FROM table_name_14 WHERE away_team = "carlton" |
What is the Pressure in hPa (mbar), when Vacuum Range is 'medium vacuum'? | CREATE TABLE table_43601 ("Vacuum range" text,"Pressure in hPa (mbar)" text,"Molecules / cm 3" text,"Molecules / m 3" text,"Mean free path" text) | SELECT "Pressure in hPa (mbar)" FROM table_43601 WHERE "Vacuum range" = 'medium vacuum' |
What is the goal average 1 for teams that lost 9 games? | CREATE TABLE table_17357929_1 (goal_average_1 VARCHAR,lost VARCHAR) | SELECT goal_average_1 FROM table_17357929_1 WHERE lost = 9 |
What is the score of the friendly match? | CREATE TABLE table_38348 ("Date" text,"Venue" text,"Score" text,"Result" text,"Competition" text) | SELECT "Score" FROM table_38348 WHERE "Competition" = 'friendly match' |
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, find hire_date and the sum of manager_id bin hire_date by weekday, and visualize them by a bar chart, I want to sort by the total number in desc. | CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAIL varchar(25),PHONE_NUMBER varchar(20),HIRE_DATE date,JOB_ID varchar(10),SALARY decimal(8,2),COMMISSION_PCT decimal(2,2),MANAGER_ID decimal(6,0),DEPARTMENT_ID decimal(4,0))CREATE TABLE locations (LOCATION_ID decimal(4,0),S... | SELECT HIRE_DATE, SUM(MANAGER_ID) FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40 ORDER BY SUM(MANAGER_ID) DESC |
What is the rank of the chinese title ? | CREATE TABLE table_11173827_1 (rank VARCHAR,chinese_title VARCHAR) | SELECT rank FROM table_11173827_1 WHERE chinese_title = "緣來自有機" |
How many unique users responded to each question?. | CREATE TABLE SuggestedEditVotes (Id number,SuggestedEditId number,UserId number,VoteTypeId number,CreationDate time,TargetUserId number,TargetRepChange number)CREATE TABLE PostTags (PostId number,TagId number)CREATE TABLE CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance te... | SELECT COUNT(DISTINCT Comments.UserId) FROM Posts JOIN Comments ON Posts.Id = Comments.PostId WHERE Posts.ParentId = 520210 |
What is the Name of the D Player born on 1983-07-19? | CREATE TABLE table_60544 ("Name" text,"Pos." text,"Height" text,"Weight" text,"Date of Birth" text,"Club" text) | SELECT "Name" FROM table_60544 WHERE "Pos." = 'd' AND "Date of Birth" = '1983-07-19' |
What is the least amount of losses for the team that had more than 0 draws during the seasons earlier than 1926? | CREATE TABLE table_35620 ("Season" real,"Team" text,"Wins" real,"Losses" real,"Draws" real) | SELECT MIN("Losses") FROM table_35620 WHERE "Draws" > '0' AND "Season" < '1926' |
count the number of non-invasive mech vent procedures performed in 2104. | CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,chart... | SELECT COUNT(*) FROM procedures_icd WHERE procedures_icd.icd9_code = (SELECT d_icd_procedures.icd9_code FROM d_icd_procedures WHERE d_icd_procedures.short_title = 'non-invasive mech vent') AND STRFTIME('%y', procedures_icd.charttime) = '2104' |
When volleyball has 2 bronze, what is the total number of silver? | CREATE TABLE table_name_28 (silver VARCHAR,bronze VARCHAR,sport VARCHAR) | SELECT COUNT(silver) FROM table_name_28 WHERE bronze = 2 AND sport = "volleyball" |
list all flights leaving DENVER between 2000 and 2100 | CREATE TABLE flight_leg (flight_id int,leg_number int,leg_flight int)CREATE TABLE date_day (month_number int,day_number int,year int,day_name varchar)CREATE TABLE food_service (meal_code text,meal_number int,compartment text,meal_description varchar)CREATE TABLE time_interval (period text,begin_time int,end_time int)CR... | SELECT DISTINCT flight_id FROM flight WHERE ((departure_time <= 2100 AND departure_time >= 2000) AND from_airport IN (SELECT AIRPORT_SERVICEalias0.airport_code FROM airport_service AS AIRPORT_SERVICEalias0 WHERE AIRPORT_SERVICEalias0.city_code IN (SELECT CITYalias0.city_code FROM city AS CITYalias0 WHERE CITYalias0.cit... |
Tell me the drug type and route of administration of QUET200. | 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 text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE diagnoses (subject_id text,hadm_id tex... | SELECT prescriptions.drug_type, prescriptions.route FROM prescriptions WHERE prescriptions.formulary_drug_cd = "QUET200" |
What is the score of the Boston Bruins away game on March 13? | CREATE TABLE table_69610 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Record" text) | SELECT "Score" FROM table_69610 WHERE "Visitor" = 'boston bruins' AND "Date" = 'march 13' |
count the number of patients whose admission location is clinic referral/premature and drug code is niac100? | 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)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.admission_location = "CLINIC REFERRAL/PREMATURE" AND prescriptions.formulary_drug_cd = "NIAC100" |
What is the lowest bronze total that has a rank of 1 and more than 34 total medals? | CREATE TABLE table_name_83 (bronze INTEGER,rank VARCHAR,total VARCHAR) | SELECT MIN(bronze) FROM table_name_83 WHERE rank = "1" AND total > 34 |
what is the drug that patient 029-7028 was prescribed with within 2 days after the oxygen therapy (> 60%) - reduce fio2 as tolerated in 09/last year? | 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 t2.drugname FROM (SELECT patient.uniquepid, treatment.treatmenttime FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '029-7028') AND treatment.treatmen... |
What drop has a 0 conv and Tries of 6? | CREATE TABLE table_32838 ("Player" text,"Span" text,"Start" text,"Tries" text,"Conv" text,"Pens" text,"Drop" text,"Lost" text,"Draw" text) | SELECT "Drop" FROM table_32838 WHERE "Conv" = '0' AND "Tries" = '6' |
What opponent has april 23 as the date? | CREATE TABLE table_name_81 (opponent VARCHAR,date VARCHAR) | SELECT opponent FROM table_name_81 WHERE date = "april 23" |
CLEVELAND to MIAMI on wednesday arriving before 1600 | CREATE TABLE time_interval (period text,begin_time int,end_time int)CREATE TABLE code_description (code varchar,description text)CREATE TABLE fare_basis (fare_basis_code text,booking_class text,class_type text,premium text,economy text,discounted text,night text,season text,basis_days text)CREATE TABLE compartment_clas... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE ((date_day.day_number = 23 AND date_day.month_number = 4 AND date_day.year = 1991 AND days.day_name = date_day.day_name AND flight.arrival_time <... |
What constructor has a grid less than 13 with under 9 laps? | CREATE TABLE table_51830 ("Driver" text,"Constructor" text,"Laps" real,"Time/Retired" text,"Grid" real) | SELECT "Constructor" FROM table_51830 WHERE "Grid" < '13' AND "Laps" < '9' |
How many classes of the upper level have labs ? | CREATE TABLE course (course_id int,name varchar,department varchar,number varchar,credits varchar,advisory_requirement varchar,enforced_requirement varchar,description varchar,num_semesters int,num_enrolled int,has_discussion varchar,has_lab varchar,has_projects varchar,has_exams varchar,num_reviews int,clarity_score i... | SELECT COUNT(DISTINCT course.course_id) FROM course INNER JOIN program_course ON program_course.course_id = course.course_id WHERE course.has_lab = 'Y' AND program_course.category LIKE '%ULCS%' |
What is the Block A value for an El NOSAWA Mendoza value of kondo (7:08)? | CREATE TABLE table_name_14 (block_a VARCHAR,el_nosawa_mendoza VARCHAR) | SELECT block_a FROM table_name_14 WHERE el_nosawa_mendoza = "kondo (7:08)" |
Who was the head coach in season 2? | CREATE TABLE table_19075 ("Previous season" text,"Team" text,"Town" text,"Arena (capacity)" text,"Website" text,"Head Coach" text,"Foreign Players (max. 2)" text) | SELECT "Head Coach" FROM table_19075 WHERE "Previous season" = '2' |
Name the result for augustine h. shepperd (j) 100% | CREATE TABLE table_73998 ("District" text,"Incumbent" text,"Party" text,"First elected" text,"Result" text,"Candidates" text) | SELECT "Result" FROM table_73998 WHERE "Candidates" = 'Augustine H. Shepperd (J) 100%' |
Which physicians are trained in procedures that are more expensive than 5000, and count them by a bar chart | CREATE TABLE Procedures (Code INTEGER,Name VARCHAR(30),Cost REAL)CREATE TABLE Nurse (EmployeeID INTEGER,Name VARCHAR(30),Position VARCHAR(30),Registered BOOLEAN,SSN INTEGER)CREATE TABLE Undergoes (Patient INTEGER,Procedures INTEGER,Stay INTEGER,DateUndergoes DATETIME,Physician INTEGER,AssistingNurse INTEGER)CREATE TABL... | SELECT T1.Name, COUNT(T1.Name) FROM Physician AS T1 JOIN Trained_In AS T2 ON T1.EmployeeID = T2.Physician JOIN Procedures AS T3 ON T3.Code = T2.Treatment WHERE T3.Cost > 5000 GROUP BY T1.Name |
how many patients whose ethnicity is american indian/alaska native and year of birth is less than 2134? | 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 text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE procedures (subject_id text,hadm_id te... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.ethnicity = "AMERICAN INDIAN/ALASKA NATIVE" AND demographic.dob_year < "2134" |
has the respiratory rate of patient 28443 in 12/2105 ever been less than 24.0? | 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)CREATE TABLE transfers (row_id number,subject_id number,hadm_id numb... | SELECT COUNT(*) > 0 FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 28443)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'respiratory rate'... |
Rep distribution - Distrubucion de la Reputacion. es
==
Generates a data table suitable for graphing Rep distribution, as a metric of site performance.
Genera una dabka de datos apropiada para graficar la distribuci n de la reputaci n como m trica de desempe o de un sitio | CREATE TABLE PostFeedback (Id number,PostId number,IsAnonymous boolean,VoteTypeId number,CreationDate time)CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE FlagTypes (Id number,Name text,Description text)CREATE TA... | SELECT ROUND(Reputation / '##Width##', 0) * '##Width##' AS Rep, COUNT(*) AS number_of_users FROM (SELECT * FROM Users WHERE Reputation > 101) AS a GROUP BY ROUND(Reputation / '##Width##', 0) * '##Width##' ORDER BY ROUND(Reputation / '##Width##', 0) * '##Width##' |
What is the per capita income of the county with a median family income of $40,492? | CREATE TABLE table_name_61 (per_capita_income VARCHAR,median_family_income VARCHAR) | SELECT per_capita_income FROM table_name_61 WHERE median_family_income = "$40,492" |
Name the howard bake when bush had 66% | CREATE TABLE table_name_64 (howard_baker VARCHAR,george_h_w_bush VARCHAR) | SELECT howard_baker FROM table_name_64 WHERE george_h_w_bush = "66%" |
all flights from BOSTON to WASHINGTON on 11 11 | CREATE TABLE airline (airline_code varchar,airline_name text,note text)CREATE TABLE aircraft (aircraft_code varchar,aircraft_description varchar,manufacturer varchar,basic_type varchar,engines int,propulsion varchar,wide_body varchar,wing_span int,length int,weight int,capacity int,pay_load int,cruising_speed int,range... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE (CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'WASHINGTON' AND date_day.day_number = 11 AND date_day.month_number = 11 A... |
Top Android Users in Poland. | CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE SuggestedEditVotes (Id number,SuggestedEditId number,UserId number,VoteTypeId number,CreationDate time,TargetUserId number,TargetRepChange number)CREATE TABLE Badges (Id number,UserId number,Name text,Date time,Class number,TagBased boolean)CREATE TABLE PostTags ... | WITH USER_BY_TAG AS (SELECT ROW_NUMBER() OVER (ORDER BY COUNT(*) DESC) AS Rank, u.Id AS "user_link", COUNT(*) AS UpVotes FROM Tags AS t INNER JOIN PostTags AS pt ON pt.TagId = t.Id INNER JOIN Posts AS p ON p.ParentId = pt.PostId INNER JOIN Votes AS v ON v.PostId = p.Id AND VoteTypeId = 2 INNER JOIN Users AS u ON u.Id =... |
What is the host in a year greater than 1989 and when the venue is the Staples Center located in California? | CREATE TABLE table_name_12 (host VARCHAR,venue VARCHAR,year VARCHAR,state VARCHAR) | SELECT host FROM table_name_12 WHERE year > 1989 AND state = "california" AND venue = "staples center" |
What is Accolade, when Country is 'United States', and when Year is '1999'? | CREATE TABLE table_44205 ("Publication" text,"Country" text,"Accolade" text,"Year" real,"Rank" real) | SELECT "Accolade" FROM table_44205 WHERE "Country" = 'united states' AND "Year" = '1999' |
Which Result has a Game of game 1? | CREATE TABLE table_58703 ("Game" text,"Date" text,"Home Team" text,"Result" text,"Road Team" text) | SELECT "Result" FROM table_58703 WHERE "Game" = 'game 1' |
Name the typed for formed from 6-pul trailer third in res unit | CREATE TABLE table_80044 ("Units" text,"Type" text,"Period used" text,"Formed from" text,"Trailers" text) | SELECT "Type" FROM table_80044 WHERE "Formed from" = '6-pul trailer third in res unit' |
Which To par has a Player of tom watson? | CREATE TABLE table_12205 ("Player" text,"Country" text,"Year(s) won" text,"Total" real,"To par" text,"Finish" text) | SELECT "To par" FROM table_12205 WHERE "Player" = 'tom watson' |
For those employees who do not work in departments with managers that have ids between 100 and 200, give me the comparison about employee_id over the last_name . | CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAIL varchar(25),PHONE_NUMBER varchar(20),HIRE_DATE date,JOB_ID varchar(10),SALARY decimal(8,2),COMMISSION_PCT decimal(2,2),MANAGER_ID decimal(6,0),DEPARTMENT_ID decimal(4,0))CREATE TABLE locations (LOCATION_ID decimal(4,0),S... | SELECT LAST_NAME, EMPLOYEE_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) |
For each file format, return the number of artists who released songs in that format Show bar chart, and show by the X in asc. | CREATE TABLE files (f_id number(10),artist_name varchar2(50),file_size varchar2(20),duration varchar2(20),formats varchar2(20))CREATE TABLE genre (g_name varchar2(20),rating varchar2(10),most_popular_in varchar2(50))CREATE TABLE song (song_name varchar2(50),artist_name varchar2(50),country varchar2(20),f_id number(10),... | SELECT formats, COUNT(*) FROM files GROUP BY formats ORDER BY formats |
What is the least total seasons of the Vancouver 86ers? | CREATE TABLE table_name_58 (total_seasons INTEGER,team VARCHAR) | SELECT MIN(total_seasons) FROM table_name_58 WHERE team = "vancouver 86ers" |
What title runs for 3:22? | CREATE TABLE table_52754 ("Title" text,"Author(s)" text,"Recorded" text,"Location(s)" text,"Time" text) | SELECT "Title" FROM table_52754 WHERE "Time" = '3:22' |
Number of up- and downvotes per day - 2. | CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,CreationDate time,RejectionReasonId number,Comment text)CREATE TABLE SuggestedEdits (Id number,PostId number,CreationDate time,ApprovalDate time,RejectionDate time,OwnerUserId number,Comment text,Text text,Title text,Tags text,R... | SELECT CreationDate, SUM(CASE VoteTypeId WHEN 2 THEN 1 ELSE 0 END) AS "Upvotes", SUM(CASE VoteTypeId WHEN 3 THEN 1 ELSE 0 END) AS "Downvotes" FROM Votes WHERE CreationDate >= '2019-09-01' AND VoteTypeId IN (2, 3) GROUP BY CreationDate ORDER BY CreationDate |
what was neha 's last film ? | CREATE TABLE table_203_157 (id number,"year" number,"film" text,"role" text,"language" text,"notes" text) | SELECT "film" FROM table_203_157 ORDER BY id DESC LIMIT 1 |
Give me the comparison about Team_ID over the All_Home , and group by attribute ACC_Home by a bar chart, and could you rank in desc by the Y? | 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_Percent text,ACC_Home text,ACC_Road text,All_Games text,All_Games_Perce... | SELECT All_Home, Team_ID FROM basketball_match GROUP BY ACC_Home, All_Home ORDER BY Team_ID DESC |
Find the highest rank of all reviews. | CREATE TABLE item (i_id number,title text)CREATE TABLE trust (source_u_id number,target_u_id number,trust number)CREATE TABLE review (a_id number,u_id number,i_id number,rating number,rank number)CREATE TABLE useracct (u_id number,name text) | SELECT MIN(rank) FROM review |
what is the average price for each type of product?, and show y-axis in descending order. | CREATE TABLE Suppliers (supplier_id INTEGER,supplier_name VARCHAR(80),supplier_phone VARCHAR(80))CREATE TABLE Customer_Addresses (customer_id INTEGER,address_id INTEGER,date_from DATETIME,date_to DATETIME)CREATE TABLE Customers (customer_id INTEGER,payment_method_code VARCHAR(10),customer_code VARCHAR(20),customer_name... | SELECT product_type_code, AVG(product_price) FROM Products GROUP BY product_type_code ORDER BY AVG(product_price) DESC |
How much Capacity has a Vehicle of 2003 holden commodore ute? | CREATE TABLE table_63009 ("Driver" text,"Navigator" text,"Vehicle" text,"Class" text,"Capacity" real,"Total Time" text,"Margin" text) | SELECT COUNT("Capacity") FROM table_63009 WHERE "Vehicle" = '2003 holden commodore ute' |
patient 002-38474 was since 5 years ago in the emergency room? | CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,tempe... | SELECT COUNT(*) > 0 FROM patient WHERE patient.uniquepid = '002-38474' AND patient.hospitaladmitsource = 'emergency department' AND DATETIME(patient.unitadmittime) >= DATETIME(CURRENT_TIME(), '-5 year') |
Which championship had the final opponents of nathalie dechy andy ram? | CREATE TABLE table_1729366_2 (championship VARCHAR,opponents_in_the_final VARCHAR) | SELECT championship FROM table_1729366_2 WHERE opponents_in_the_final = "Nathalie Dechy Andy Ram" |
Top Users from Algeria /. | CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPostId number,LinkTypeId number)CREATE TABLE ReviewTasks (Id number,ReviewTaskTypeId number,CreationDate time,DeletionDate time,ReviewTaskStateId number,PostId number,SuggestedEditId number,CompletedByReviewTaskId number)CREATE TABLE PostTags (Pos... | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation, Location, WebsiteUrl AS Wesbite, LastAccessDate AS Seen, CreationDate FROM Users WHERE Reputation >= '##MinimalReputation:int?1##' AND (UPPER(Location) LIKE UPPER('%Algeria%') OR UPPER(Location) LIKE UPPER('%Algerie%') OR UPPER(L... |
Bar graph to show the total number from different formats, and display by the the total number in asc please. | CREATE TABLE genre (g_name varchar2(20),rating varchar2(10),most_popular_in varchar2(50))CREATE TABLE files (f_id number(10),artist_name varchar2(50),file_size varchar2(20),duration varchar2(20),formats varchar2(20))CREATE TABLE artist (artist_name varchar2(50),country varchar2(20),gender varchar2(20),preferred_genre v... | SELECT formats, COUNT(*) FROM files GROUP BY formats ORDER BY COUNT(*) |
Which members of 'Bootup Baltimore' major in '600'? Give me their first names and last names. | CREATE TABLE member_of_club (stuid number,clubid number,position text)CREATE TABLE student (stuid number,lname text,fname text,age number,sex text,major number,advisor number,city_code text)CREATE TABLE club (clubid number,clubname text,clubdesc text,clublocation text) | SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore" AND t3.major = "600" |
Which classes being offered this Spring-Summer are upper-level WRITING ? | 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, program_course, semester WHERE course.course_id = course_offering.course_id AND course.department = 'WRITING' AND program_course.category LIKE '%ULCS%' AND program_course.course_id = course.course_id AND semester.semester = 'Spr... |
How many episodes had the us viewers (millions) figure of 5.0? | CREATE TABLE table_21312959_1 (no_in_season VARCHAR,us_viewers__millions_ VARCHAR) | SELECT COUNT(no_in_season) FROM table_21312959_1 WHERE us_viewers__millions_ = "5.0" |
i want a list of flights from PITTSBURGH to BALTIMORE on thursday that arrive in BALTIMORE before 1000 | CREATE TABLE flight_leg (flight_id int,leg_number int,leg_flight int)CREATE TABLE date_day (month_number int,day_number int,year int,day_name varchar)CREATE TABLE food_service (meal_code text,meal_number int,compartment text,meal_description varchar)CREATE TABLE time_interval (period text,begin_time int,end_time int)CR... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE ((date_day.day_number = 24 AND date_day.month_number = 5 AND date_day.year = 1991 AND days.day_name = date_day.day_name AND flight.arrival_time <... |
In which season were there Wins of 29 and a Finished place of 3rd? | CREATE TABLE table_41080 ("Season" text,"Division" text,"Finish" text,"Wins" text,"Losses" text,"Pct." text) | SELECT "Season" FROM table_41080 WHERE "Wins" = '29' AND "Finish" = '3rd' |
What is the Theme Song of the show on Fuji TV Station with Average Ratings of 16.65%? | CREATE TABLE table_79254 ("Japanese Title" text,"Romaji Title" text,"TV Station" text,"Theme Song(s)" text,"Episodes" real,"Average Ratings" text) | SELECT "Theme Song(s)" FROM table_79254 WHERE "TV Station" = 'fuji tv' AND "Average Ratings" = '16.65%' |
Give me the title and highest price for each film Show bar chart, could you display in ascending by the x-axis? | CREATE TABLE cinema (Cinema_ID int,Name text,Openning_year int,Capacity int,Location text)CREATE TABLE schedule (Cinema_ID int,Film_ID int,Date text,Show_times_per_day int,Price float)CREATE TABLE film (Film_ID int,Rank_in_series int,Number_in_season int,Title text,Directed_by text,Original_air_date text,Production_cod... | SELECT Title, MAX(T1.Price) FROM schedule AS T1 JOIN film AS T2 ON T1.Film_ID = T2.Film_ID GROUP BY Title ORDER BY Title |
Which Matches is on 24 march 1963 with a Rank larger than 44? | CREATE TABLE table_38184 ("Rank" real,"Matches as champion" real,"Reigns as champion" real,"Title matches won*" real,"Title last held" text) | SELECT MAX("Matches as champion") FROM table_38184 WHERE "Title last held" = '24 march 1963' AND "Rank" > '44' |
For those employees who did not have any job in the past, visualize a bar chart about the distribution of hire_date and the sum of salary bin hire_date by time. | CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAIL varchar(25),PHONE_NUMBER varchar(20),HIRE_DATE date,JOB_ID varchar(10),SALARY decimal(8,2),COMMISSION_PCT decimal(2,2),MANAGER_ID decimal(6,0),DEPARTMENT_ID decimal(4,0))CREATE TABLE jobs (JOB_ID varchar(10),JOB_TITLE va... | SELECT HIRE_DATE, SUM(SALARY) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history) |
What year was the first election when Fritz G. Lanham was elected? | CREATE TABLE table_18659 ("District" text,"Incumbent" text,"Party" text,"First elected" real,"Result" text,"Candidates" text) | SELECT MAX("First elected") FROM table_18659 WHERE "Incumbent" = 'Fritz G. Lanham' |
What is 2nd Leg, when Team #2 is 'San Lorenzo'? | CREATE TABLE table_48328 ("Team #1" text,"Points" text,"Team #2" text,"1st leg" text,"2nd leg" text) | SELECT "2nd leg" FROM table_48328 WHERE "Team #2" = 'san lorenzo' |
age 5 _ 14 at time of enrollment | CREATE TABLE table_train_199 ("id" int,"t2dm" bool,"hemoglobin_a1c_hba1c" float,"renal_disease" bool,"diabetic" string,"hypoglycemia" bool,"diabetes" bool,"seizure_disorder" bool,"glaucoma" bool,"hypertension" bool,"age" float,"NOUSE" float) | SELECT * FROM table_train_199 WHERE age >= 5 AND age <= 14 |
what is the cpu for the calculator with 28 kb of ram and display size 128 64 pixels 21 8 characters? | CREATE TABLE table_11703336_1 (cpu VARCHAR,ram VARCHAR,display_size VARCHAR) | SELECT cpu FROM table_11703336_1 WHERE ram = "28 KB of ram" AND display_size = "128×64 pixels 21×8 characters" |
What is the recoupa sudaamericana 1996 result of team flamengo, which did not qualify for the copa conmebol 1996? | CREATE TABLE table_35604 ("Team" text,"Copa Libertadores 1996" text,"Supercopa Sudamericana 1996" text,"Copa CONMEBOL 1996" text,"Recopa Sudamericana 1996" text) | SELECT "Recopa Sudamericana 1996" FROM table_35604 WHERE "Copa CONMEBOL 1996" = 'did not qualify' AND "Team" = 'flamengo' |
What is 2004, when 2010 is 'Grand Slam Tournaments'? | CREATE TABLE table_name_81 (Id VARCHAR) | SELECT 2004 FROM table_name_81 WHERE 2010 = "grand slam tournaments" |
what was the total for the Wolverhampton Wanderers? | CREATE TABLE table_49153 ("Scorer" text,"Club" text,"League goals" text,"FA Cup goals" real,"League Cup goals" real,"Euro competitions" text,"Total" real) | SELECT "League goals" FROM table_49153 WHERE "Club" = 'wolverhampton wanderers' |
for a Goals Against smaller than 9, and a Goal Differential of 0, and a Draws smaller than 2, and a Wins of 1, what's the goal total? | CREATE TABLE table_67174 ("Games" real,"Wins" real,"Draws" real,"Losses" real,"Goals For" real,"Goals Against" real,"Goal Differential" text) | SELECT SUM("Goals For") FROM table_67174 WHERE "Goals Against" < '9' AND "Goal Differential" = '0' AND "Draws" < '2' AND "Wins" = '1' |
All questions closed as off-topic. Questions that have been closed (not protected), along with their close reasons, ordered by their view count. | 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 q.Id AS "post_link", q.CreationDate, q.ClosedDate FROM Posts AS q INNER JOIN PostHistory AS h ON q.Id = h.PostId WHERE h.PostHistoryTypeId = 10 AND NOT q.ClosedDate IS NULL ORDER BY q.ClosedDate DESC |
List all customer status codes and the number of customers having each status code, could you rank bar in descending order? | CREATE TABLE Addresses (address_id INTEGER,line_1_number_building VARCHAR(80),city VARCHAR(50),zip_postcode VARCHAR(20),state_province_county VARCHAR(50),country VARCHAR(50))CREATE TABLE Lessons (lesson_id INTEGER,customer_id INTEGER,lesson_status_code VARCHAR(15),staff_id INTEGER,vehicle_id INTEGER,lesson_date DATETIM... | SELECT customer_status_code, COUNT(*) FROM Customers GROUP BY customer_status_code ORDER BY customer_status_code DESC |
Who was the presenter on Monday of 'Big Brother 13' in which Alice Levine Jamie East presented on Sunday? | CREATE TABLE table_name_45 (monday VARCHAR,sunday VARCHAR,series VARCHAR) | SELECT monday FROM table_name_45 WHERE sunday = "alice levine jamie east" AND series = "big brother 13" |
How many people attended the game on 8 March 2008? | CREATE TABLE table_54923 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Leading scorer" text,"Attendance" real,"Record" text) | SELECT SUM("Attendance") FROM table_54923 WHERE "Date" = '8 march 2008' |
What is the home team score of the game with Adelaide as the away team? | CREATE TABLE table_name_90 (home_team VARCHAR,away_team VARCHAR) | SELECT home_team AS score FROM table_name_90 WHERE away_team = "adelaide" |
Who will teach upper-level classes ? | CREATE TABLE course_prerequisite (pre_course_id int,course_id int)CREATE TABLE program (program_id int,name varchar,college varchar,introduction varchar)CREATE TABLE gsi (course_offering_id int,student_id int)CREATE TABLE requirement (requirement_id int,requirement varchar,college varchar)CREATE TABLE jobs (job_id int,... | SELECT DISTINCT instructor.name FROM course INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN offering_instructor ON offering_instructor.offering_id = course_offering.offering_id INNER JOIN instructor ON offering_instructor.instructor_id = instructor.instructor_id INNER JOIN program_... |
what is the position of pick #53? | CREATE TABLE table_name_37 (position VARCHAR,pick__number VARCHAR) | SELECT position FROM table_name_37 WHERE pick__number = 53 |
what is maximum age of patients whose admission location is emergency room admit and primary disease is copd exacerbation? | 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 MAX(demographic.age) FROM demographic WHERE demographic.admission_location = "EMERGENCY ROOM ADMIT" AND demographic.diagnosis = "COPD EXACERBATION" |
Who was the vocal percussionist when stevie wonder was the original artist? | CREATE TABLE table_30705 ("Track no." real,"Track" text,"Original Artist" text,"Soloist(s)" text,"Vocal Percussionist" text,"Arranger(s)" text) | SELECT "Vocal Percussionist" FROM table_30705 WHERE "Original Artist" = 'Stevie Wonder' |
What is the highest points of the club with less than 9 draws, 11 wins, and more than 40 goals? | CREATE TABLE table_name_28 (points INTEGER,goals_for VARCHAR,draws VARCHAR,wins VARCHAR) | SELECT MAX(points) FROM table_name_28 WHERE draws < 9 AND wins = 11 AND goals_for > 40 |
What was the Attendance on october 2, 1977? | CREATE TABLE table_38351 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Attendance" real) | SELECT "Attendance" FROM table_38351 WHERE "Date" = 'october 2, 1977' |
What was the date of elevation for the cardinal given the order and title of Cardinal-Priest of S. Pudenziana? | CREATE TABLE table_name_91 (elevated VARCHAR,cardinalatial_order_and_title VARCHAR) | SELECT elevated FROM table_name_91 WHERE cardinalatial_order_and_title = "cardinal-priest of s. pudenziana" |
List the total defensive points for marion bartoli. | CREATE TABLE table_24431264_17 (points VARCHAR,player VARCHAR) | SELECT points AS defending FROM table_24431264_17 WHERE player = "Marion Bartoli" |
Name the Bore x stroke of 1929-32 | CREATE TABLE table_11716 ("Version" text,"Year" text,"Bore x stroke" text,"Displacement" text,"Power" text) | SELECT "Bore x stroke" FROM table_11716 WHERE "Year" = '1929-32' |
Find meter_200 and the sum of ID , and group by attribute meter_200, and visualize them by a bar chart, and display by the sum id in desc. | CREATE TABLE swimmer (ID int,name text,Nationality text,meter_100 real,meter_200 text,meter_300 text,meter_400 text,meter_500 text,meter_600 text,meter_700 text,Time text)CREATE TABLE event (ID int,Name text,Stadium_ID int,Year text)CREATE TABLE record (ID int,Result text,Swimmer_ID int,Event_ID int)CREATE TABLE stadiu... | SELECT meter_200, SUM(ID) FROM swimmer GROUP BY meter_200 ORDER BY SUM(ID) DESC |
how many patients whose admission type is emergency and drug name is vitamin b complex? | 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 prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.admission_type = "EMERGENCY" AND prescriptions.drug = "Vitamin B Complex" |
What was Lambert's song choice in the top 13? | CREATE TABLE table_24420 ("Week #" text,"Theme" text,"Song choice" text,"Original artist" text,"Order #" text,"Result" text) | SELECT "Song choice" FROM table_24420 WHERE "Week #" = 'Top 13' |
What was the date of death entry in the row that has a date of inauguration entry of date of inauguration? | CREATE TABLE table_name_76 (date_of_death VARCHAR,date_of_inauguration VARCHAR) | SELECT date_of_death FROM table_name_76 WHERE date_of_inauguration = "date of inauguration" |
Tell me the sum of rank for placings of 58 | CREATE TABLE table_57157 ("Rank" real,"Name" text,"Nation" text,"Points" real,"Placings" real) | SELECT SUM("Rank") FROM table_57157 WHERE "Placings" = '58' |
How many artists are above age 46 and joined after 1990? | CREATE TABLE artist (age VARCHAR,year_join VARCHAR) | SELECT COUNT(*) FROM artist WHERE age > 46 AND year_join > 1990 |
how many times was andorra the opponent ? | CREATE TABLE table_204_282 (id number,"date" text,"venue" text,"opponent" text,"score" text,"result" text,"competition" text,"#" number) | SELECT COUNT(*) FROM table_204_282 WHERE "opponent" = 'andorra' |
What is the team nickname of university of wisconsin-platteville? | CREATE TABLE table_name_93 (nickname VARCHAR,institution VARCHAR) | SELECT nickname FROM table_name_93 WHERE institution = "university of wisconsin-platteville" |
what is the full name and id of the college with the largest number of baseball players? | CREATE TABLE player_college (college_id VARCHAR)CREATE TABLE college (name_full VARCHAR,college_id VARCHAR) | SELECT T1.name_full, T1.college_id FROM college AS T1 JOIN player_college AS T2 ON T1.college_id = T2.college_id GROUP BY T1.college_id ORDER BY COUNT(*) DESC LIMIT 1 |
What's the sales breakdown of the Nintendo game released on May 15, 2006? | CREATE TABLE table_24386 ("Title" text,"Total copies sold" text,"Sales breakdown" text,"Genre" text,"Release date" text,"Developer" text,"Publisher" text) | SELECT "Sales breakdown" FROM table_24386 WHERE "Publisher" = 'Nintendo' AND "Release date" = 'May 15, 2006' |
What was the record when Minnesota was the home team? | CREATE TABLE table_5040 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Record" text) | SELECT "Record" FROM table_5040 WHERE "Home" = 'minnesota' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.