instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
In what municipality were there 757.5 people per km2? | CREATE TABLE table_24555 ("Municipality" text,"Type" text,"District" text,"Area (km\u00b2)" text,"Population (2010)" real,"Pop. Density (per km\u00b2)" text,"No. of Barangays" real,"Municipal Mayor" text) | SELECT "Municipality" FROM table_24555 WHERE "Pop. Density (per km\u00b2)" = '757.5' |
what is the average bronze when the team is northwest territories and gold is more than 34? | CREATE TABLE table_name_23 (bronze INTEGER,team VARCHAR,gold VARCHAR) | SELECT AVG(bronze) FROM table_name_23 WHERE team = "northwest territories" AND gold > 34 |
What is the catalog number for the January 25, 1987 release? | CREATE TABLE table_69783 ("Region" text,"Date" text,"Label" text,"Format" text,"Catalog" text) | SELECT "Catalog" FROM table_69783 WHERE "Date" = 'january 25, 1987' |
report the number of patients diagnosed with percutaneous transluminal coronary angioplasty status who had home health care discharge. | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.discharge_location = "HOME HEALTH CARE" AND diagnoses.short_title = "Status-post ptca" |
what is the cost for a drug named vancocin? | CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,d... | SELECT DISTINCT cost.cost FROM cost WHERE cost.eventtype = 'medication' AND cost.eventid IN (SELECT medication.medicationid FROM medication WHERE medication.drugname = 'vancocin') |
In the Year 1939, what was the Finish when Al was the League? | CREATE TABLE table_51641 ("Year" real,"Franchise" text,"League" text,"Percentage" real,"Finish" text) | SELECT "Finish" FROM table_51641 WHERE "League" = 'al' AND "Year" = '1939' |
Is Friday the day that Prof. Matthew Schulmerich 's classes always meet ? | 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(*) = 0 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 WHERE course_offering.friday = ... |
When was Southern Vermont College founded? | CREATE TABLE table_2076595_1 (founded INTEGER,school VARCHAR) | SELECT MAX(founded) FROM table_2076595_1 WHERE school = "Southern Vermont College" |
What is the number of points associated with the highest position under 9 and a current position of 22? | CREATE TABLE table_36737 ("Position" real,"Artist" text,"Song title" text,"Highest position" real,"Points" real) | SELECT "Points" FROM table_36737 WHERE "Highest position" < '9' AND "Position" = '22' |
What is the size of the crowd when the home team is Fitzroy? | CREATE TABLE table_54374 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT COUNT("Crowd") FROM table_54374 WHERE "Home team" = 'fitzroy' |
what is the even when the location is tokyo, japan and the record is 6-1? | CREATE TABLE table_name_7 (event VARCHAR,location VARCHAR,record VARCHAR) | SELECT event FROM table_name_7 WHERE location = "tokyo, japan" AND record = "6-1" |
what circuit is in italy | CREATE TABLE table_37751 ("Date" text,"Round" text,"Circuit" text,"Race 1 Winner" text,"Race 2 Winner" text,"Report" text) | SELECT "Circuit" FROM table_37751 WHERE "Round" = 'italy' |
Is 574 for undergrads too ? | CREATE TABLE requirement (requirement_id int,requirement varchar,college varchar)CREATE TABLE student (student_id int,lastname varchar,firstname varchar,program_id int,declare_major varchar,total_credit int,total_gpa float,entered_as varchar,admit_term int,predicted_graduation_semester int,degree varchar,minor varchar,... | SELECT DISTINCT advisory_requirement, enforced_requirement, name FROM course WHERE department = 'EECS' AND number = 574 |
When the tie no was 1, what was the score? | CREATE TABLE table_59470 ("Tie no" text,"Home team" text,"Score" text,"Away team" text,"Date" text) | SELECT "Score" FROM table_59470 WHERE "Tie no" = '1' |
For all employees who have the letters D or S in their first name, return a bar chart about the distribution of hire_date and the sum of department_id bin hire_date by time, and order in desc by the y axis. | 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 departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_ID decimal(4,0))CREATE TABLE regions (RE... | SELECT HIRE_DATE, SUM(DEPARTMENT_ID) FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' ORDER BY SUM(DEPARTMENT_ID) DESC |
Who was the director of the episode with series number 116? | CREATE TABLE table_30409 ("No. in series" real,"No. in season" real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"U.S. viewers (millions)" text) | SELECT "Directed by" FROM table_30409 WHERE "No. in series" = '116' |
Which colleges have a pick above 7? | CREATE TABLE table_7382 ("Pick" real,"Player" text,"Country of origin*" text,"PBA team" text,"College" text) | SELECT "College" FROM table_7382 WHERE "Pick" > '7' |
when was patient 86786 received the last sputum microbiology test on the last hospital encounter? | CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod 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 outputevents (row_id number,subject_id number,hadm_id number,icustay_id ... | SELECT microbiologyevents.charttime FROM microbiologyevents WHERE microbiologyevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 86786 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime DESC LIMIT 1) AND microbiologyevents.spec_type_desc = 'sputum' ORDER BY microb... |
Who is team 1 where team 2 is Fluminense (RJ)? | CREATE TABLE table_59014 ("Team 1" text,"Agg." text,"Team 2" text,"1st leg" text,"2nd leg" text) | SELECT "Team 1" FROM table_59014 WHERE "Team 2" = 'fluminense (rj)' |
What is the declination of the spiral galaxy Pegasus with 7337 NGC | CREATE TABLE table_77642 ("NGC number" text,"Object type" text,"Constellation" text,"Right ascension (J2000)" text,"Declination (J2000)" text) | SELECT "Declination ( J2000 )" FROM table_77642 WHERE "Object type" = 'spiral galaxy' AND "Constellation" = 'pegasus' AND "NGC number" = '7337' |
List the amount of carbon emissions for models that go from 0-62 MPH in 8.5 seconds. | CREATE TABLE table_25837 ("Model" text,"Engine" text,"Displacement" text,"Max. power output" text,"Peak torque" text,"0\u2013100km/h,s 0-62mph,s" text,"Top speed" text,"CO 2 emissions" text,"Years" text,"Note" text,"Engine code" text) | SELECT "CO 2 emissions" FROM table_25837 WHERE "0\u2013100km/h,s 0-62mph,s" = '8.5' |
The record of 35-31 has what score? | CREATE TABLE table_name_52 (score VARCHAR,record VARCHAR) | SELECT score FROM table_name_52 WHERE record = "35-31" |
Find questions ripe for the Revival and Necromancer badges. Searches for open, non-CW posts older than 60 days with no accepted answer and no answer scoring 2 or more. (Now updated so merged questions do not appear.) | 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 number,OwnerDisplayName text,LastEditorUserId number,LastEditorDisplayN... | SELECT p.Id AS "post_link", p.Score, p.CreationDate AS "asked_date", p.ViewCount FROM Posts AS p WHERE p.AcceptedAnswerId IS NULL AND p.PostTypeId = 1 AND p.CreationDate < CURRENT_TIMESTAMP() - 60 AND p.CommunityOwnedDate IS NULL AND p.ClosedDate IS NULL AND NOT EXISTS(SELECT * FROM Posts AS p2 WHERE p2.ParentId = p.Id... |
please list only UA flights between DENVER and BOSTON | CREATE TABLE flight_fare (flight_id int,fare_id int)CREATE TABLE airline (airline_code varchar,airline_name text,note text)CREATE TABLE class_of_service (booking_class varchar,rank int,class_description text)CREATE TABLE time_zone (time_zone_code text,time_zone_name text,hours_from_gmt int)CREATE TABLE state (state_cod... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, flight WHERE (CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'BOSTON' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'DENVER... |
how many patients have undergone vasodilator for pulmonary hypertension - treprostinil two or more times until 2104? | 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 medication (medicationid number,patientunitstayid number,drugname te... | SELECT COUNT(DISTINCT t1.uniquepid) FROM (SELECT patient.uniquepid, COUNT(*) AS c1 FROM patient WHERE patient.patientunitstayid = (SELECT treatment.patientunitstayid FROM treatment WHERE treatment.treatmentname = 'vasodilator for pulmonary hypertension - treprostinil' AND STRFTIME('%y', treatment.treatmenttime) <= '210... |
Which country saw a 5.7% increase in spending on international tourism between 2011 and 2012? | CREATE TABLE table_29789_3 (country VARCHAR,_percentage_change VARCHAR) | SELECT country FROM table_29789_3 WHERE _percentage_change = "5.7" |
How many positions correspond to a 1-3 1st leg? | CREATE TABLE table_72851 ("Position" text,"Team #1" text,"Agg." text,"Team #2" text,"1st leg" text,"2nd leg" text) | SELECT COUNT("Position") FROM table_72851 WHERE "1st leg" = '1-3' |
For those employees who do not work in departments with managers that have ids between 100 and 200, a bar chart shows the distribution of phone_number and commission_pct , and list total number in descending order. | CREATE TABLE jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN_SALARY decimal(6,0),MAX_SALARY decimal(6,0))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 locations (LOCATION_ID decimal(4,0),STREET_ADDRESS varchar(40),POSTAL_CO... | SELECT PHONE_NUMBER, COMMISSION_PCT FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY COMMISSION_PCT DESC |
Which city's ICAO is WADD? | CREATE TABLE table_14402 ("City" text,"Province/Region" text,"Country" text,"IATA" text,"ICAO" text,"Airport" text) | SELECT "City" FROM table_14402 WHERE "ICAO" = 'wadd' |
which child was the first to die ? | CREATE TABLE table_204_626 (id number,"image" number,"name" text,"birth date" text,"death date" text,"brief biography" text) | SELECT "name" FROM table_204_626 ORDER BY "death date" LIMIT 1 |
What was the total when the set 3 was 25 14? | CREATE TABLE table_name_80 (total VARCHAR,set_3 VARCHAR) | SELECT total FROM table_name_80 WHERE set_3 = "25–14" |
What is the average match score of CA? | CREATE TABLE finrev_fed_key_17 (state_code number,state text,#_records text)CREATE TABLE finrev_fed_17 (state_code number,idcensus number,school_district text,nces_id text,yr_data number,t_fed_rev number,c14 number,c25 number)CREATE TABLE ndecoreexcel_math_grade8 (year number,state text,all_students text,average_scale_... | SELECT average_scale_score FROM ndecoreexcel_math_grade8 WHERE state = "California" |
List document type codes and the number of documents in each code. | CREATE TABLE Documents (document_type_code VARCHAR) | SELECT document_type_code, COUNT(*) FROM Documents GROUP BY document_type_code |
Which district does the incumbent Luther Reily represent? | CREATE TABLE table_2668169_2 (district VARCHAR,incumbent VARCHAR) | SELECT district FROM table_2668169_2 WHERE incumbent = "Luther Reily" |
Number of questions with just [database]. | CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPostId number,LinkTypeId number)CREATE TABLE TagSynonyms (Id number,SourceTagName text,TargetTagName text,CreationDate time,OwnerUser... | SELECT COUNT(*) FROM PostTags AS pt JOIN (SELECT PostId, COUNT(*) AS ct FROM PostTags AS p GROUP BY PostId HAVING COUNT(*) = 1) AS db ON pt.PostId = db.PostId WHERE TagId = 30 |
What is the host in Georgia? | CREATE TABLE table_31696 ("Region" text,"Host" text,"Venue" text,"City" text,"State" text) | SELECT "Host" FROM table_31696 WHERE "State" = 'georgia' |
count the number of patients whose admission location is trsf within this facility and year of birth is less than 2089? | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethni... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.admission_location = "TRSF WITHIN THIS FACILITY" AND demographic.dob_year < "2089" |
What date was the John Belisle, Kosta Tsetsekas stamp issued? | CREATE TABLE table_name_43 (date_of_issue VARCHAR,design VARCHAR) | SELECT date_of_issue FROM table_name_43 WHERE design = "john belisle, kosta tsetsekas" |
Who won the women's doubles when andrey antropov won the men's singles and marina yakusheva won the womens' singles? | CREATE TABLE table_35474 ("Year" real,"Men's singles" text,"Women's singles" text,"Men's doubles" text,"Women's doubles" text,"Mixed doubles" text) | SELECT "Women's doubles" FROM table_35474 WHERE "Men's singles" = 'andrey antropov' AND "Women's singles" = 'marina yakusheva' |
What is the mark set by Laura Turner? | CREATE TABLE table_name_65 (mark VARCHAR,name VARCHAR) | SELECT mark FROM table_name_65 WHERE name = "laura turner" |
Can I take EHS 642 as MDE ? | CREATE TABLE course_offering (offering_id int,course_id int,semester int,section_number int,start_time time,end_time time,monday varchar,tuesday varchar,wednesday varchar,thursday varchar,friday varchar,saturday varchar,sunday varchar,has_final_project varchar,has_final_exam varchar,textbook varchar,class_address varch... | SELECT COUNT(*) > 0 FROM course, program, program_course WHERE course.department = 'EHS' AND course.number = 642 AND program_course.category LIKE '%MDE%' AND program_course.course_id = course.course_id AND program.name LIKE '%CS-LSA%' AND program.program_id = program_course.program_id |
Which Country has Entities of emsa? | CREATE TABLE table_name_57 (country VARCHAR,entities VARCHAR) | SELECT country FROM table_name_57 WHERE entities = "emsa" |
Which Kit Manufacturer supports team Everton? | CREATE TABLE table_80119 ("Team" text,"Manager" text,"Captain" text,"Kit manufacturer" text,"Shirt sponsor" text) | SELECT "Kit manufacturer" FROM table_80119 WHERE "Team" = 'everton' |
what is in the current hospital encounter maximum vancomycin value of patient 57050? | CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE admissions (row_id number,subject_id number,hadm_id number,admittime time,dischtime time,admission_type text,admission_location text,discharge_location text,insurance tex... | SELECT MAX(labevents.valuenum) FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 57050 AND admissions.dischtime IS NULL) AND labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'vancomycin') |
what is the sum of laps when grid is less than 20 and johnny herbert is driving? | CREATE TABLE table_name_29 (laps INTEGER,grid VARCHAR,driver VARCHAR) | SELECT SUM(laps) FROM table_name_29 WHERE grid < 20 AND driver = "johnny herbert" |
What was the attendance for Week 1? | CREATE TABLE table_32429 ("Week" real,"Kickoff" text,"Date" text,"Opponent" text,"Result" text,"Record" text,"Game site" text,"Attendance" text) | SELECT "Attendance" FROM table_32429 WHERE "Week" = '1' |
What was the loss of the Brewers game when the record was 46-48? | CREATE TABLE table_name_90 (loss VARCHAR,record VARCHAR) | SELECT loss FROM table_name_90 WHERE record = "46-48" |
give me the number of patients whose religion is greek orthodox and item id is 51419? | 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 lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE diagnoses (subject_id text,hadm_id tex... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.religion = "GREEK ORTHODOX" AND lab.itemid = "51419" |
What are the total number of credits offered by each department. Show bar chart. | CREATE TABLE PROFESSOR (EMP_NUM int,DEPT_CODE varchar(10),PROF_OFFICE varchar(50),PROF_EXTENSION varchar(4),PROF_HIGH_DEGREE varchar(5))CREATE TABLE DEPARTMENT (DEPT_CODE varchar(10),DEPT_NAME varchar(30),SCHOOL_CODE varchar(8),EMP_NUM int,DEPT_ADDRESS varchar(20),DEPT_EXTENSION varchar(4))CREATE TABLE CLASS (CLASS_COD... | SELECT DEPT_CODE, SUM(T1.CRS_CREDIT) FROM COURSE AS T1 JOIN CLASS AS T2 ON T1.CRS_CODE = T2.CRS_CODE GROUP BY T1.DEPT_CODE |
What is the low goal for orders more than 939 during Seasons of 1996 2001? | CREATE TABLE table_10519 ("Order" real,"Name" text,"Seasons" text,"Games" real,"Goals" real) | SELECT MIN("Goals") FROM table_10519 WHERE "Seasons" = '1996 – 2001' AND "Order" > '939' |
since 2100 how many patients have undergone closed bronchial biopsy within 2 months after the diagnosis of cataract extract status? | 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 d_labitems (row_id number,itemid number,label text)CREATE TABLE icustays (row_id number,subject_id number,hadm_id number,icustay_id number,first_car... | SELECT COUNT(DISTINCT t1.subject_id) FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions.hadm_id WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'cataract extract s... |
What team drove a Dodge vehicle? | CREATE TABLE table_name_27 (team VARCHAR,make VARCHAR) | SELECT team FROM table_name_27 WHERE make = "dodge" |
Which Run 2 has a Rank of 4? | CREATE TABLE table_45515 ("Rank" text,"Team" text,"Athletes" text,"Run 1" text,"Run 2" text,"Run 3" text,"Run 4" text,"Final" text) | SELECT "Run 2" FROM table_45515 WHERE "Rank" = '4' |
tell me the drugs patient 021-80293 was allergic to since 10/2104? | 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 treatment (treatmentid number,patientunitstayid number,treatmentname text,... | SELECT allergy.drugname FROM allergy WHERE allergy.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '021-80293')) AND STRFTIME('%y-%m', allergy.allergytime) >= '2104-10' |
find the number of patients whose diagnosis short title is pseudomonas infect nos and the drug type is main. | 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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE diagnoses.short_title = "Pseudomonas infect NOS" AND prescriptions.drug_type = "MAIN" |
give me the number of patients whose lab test name is sodium, urine? | 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 procedures (subject_id text,hadm_id text,icd9_code text,sho... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE lab.label = "Sodium, Urine" |
How many on the list are called the Austrian Grand Prix? | CREATE TABLE table_1132568_3 (rd VARCHAR,grand_prix VARCHAR) | SELECT COUNT(rd) FROM table_1132568_3 WHERE grand_prix = "Austrian grand_prix" |
What was the home teams score when the VFL played Princes Park? | CREATE TABLE table_53646 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Home team score" FROM table_53646 WHERE "Venue" = 'princes park' |
What is the purse total for the royal caribbean golf classic? | CREATE TABLE table_name_5 (purse__ INTEGER,tournament VARCHAR) | SELECT SUM(purse__) AS $__ FROM table_name_5 WHERE tournament = "royal caribbean golf classic" |
What was team Toshiba's round 4 score? | CREATE TABLE table_16815824_1 (round4 INTEGER,team VARCHAR) | SELECT MIN(round4) FROM table_16815824_1 WHERE team = "team Toshiba" |
tell me the name of the first specimen test that patient 031-4987 since 03/2102 received? | 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 microlab.culturesite FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-4987')) AND STRFTIME('%y-%m', microlab.culturetakentime) >= '2102-... |
With the score of 6 3, 2 6, [10 8] and played on clay who was the opponent? | CREATE TABLE table_39057 ("Outcome" text,"Date" text,"Tournament" text,"Surface" text,"Partner" text,"Opponent" text,"Score" text) | SELECT "Opponent" FROM table_39057 WHERE "Surface" = 'clay' AND "Score" = '6–3, 2–6, [10–8]' |
Show me a bar chart for what are the ids and details for all organizations that have grants of more than 6000 dollars?, could you sort y axis in desc order? | CREATE TABLE Grants (grant_id INTEGER,organisation_id INTEGER,grant_amount DECIMAL(19,4),grant_start_date DATETIME,grant_end_date DATETIME,other_details VARCHAR(255))CREATE TABLE Tasks (task_id INTEGER,project_id INTEGER,task_details VARCHAR(255),"eg Agree Objectives" VARCHAR(1))CREATE TABLE Research_Outcomes (outcome_... | SELECT T2.organisation_details, T1.organisation_id FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id GROUP BY T2.organisation_details ORDER BY T1.organisation_id DESC |
Just show employees' salaries by their first name in a bar chart, sort in descending by the bar please. | 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 FIRST_NAME, SALARY FROM employees ORDER BY FIRST_NAME DESC |
What is the value for Lost, when the value for Try bonus is 2, and when the value for Losing bonus is 4? | CREATE TABLE table_name_35 (lost VARCHAR,try_bonus VARCHAR,losing_bonus VARCHAR) | SELECT lost FROM table_name_35 WHERE try_bonus = "2" AND losing_bonus = "4" |
What was the date of the home game against Accrington? | CREATE TABLE table_name_65 (date VARCHAR,team VARCHAR,venue VARCHAR) | SELECT date FROM table_name_65 WHERE team = "accrington" AND venue = "home" |
What is the time of rider Loic Napoleone, who had less than 18 laps and a grid greater than 8? | CREATE TABLE table_43039 ("Rider" text,"Bike" text,"Laps" real,"Time" text,"Grid" real) | SELECT "Time" FROM table_43039 WHERE "Laps" < '18' AND "Grid" > '8' AND "Rider" = 'loic napoleone' |
How many games were played in the season? | CREATE TABLE table_15873014_3 (game INTEGER) | SELECT MAX(game) FROM table_15873014_3 |
Number of posts with bounty start and finish. | 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)CREATE TABLE FlagTypes (Id number,Name text,Description text)CREATE TABLE Re... | WITH opened AS (SELECT PostId FROM Votes WHERE VoteTypeId = 8), closed AS (SELECT PostId FROM Votes WHERE VoteTypeId = 9) SELECT COUNT(*) FROM (SELECT * FROM opened INTERSECT SELECT * FROM closed) AS q |
For those records from the products and each product's manufacturer, give me the comparison about the average of price over the name , and group by attribute name by a bar chart, list by the mean price in ascending please. | CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL)CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER) | SELECT T1.Name, T1.Price FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T1.Name ORDER BY T1.Price |
What is the home team score for kardinia park? | CREATE TABLE table_57783 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Home team score" FROM table_57783 WHERE "Venue" = 'kardinia park' |
For those employees who do not work in departments with managers that have ids between 100 and 200, show me about the correlation between employee_id and manager_id in a scatter chart. | 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_ID decimal(5,0),REGION_NAME varchar(25))CREATE TABLE locations (LOCATION_ID decimal(4,0),STREET_ADDRESS varchar(40),POSTAL_CODE varchar(12),CITY varchar(30),STATE_PROVINCE varchar(25)... | SELECT EMPLOYEE_ID, MANAGER_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) |
What's the school that has an enrollment more than 441 with chargers as their mascot? | CREATE TABLE table_name_35 (school VARCHAR,enrollment VARCHAR,mascot VARCHAR) | SELECT school FROM table_name_35 WHERE enrollment > 441 AND mascot = "chargers" |
Questions with only one tag. | 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)CREATE TABLE PostHistory (Id number,PostHistoryTypeId number,PostId number,R... | SELECT Id AS "post_link" FROM Posts WHERE Tags LIKE '<##tags##>' OR Tags LIKE ' ##tags## ' LIMIT 5000 |
what is patient 20898's last ward id in this hospital visit? | CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE transfers (row_id num... | SELECT transfers.wardid FROM transfers WHERE transfers.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 20898 AND admissions.dischtime IS NULL) AND NOT transfers.wardid IS NULL ORDER BY transfers.intime DESC LIMIT 1 |
Who was the opponent during the game that had more than 31,891 people in attendance? | CREATE TABLE table_name_80 (opponent VARCHAR,attendance INTEGER) | SELECT opponent FROM table_name_80 WHERE attendance > 31 OFFSET 891 |
give me the number of patients whose ethnicity is black/cape verdean and drug type is main? | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE 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 prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.ethnicity = "BLACK/CAPE VERDEAN" AND prescriptions.drug_type = "MAIN" |
What is the highest Rd that Tom Sneva had the pole position in? | CREATE TABLE table_72107 ("Rd" real,"Name" text,"Pole Position" text,"Fastest Lap" text,"Winning driver" text,"Winning team" text,"Report" text) | SELECT MAX("Rd") FROM table_72107 WHERE "Pole Position" = 'Tom Sneva' |
Drive-by users with one [identification] question. | CREATE TABLE ReviewTaskTypes (Id number,Name text,Description text)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE PostNoticeTypes (Id number,ClassId number,Name text,Body text,IsHidden boolean,Predefined boolean,PostNoticeDurationId number)CREATE TABLE FlagTypes (Id... | SELECT Users.Id AS "user_link", Posts.Id AS "post_link" FROM Users INNER JOIN Posts ON Posts.OwnerUserId = Users.Id INNER JOIN PostTags ON Posts.Id = PostTags.PostId INNER JOIN Tags ON Tags.Id = PostTags.TagId WHERE Tags.TagName LIKE 'identification' AND Posts.ParentId IS NULL AND Users.Id IN (SELECT Users.Id FROM User... |
what was the total amount of lactated ringers that patient 27703 had taken on 11/08/2105? | CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type text,event_id number,chargetime time,cost number)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 patients (row_id numbe... | SELECT SUM(inputevents_cv.amount) FROM inputevents_cv WHERE inputevents_cv.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 27703)) AND inputevents_cv.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.lab... |
Which Draw is the lowest one that has Champs smaller than 0? | CREATE TABLE table_34244 ("Champs" real,"Games" real,"Draw" real,"Lost" real,"Win/Lose Percentage" text) | SELECT MIN("Draw") FROM table_34244 WHERE "Champs" < '0' |
what are the five most frequently ordered specimen tests for patients that had previously been diagnosed with upper gi bleeding within 2 months since 2105? | 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 t3.culturesite FROM (SELECT t2.culturesite, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, diagnosis.diagnosistime FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'upper gi bleeding' AND STRFTIME('%y', diagno... |
Rude answers to Python questions. | CREATE TABLE VoteTypes (Id number,Name text)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 ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId n... | SELECT * FROM VoteTypes INNER JOIN Votes ON Votes.VoteTypeId = VoteTypes.Id INNER JOIN Posts ON Votes.PostId = Posts.Id WHERE VoteTypes.Name = 'Offensive' |
What is the Date of the game with a Score of 4 6, 4 6? | CREATE TABLE table_name_36 (date VARCHAR,score VARCHAR) | SELECT date FROM table_name_36 WHERE score = "4–6, 4–6" |
how many peaks where for the chinese episode named | CREATE TABLE table_29633639_1 (peak VARCHAR,chinese_title VARCHAR) | SELECT COUNT(peak) FROM table_29633639_1 WHERE chinese_title = "萬凰之王" |
What is the Date of the Vigo Tournament? | CREATE TABLE table_name_65 (date VARCHAR,tournament VARCHAR) | SELECT date FROM table_name_65 WHERE tournament = "vigo" |
i would like to book a flight from LOS ANGELES to PITTSBURGH on 6 1 | CREATE TABLE date_day (month_number int,day_number int,year int,day_name varchar)CREATE TABLE time_interval (period text,begin_time int,end_time int)CREATE TABLE flight_leg (flight_id int,leg_number int,leg_flight int)CREATE TABLE days (days_code varchar,day_name varchar)CREATE TABLE equipment_sequence (aircraft_code_s... | 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 = 'PITTSBURGH' AND date_day.day_number = 1 AND date_day.month_number = 6 AND... |
For those records from the products and each product's manufacturer, visualize a bar chart about the distribution of headquarter and the amount of headquarter , and group by attribute headquarter, and could you display by the bars in descending? | CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL)CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER) | SELECT Headquarter, COUNT(Headquarter) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Headquarter ORDER BY Headquarter DESC |
What is the Volume:Issue number of the George McCrae song that spent less than 2 weeks on top of the charts? | CREATE TABLE table_43482 ("Volume:Issue" text,"Issue Date(s)" text,"Weeks on Top" real,"Song" text,"Artist" text) | SELECT "Volume:Issue" FROM table_43482 WHERE "Weeks on Top" < '2' AND "Artist" = 'george mccrae' |
What date did the song by jennifer lopez get issued? | CREATE TABLE table_47547 ("Volume:Issue" text,"Issue Date(s)" text,"Weeks on Top" text,"Song" text,"Artist" text) | SELECT "Issue Date(s)" FROM table_47547 WHERE "Artist" = 'jennifer lopez' |
Which driver had 3 Laps and grids less than 15? | CREATE TABLE table_10843 ("Driver" text,"Constructor" text,"Laps" real,"Time/Retired" text,"Grid" real) | SELECT "Driver" FROM table_10843 WHERE "Laps" = '3' AND "Grid" < '15' |
What is the highest attendance for December 14, 1958 for after week 12 | CREATE TABLE table_65593 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Attendance" real) | SELECT MAX("Attendance") FROM table_65593 WHERE "Date" = 'december 14, 1958' AND "Week" > '12' |
what was the three most frequent drugs that were prescribed within 2 months to the transaminase elevation female patients aged 20s after they were diagnosed with transaminase elevation, a year before? | 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 t3.drugname FROM (SELECT t2.drugname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, diagnosis.diagnosistime FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'transaminase elevation' AND DATETIME(diagnosis.dia... |
Create a bar chart showing the total number across location | CREATE TABLE film (Film_ID int,Rank_in_series int,Number_in_season int,Title text,Directed_by text,Original_air_date text,Production_code text)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... | SELECT Location, COUNT(*) FROM cinema GROUP BY Location |
what year was their top performance ? | CREATE TABLE table_204_117 (id number,"season" number,"level" text,"division" text,"section" text,"position" text,"movements" text) | SELECT "season" FROM table_204_117 ORDER BY "position" LIMIT 1 |
Which show aired on 19 april? | CREATE TABLE table_61773 ("Show" text,"Date" text,"Official ratings (millions)" real,"Weekly rank" text,"Share" text) | SELECT "Show" FROM table_61773 WHERE "Date" = '19 april' |
Which Surface has a Result of fernando verdasco? | CREATE TABLE table_66227 ("!Event" real,"Round" text,"Surface" text,"Winner" text,"Opponent" text,"Result" text) | SELECT "Surface" FROM table_66227 WHERE "Result" = 'fernando verdasco' |
Where was game 62 played? | CREATE TABLE table_16864968_7 (location VARCHAR,game VARCHAR) | SELECT location FROM table_16864968_7 WHERE game = 62 |
count the number of patients whose primary disease is congestive heart failure and year of death is less than or equal to 2174? | 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 lab (subject_id text,hadm_id text,itemid text,charttime tex... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "CONGESTIVE HEART FAILURE" AND demographic.dod_year <= "2174.0" |
List all the themes designed by Isabelle Toussaint. | CREATE TABLE table_11900773_6 (theme VARCHAR,design VARCHAR) | SELECT theme FROM table_11900773_6 WHERE design = "Isabelle Toussaint" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.