instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
Name the dominant religion for village for | CREATE TABLE table_3331 ("Settlement" text,"Cyrillic Name Other Names" text,"Type" text,"Population (2011)" real,"Largest ethnic group (2002)" text,"Dominant religion (2002)" text) | SELECT "Dominant religion (2002)" FROM table_3331 WHERE "Type" = 'village' AND "Cyrillic Name Other Names" = 'Бачко Добро Поље' |
make a count of the number of times patient 58730 has received a vasc shunt & bypass nec when they came to the hospital first time. | CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,startdate time,enddate time,drug text,dose_val_rx t... | 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 = 'vasc shunt & bypass nec') AND procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 58730 AND NOT admissions.di... |
Name the first elected for kentucky 3 | CREATE TABLE table_74013 ("District" text,"Incumbent" text,"Party" text,"First elected" text,"Result" text,"Candidates" text) | SELECT "First elected" FROM table_74013 WHERE "District" = 'Kentucky 3' |
Who did mark eaton play for? | CREATE TABLE table_name_3 (school_club_team VARCHAR,player VARCHAR) | SELECT school_club_team FROM table_name_3 WHERE player = "mark eaton" |
Which home team has 44 ties? | CREATE TABLE table_59475 ("Tie no" text,"Home team" text,"Score" text,"Away team" text,"Attendance" text) | SELECT "Home team" FROM table_59475 WHERE "Tie no" = '44' |
what is the date that the last ship was built ? | CREATE TABLE table_203_547 (id number,"ship" text,"built" number,"in service for cunard" text,"type" text,"tonnage" text,"notes" text) | SELECT MAX("built") FROM table_203_547 |
What is the Stuffit ability that has a gzip of yes, ISO/CD images of no and LHA/LZH of no? | CREATE TABLE table_name_75 (stuffit VARCHAR,lha_lzh VARCHAR,gzip VARCHAR,iso_cd_image VARCHAR) | SELECT stuffit FROM table_name_75 WHERE gzip = "yes" AND iso_cd_image = "no" AND lha_lzh = "no" |
Find the number of dorms that have some amenity. | CREATE TABLE lives_in (stuid number,dormid number,room_number number)CREATE TABLE has_amenity (dormid number,amenid number)CREATE TABLE student (stuid number,lname text,fname text,age number,sex text,major number,advisor number,city_code text)CREATE TABLE dorm (dormid number,dorm_name text,student_capacity number,gende... | SELECT COUNT(DISTINCT dormid) FROM has_amenity |
What is the Home Team Score at VFL Park? | CREATE TABLE table_58200 ("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_58200 WHERE "Venue" = 'vfl park' |
For those records from the products and each product's manufacturer, find name and code , and group by attribute founder, and visualize them by a bar chart, and display by the x axis in desc. | 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.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Founder, T1.Name ORDER BY T1.Name DESC |
What is the last year on this list someone was first elected? | CREATE TABLE table_789 ("District" text,"Incumbent" text,"Party" text,"First elected" real,"Result" text,"Candidates" text) | SELECT MAX("First elected") FROM table_789 |
What stadium did the Denver Broncos visit? | CREATE TABLE table_name_60 (stadium VARCHAR,visiting_team VARCHAR) | SELECT stadium FROM table_name_60 WHERE visiting_team = "denver broncos" |
What June 10-11 is is that corresponds to March 28, 1968? | CREATE TABLE table_25284864_3 (june_10_11 VARCHAR,march_27_29 VARCHAR) | SELECT june_10_11 FROM table_25284864_3 WHERE march_27_29 = "March 28, 1968" |
What is the title rank of actor pauline moran? | CREATE TABLE table_51162 ("Actor" text,"Character" text,"Title/Rank" text,"Series" text,"Years" text) | SELECT "Title/Rank" FROM table_51162 WHERE "Actor" = 'pauline moran' |
With a To par of 1, what is Player Henrik Stenson's Score? | CREATE TABLE table_name_48 (score VARCHAR,to_par VARCHAR,player VARCHAR) | SELECT score FROM table_name_48 WHERE to_par = "–1" AND player = "henrik stenson" |
How many white ethnic background patients had a protein/creatinine ratio lab test? | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.ethnicity = "WHITE" AND lab.label = "Protein/Creatinine Ratio" |
What is High Points, when Location Attendance is Staples Center 18,964? | CREATE TABLE table_7167 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text) | SELECT "High points" FROM table_7167 WHERE "Location Attendance" = 'staples center 18,964' |
For those records from the products and each product's manufacturer, draw a scatter chart about the correlation between price and code , and group by attribute name. | 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.Price, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Name |
how many total gold medals were awarded ? | CREATE TABLE table_204_183 (id number,"rank" number,"nation" text,"gold" number,"silver" number,"bronze" number,"total" number) | SELECT SUM("gold") FROM table_204_183 |
when was otar iosseliani's film selected | CREATE TABLE table_22142 ("Year [e ] (Ceremony)" text,"Film title used in nomination" text,"Original title" text,"Director" text,"Main Language(s)" text,"Result" text) | SELECT "Year [e ] (Ceremony)" FROM table_22142 WHERE "Director" = 'Otar Iosseliani' |
What is the total when the score for set 2 is 20 25? | CREATE TABLE table_name_21 (total VARCHAR,set_2 VARCHAR) | SELECT total FROM table_name_21 WHERE set_2 = "20–25" |
Which class has fewer than 89 points and the Honda team later than 1987? | CREATE TABLE table_35202 ("Year" real,"Class" text,"Team" text,"Points" real,"Wins" real) | SELECT "Class" FROM table_35202 WHERE "Points" < '89' AND "Team" = 'honda' AND "Year" > '1987' |
when did patient 031-15417 first get a microbiology test until 25 months ago? | 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.culturetakentime FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-15417')) AND DATETIME(microlab.culturetakentime) <= DATETIME(... |
What is the title of episode 2? | CREATE TABLE table_26738 ("Series No." real,"Episode No." real,"Title" text,"Directed by" text,"Written by" text,"UK Ratings (BBC2 Rank)" text,"Original air date" text) | SELECT "Title" FROM table_26738 WHERE "Episode No." = '2' |
provide the number of asian patients who are taking glyburide medication. | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.ethnicity = "ASIAN" AND prescriptions.drug = "GlyBURIDE" |
Top 200 users from Uganda. | CREATE TABLE Comments (Id number,PostId number,Score number,Text text,CreationDate time,UserDisplayName text,UserId number,ContentLicense text)CREATE TABLE PostNotices (Id number,PostId number,PostNoticeTypeId number,CreationDate time,DeletionDate time,ExpiryDate time,Body text,OwnerUserId number,DeletionUserId number)... | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation FROM Users WHERE LOWER(Location) LIKE '%uganda%' OR UPPER(Location) LIKE '%UGA' ORDER BY Reputation DESC LIMIT 200 |
What are the top three apartment types in terms of the average room count? Give me the | CREATE TABLE apartments (apt_id number,building_id number,apt_type_code text,apt_number text,bathroom_count number,bedroom_count number,room_count text)CREATE TABLE apartment_buildings (building_id number,building_short_name text,building_full_name text,building_description text,building_address text,building_manager t... | SELECT apt_type_code FROM apartments GROUP BY apt_type_code ORDER BY AVG(room_count) DESC LIMIT 3 |
What are the year(s) of manufacture for railway number(s) 26 (ii) 63 (ii) , 188 193? | CREATE TABLE table_name_35 (year_s__of_manufacture VARCHAR,railway_number_s_ VARCHAR) | SELECT year_s__of_manufacture FROM table_name_35 WHERE railway_number_s_ = "26 (ii) …63 (ii) , 188–193" |
Show me a bar chart for what are the titles and ids for albums containing tracks with unit price greater than 1?, and rank in desc by the x axis. | CREATE TABLE MediaType (MediaTypeId integer,Name varchar(120))CREATE TABLE PlaylistTrack (PlaylistId integer,TrackId integer)CREATE TABLE Genre (GenreId integer,Name varchar(120))CREATE TABLE Artist (ArtistId integer,Name varchar(120))CREATE TABLE Track (TrackId integer,Name varchar(200),AlbumId integer,MediaTypeId int... | SELECT T1.Title, T1.AlbumId FROM Album AS T1 JOIN Track AS T2 ON T1.AlbumId = T2.AlbumId WHERE T2.UnitPrice > 1 ORDER BY T1.Title DESC |
Where is the budweiser/g. i. joe's 200? | CREATE TABLE table_name_48 (city_location VARCHAR,race_name VARCHAR) | SELECT city_location FROM table_name_48 WHERE race_name = "budweiser/g. i. joe's 200" |
What percentage is listed in column r1b1c (r-v88) for the 4.5% total percentage? | CREATE TABLE table_21481509_4 (r1b1c__r_v88_ VARCHAR,total_percentage VARCHAR) | SELECT r1b1c__r_v88_ FROM table_21481509_4 WHERE total_percentage = "4.5%" |
Which circuit did Raymond Mays win? | CREATE TABLE table_name_17 (circuit VARCHAR,winning_driver VARCHAR) | SELECT circuit FROM table_name_17 WHERE winning_driver = "raymond mays" |
What was the score for the game on February 12? | CREATE TABLE table_35447 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Record" text) | SELECT "Score" FROM table_35447 WHERE "Date" = 'february 12' |
Users with most asked questions today. | 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 Comments (Id number,PostId number,Score number,Text text,Creati... | SELECT COUNT(*) AS counter, OwnerUserId FROM Posts GROUP BY OwnerUserId ORDER BY counter DESC |
What was the result of the game that was played on Nov. 26, 1972? | CREATE TABLE table_21667 ("Week" real,"Date" text,"Opponent" text,"Stadium" text,"Result" text,"Record" text,"Streak" text,"Attendance" real) | SELECT "Result" FROM table_21667 WHERE "Date" = 'Nov. 26' |
Show me the papers on data cleaning | CREATE TABLE paperfield (fieldid int,paperid int)CREATE TABLE keyphrase (keyphraseid int,keyphrasename varchar)CREATE TABLE journal (journalid int,journalname varchar)CREATE TABLE cite (citingpaperid int,citedpaperid int)CREATE TABLE paper (paperid int,title varchar,venueid int,year int,numciting int,numcitedby int,jou... | SELECT DISTINCT paper.paperid FROM keyphrase, paper, paperkeyphrase WHERE keyphrase.keyphrasename = 'data cleaning' AND paperkeyphrase.keyphraseid = keyphrase.keyphraseid AND paper.paperid = paperkeyphrase.paperid |
what is the number of patients whose admission location is trsf within this facility and procedure icd9 code is 8321? | 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 procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admission_location = "TRSF WITHIN THIS FACILITY" AND procedures.icd9_code = "8321" |
tell me the total amount of output that patient 13536 has had on 05/04/this year? | CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value 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 text,l... | SELECT SUM(outputevents.value) FROM outputevents WHERE outputevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 13536)) AND DATETIME(outputevents.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start o... |
is the value of calcium, total in patient 54825 last measured on the first hospital visit less than that the first value measured on the first hospital visit? | CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE d_items (row_id number,itemid number,label text,linksto 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... | SELECT (SELECT labevents.valuenum FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 54825 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime LIMIT 1) AND labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label ... |
provide the number of patients whose admission year is less than 2114 and item id is 50949? | 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 diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admityear < "2114" AND lab.itemid = "50949" |
What doctor published on June 2003? | CREATE TABLE table_61120 ("Title" text,"Author" text,"Doctor" text,"Companion(s)" text,"Published" text) | SELECT "Doctor" FROM table_61120 WHERE "Published" = 'june 2003' |
how is patient 20898 first admitted to the hospital in 2105? | CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,chartt... | SELECT admissions.admission_type FROM admissions WHERE admissions.subject_id = 20898 AND STRFTIME('%y', admissions.admittime) = '2105' ORDER BY admissions.admittime LIMIT 1 |
how many hours have passed since patient 90663's first stay in ward 12 during their current hospital encounter? | 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 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', transfers.intime)) FROM transfers WHERE transfers.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 90663 AND admissions.dischtime IS NULL)) AND transfers... |
In what rounds was the featured team of Avanzza Rosso? | CREATE TABLE table_name_51 (rounds VARCHAR,team VARCHAR) | SELECT rounds FROM table_name_51 WHERE team = "avanzza rosso" |
What is the average distance and price for all flights from LA? | CREATE TABLE flight (flno number,origin text,destination text,distance number,departure_date time,arrival_date time,price number,aid number)CREATE TABLE certificate (eid number,aid number)CREATE TABLE aircraft (aid number,name text,distance number)CREATE TABLE employee (eid number,name text,salary number) | SELECT AVG(distance), AVG(price) FROM flight WHERE origin = "Los Angeles" |
Which album had Jay Bentley on bass and Bobby Schayer on drums? | CREATE TABLE table_46846 ("Year" real,"Album" text,"Vocals" text,"Bass" text,"Drums" text,"Label" text) | SELECT "Album" FROM table_46846 WHERE "Bass" = 'jay bentley' AND "Drums" = 'bobby schayer' |
What is all the information about the Marketing department? | CREATE TABLE jobs (job_id text,job_title text,min_salary number,max_salary number)CREATE TABLE departments (department_id number,department_name text,manager_id number,location_id number)CREATE TABLE employees (employee_id number,first_name text,last_name text,email text,phone_number text,hire_date time,job_id text,sal... | SELECT * FROM departments WHERE department_name = 'Marketing' |
Which Country has a Year(s) won of 1977? | CREATE TABLE table_name_60 (country VARCHAR,year_s__won VARCHAR) | SELECT country FROM table_name_60 WHERE year_s__won = "1977" |
What city is Garfield County Museum located in? | CREATE TABLE table_name_39 (town_city VARCHAR,name VARCHAR) | SELECT town_city FROM table_name_39 WHERE name = "garfield county museum" |
Which city is the address of the store named 'FJA Filming' located in? | CREATE TABLE Addresses (City_Town VARCHAR,Address_ID VARCHAR)CREATE TABLE Stores (Address_ID VARCHAR,Store_Name VARCHAR) | SELECT T1.City_Town FROM Addresses AS T1 JOIN Stores AS T2 ON T1.Address_ID = T2.Address_ID WHERE T2.Store_Name = "FJA Filming" |
Find the name of amenities Smith Hall dorm have. | CREATE TABLE dorm_amenity (amenity_name VARCHAR,amenid VARCHAR)CREATE TABLE has_amenity (dormid VARCHAR,amenid VARCHAR)CREATE TABLE dorm (dormid VARCHAR,dorm_name VARCHAR) | SELECT T3.amenity_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid WHERE T1.dorm_name = 'Smith Hall' |
how many products have been discontinued ? | CREATE TABLE table_204_625 (id number,"model" text,"availability" text,"introduced" text,"length of use" text,"last of whiteness" text) | SELECT COUNT("model") FROM table_204_625 WHERE "availability" = 'discontinued' |
Which School/Club Team does Vince Carter Play for? | CREATE TABLE table_40971 ("Player" text,"Nationality" text,"Position" text,"Years in Orlando" text,"School/Club Team" text) | SELECT "School/Club Team" FROM table_40971 WHERE "Player" = 'vince carter' |
Who is the athlete with a run 1 less than 54.13 and a 55.21 run 3? | CREATE TABLE table_61931 ("Athlete" text,"Country" text,"Run 1" real,"Run 2" real,"Run 3" real) | SELECT "Athlete" FROM table_61931 WHERE "Run 1" < '54.13' AND "Run 3" = '55.21' |
What is the total number of professors with a Ph.D. ? | CREATE TABLE student (stu_num number,stu_lname text,stu_fname text,stu_init text,stu_dob time,stu_hrs number,stu_class text,stu_gpa number,stu_transfer number,dept_code text,stu_phone text,prof_num number)CREATE TABLE employee (emp_num number,emp_lname text,emp_fname text,emp_initial text,emp_jobcode text,emp_hiredate ... | SELECT COUNT(*) FROM professor WHERE prof_high_degree = 'Ph.D.' |
For all employees who have the letters D or S in their first name, return a line chart about the change of employee_id over hire_date , and order by the X in ascending. | 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 countries (... | SELECT HIRE_DATE, EMPLOYEE_ID FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' ORDER BY HIRE_DATE |
provide the number of patients whose lab test name is cd4/cd8 ratio? | 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 lab ON demographic.hadm_id = lab.hadm_id WHERE lab.label = "CD4/CD8 Ratio" |
What is 2004, when 2005 is 'Not Tier I'? | CREATE TABLE table_name_31 (Id VARCHAR) | SELECT 2004 FROM table_name_31 WHERE 2005 = "not tier i" |
For those employees who did not have any job in the past, find hire_date and the average of employee_id bin hire_date by time, and visualize them by a bar chart. | 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),COUNTRY_ID varchar(2))CREATE TABLE job_history (EMPLOYEE_ID decimal(... | SELECT HIRE_DATE, AVG(EMPLOYEE_ID) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history) |
Who won in 1965? | CREATE TABLE table_32695 ("Year" text,"Date" text,"Stages" text,"Distance" text,"Winner" text) | SELECT "Winner" FROM table_32695 WHERE "Year" = '1965' |
How big was the crowd for Essendon? | CREATE TABLE table_55190 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT SUM("Crowd") FROM table_55190 WHERE "Home team" = 'essendon' |
What is Pedro De La Rosa's total number of Grid? | CREATE TABLE table_56315 ("Driver" text,"Constructor" text,"Laps" real,"Time/Retired" text,"Grid" real) | SELECT COUNT("Grid") FROM table_56315 WHERE "Driver" = 'pedro de la rosa' |
which driver has his grid at 2 ? | CREATE TABLE table_203_76 (id number,"pos" text,"no" number,"driver" text,"constructor" text,"laps" number,"time/retired" text,"grid" number,"points" number) | SELECT "driver" FROM table_203_76 WHERE "grid" = 2 |
count the number of patients whose discharge location is disc-tran cancer/chldrn h and procedure short title is temporary colostomy? | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.discharge_location = "DISC-TRAN CANCER/CHLDRN H" AND procedures.short_title = "Temporary colostomy" |
Return a bar chart about the distribution of meter_400 and meter_100 . | CREATE TABLE record (ID int,Result text,Swimmer_ID int,Event_ID int)CREATE TABLE stadium (ID int,name text,Capacity int,City text,Country text,Opening_year int)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... | SELECT meter_400, meter_100 FROM swimmer |
Find the number of students in total. | CREATE TABLE student (stuid number,lname text,fname text,age number,sex text,major number,advisor number,city_code text)CREATE TABLE voting_record (stuid number,registration_date text,election_cycle text,president_vote number,vice_president_vote number,secretary_vote number,treasurer_vote number,class_president_vote nu... | SELECT COUNT(*) FROM student |
what same country did marc dos santos coach as colin miller ? | CREATE TABLE table_204_832 (id number,"name" text,"nationality" text,"club" text,"from" number,"until" text) | SELECT "nationality" FROM table_204_832 WHERE "name" = 'marc dos santos' |
What percentage of the 2011 population had a mother tongue language that was spoken by 45.22% of the population in 2006 (over 120)? | CREATE TABLE table_name_13 (percentage__2011_ VARCHAR,population__2006_ VARCHAR,percentage__2006_ VARCHAR) | SELECT percentage__2011_ FROM table_name_13 WHERE population__2006_ > 120 AND percentage__2006_ = "45.22%" |
how many american indian/alaska native patients were born before the year 2130? | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.ethnicity = "AMERICAN INDIAN/ALASKA NATIVE" AND demographic.dob_year < "2130" |
hba1c greater than 12 % | CREATE TABLE table_dev_9 ("id" int,"heart_disease" bool,"hba1c" float,"coronary_artery_disease_cad" bool,"triglyceride_tg" float,"hypertension" bool,"NOUSE" float) | SELECT * FROM table_dev_9 WHERE hba1c > 12 |
For those employees who did not have any job in the past, a bar chart shows the distribution of hire_date and the average of employee_id bin hire_date by time, rank in desc by the total number. | 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 job_history (EMPLOYEE_ID decimal(6,0),START_DATE date,END_DATE date,JOB_ID varchar(10),DEPARTMENT_ID decimal(4,0))CREATE TABLE employees (EMP... | SELECT HIRE_DATE, AVG(EMPLOYEE_ID) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history) ORDER BY AVG(EMPLOYEE_ID) DESC |
What is event 4 when event one was gauntlet, event 2 was duel, and event 3 was pendulum? | CREATE TABLE table_name_10 (event_4 VARCHAR,event_3 VARCHAR,event_1 VARCHAR,event_2 VARCHAR) | SELECT event_4 FROM table_name_10 WHERE event_1 = "gauntlet" AND event_2 = "duel" AND event_3 = "pendulum" |
what is the name of the intake that patient 1784 first had today? | CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE procedures_icd (row_id number,subject_id numb... | SELECT d_items.label FROM d_items WHERE d_items.itemid IN (SELECT inputevents_cv.itemid 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 = 1784)) AND DATETIME(inputevents_cv.c... |
What is the highest playoffs that has tampa bay as the team? | CREATE TABLE table_name_79 (playoffs INTEGER,teams VARCHAR) | SELECT MAX(playoffs) FROM table_name_79 WHERE teams = "tampa bay" |
What is the average crowd size for games with north melbourne as the away side? | CREATE TABLE table_32933 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT AVG("Crowd") FROM table_32933 WHERE "Away team" = 'north melbourne' |
What year was Asi Peko? | CREATE TABLE table_name_60 (year VARCHAR,name VARCHAR) | SELECT year FROM table_name_60 WHERE name = "asi peko" |
list all flights from PITTSBURGH to PHILADELPHIA | CREATE TABLE flight_stop (flight_id int,stop_number int,stop_days text,stop_airport text,arrival_time int,arrival_airline text,arrival_flight_number int,departure_time int,departure_airline text,departure_flight_number int,stop_time int)CREATE TABLE flight_fare (flight_id int,fare_id int)CREATE TABLE food_service (meal... | 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 = 'PITTSBURGH' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'PHI... |
which attendance was higher , july 1 or july 2 ? | CREATE TABLE table_203_673 (id number,"#" number,"date" text,"opponent" text,"score" text,"win" text,"loss" text,"save" text,"attendance" number,"record" text) | SELECT "date" FROM table_203_673 WHERE "date" IN ('july 1', 'july 2') ORDER BY "attendance" DESC LIMIT 1 |
Who had high assists in game number 9? | CREATE TABLE table_3841 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text) | SELECT "High assists" FROM table_3841 WHERE "Game" = '9' |
Which Rank has Goals larger than 10, and a Scorer of choi sang-kuk? | CREATE TABLE table_name_35 (rank VARCHAR,goals VARCHAR,scorer VARCHAR) | SELECT rank FROM table_name_35 WHERE goals > 10 AND scorer = "choi sang-kuk" |
What tourmament has Genesis won previously? | CREATE TABLE table_1272033_1 (championship VARCHAR,previous_champion_s_ VARCHAR) | SELECT championship FROM table_1272033_1 WHERE previous_champion_s_ = "Genesis" |
For those records from the products and each product's manufacturer, return a bar chart about the distribution of name and code , and group by attribute headquarter, show bar from low to high order. | CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER)CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL) | SELECT T1.Name, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Headquarter, T1.Name ORDER BY T1.Name |
What is the total that wehn Lithuania is the nation, and Silver is more than 0? | CREATE TABLE table_59801 ("Rank" real,"Nation" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real) | SELECT MIN("Total") FROM table_59801 WHERE "Nation" = 'lithuania' AND "Silver" > '0' |
Candidate John Mccain had how many delegates? | CREATE TABLE table_1423 ("Candidate" text,"State Delegate" real,"Percentage" text,"Delegates" real,"Counties Carries" real) | SELECT "Delegates" FROM table_1423 WHERE "Candidate" = 'John McCain' |
In what Borough is the Anchorage museum of Natural History? | CREATE TABLE table_name_31 (name VARCHAR,borough VARCHAR,type VARCHAR) | SELECT name FROM table_name_31 WHERE borough = "anchorage" AND type = "natural history" |
What season had a game in the first round with a result of 4 1, 0 1? | CREATE TABLE table_name_87 (season VARCHAR,round VARCHAR,result VARCHAR) | SELECT season FROM table_name_87 WHERE round = "first round" AND result = "4–1, 0–1" |
EECS 790 workload is like ? | 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 DISTINCT program_course.workload FROM course, program_course WHERE course.department = 'EECS' AND course.number = 790 AND program_course.course_id = course.course_id |
What is the date of the match when Detroit is the home team and Colorado is the visiting team? | CREATE TABLE table_69019 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Decision" text,"Attendance" real,"Record" text) | SELECT "Date" FROM table_69019 WHERE "Home" = 'detroit' AND "Visitor" = 'colorado' |
What coach premiered February 16, 2008 later than episode 21.0? | CREATE TABLE table_73287 ("Season" real,"Episode" real,"Episode Summary" text,"Premier date" text,"External Link" text,"Coach" text) | SELECT "Coach" FROM table_73287 WHERE "Premier date" = 'February 16, 2008' AND "Episode" > '21.0' |
What location and it's attendance was the game against the Nets? | CREATE TABLE table_23248910_6 (location_attendance VARCHAR,team VARCHAR) | SELECT location_attendance FROM table_23248910_6 WHERE team = "Nets" |
What is the Region with a Catalog that is vlmx 1087-3? | CREATE TABLE table_name_27 (region VARCHAR,catalog VARCHAR) | SELECT region FROM table_name_27 WHERE catalog = "vlmx 1087-3" |
Who was the director of the episode written by Russell T Davies and James Moran? | CREATE TABLE table_63546 ("Children of Earth" text,"Run time" text,"Writer" text,"Director" text,"Original airdate" text,"Viewers (including HD) in millions" text) | SELECT "Director" FROM table_63546 WHERE "Writer" = 'russell t davies and james moran' |
How many 2nd legs had an aggregate of 2-4? | CREATE TABLE table_19179 ("Home (1st leg)" text,"Home (2nd leg)" text,"1st Leg" text,"2nd leg" text,"Aggregate" text) | SELECT COUNT("2nd leg") FROM table_19179 WHERE "Aggregate" = '2-4' |
Find login_name and gender_mf , and visualize them by a bar chart. | CREATE TABLE Student_Course_Enrolment (registration_id INTEGER,student_id INTEGER,course_id INTEGER,date_of_enrolment DATETIME,date_of_completion DATETIME)CREATE TABLE Courses (course_id INTEGER,author_id INTEGER,subject_id INTEGER,course_name VARCHAR(120),course_description VARCHAR(255))CREATE TABLE Students (student_... | SELECT login_name, gender_mf FROM Course_Authors_and_Tutors ORDER BY personal_name |
what is the minimum total | CREATE TABLE table_1108394_43 (total INTEGER) | SELECT MIN(total) FROM table_1108394_43 |
Which Rank 2014 has a 2009 10 of 21.233? | CREATE TABLE table_58616 ("Rank 2014" real,"Rank 2013" real,"Mvmt" text,"Club" text,"Country" text,"2009\u201310" real,"2010\u201311" real,"2011\u201312" real,"2012\u201313" real,"2013\u201314" real,"Coeff." real) | SELECT AVG("Rank 2014") FROM table_58616 WHERE "2009\u201310" = '21.233' |
In Transactional Drafting , who have all the teachers been past present and future ? | 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 DISTINCT instructor.name FROM instructor INNER JOIN offering_instructor ON offering_instructor.instructor_id = instructor.instructor_id INNER JOIN course_offering ON offering_instructor.offering_id = course_offering.offering_id INNER JOIN course ON course.course_id = course_offering.course_id WHERE course.name L... |
Which stage corresponds to Banesto and Tony Rominger? | CREATE TABLE table_name_7 (stage VARCHAR,team_classification VARCHAR,points_classification VARCHAR) | SELECT stage FROM table_name_7 WHERE team_classification = "banesto" AND points_classification = "tony rominger" |
How many times did Charles Jarrott report? | CREATE TABLE table_18893428_1 (report VARCHAR,driver VARCHAR) | SELECT COUNT(report) FROM table_18893428_1 WHERE driver = "Charles Jarrott" |
For those records from the products and each product's manufacturer, show me about the correlation between price and manufacturer in a scatter chart. | 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 Price, Manufacturer FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.