instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
What is the Musical Guest (Song performed) for the episode aired on 13 july 2008? | CREATE TABLE table_name_2 (musical_guest__song_performed_ VARCHAR,air_date VARCHAR) | SELECT musical_guest__song_performed_ FROM table_name_2 WHERE air_date = "13 july 2008" |
Create a bar chart showing the total number across team | CREATE TABLE repair (repair_ID int,name text,Launch_Date text,Notes text)CREATE TABLE technician (technician_id real,Name text,Team text,Starting_Year real,Age int)CREATE TABLE machine (Machine_ID int,Making_Year int,Class text,Team text,Machine_series text,value_points real,quality_rank int)CREATE TABLE repair_assignm... | SELECT Team, COUNT(*) FROM technician GROUP BY Team |
If the name of the district is the Charyl Stockwell Academy, what is the county name? | CREATE TABLE table_25212 ("District name" text,"Dist. ID" real,"ISD" text,"County" text,"Authorizing agency" text,"Date opened" text,"Services" text) | SELECT "County" FROM table_25212 WHERE "District name" = 'Charyl Stockwell Academy' |
Name the most margin for nco party and p. ramachandran won | CREATE TABLE table_22754310_1 (margin INTEGER,party VARCHAR,winner VARCHAR) | SELECT MAX(margin) FROM table_22754310_1 WHERE party = "NCO" AND winner = "P. Ramachandran" |
Which Week has a Result of l 13-16 and an Opponent of at buffalo bills? | CREATE TABLE table_42057 ("Week" real,"Date" text,"TV Time" text,"Opponent" text,"Result" text) | SELECT AVG("Week") FROM table_42057 WHERE "Result" = 'l 13-16' AND "Opponent" = 'at buffalo bills' |
How many loses have points greater than 30, goals scored greater than 59, with a position greater than 5? | CREATE TABLE table_name_84 (loses INTEGER,position VARCHAR,points VARCHAR,goals_scored VARCHAR) | SELECT SUM(loses) FROM table_name_84 WHERE points > 30 AND goals_scored > 59 AND position > 5 |
Is there an CLIMATE 400 -level course that contains 4 credits ? | 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 semester (semester_id int,semester varchar,year int)CREATE TABLE program_requirement (program_id int,category varchar,min_credit i... | SELECT DISTINCT course.department, course.name, course.number FROM course INNER JOIN program_course ON program_course.course_id = course.course_id INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN semester ON semester.semester_id = course_offering.semester WHERE program_course.catego... |
For all employees who have the letters D or S in their first name, draw a line chart about the change of employee_id over hire_date , and list in desc by the x axis please. | CREATE TABLE countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))CREATE TABLE locations (LOCATION_ID decimal(4,0),STREET_ADDRESS varchar(40),POSTAL_CODE varchar(12),CITY varchar(30),STATE_PROVINCE varchar(25),COUNTRY_ID varchar(2))CREATE TABLE job_history (EMPLOYEE_ID decimal(6,0),START_DA... | SELECT HIRE_DATE, EMPLOYEE_ID FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' ORDER BY HIRE_DATE DESC |
what is average age of patients whose marital status is single and year of birth is greater than 2175? | 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 AVG(demographic.age) FROM demographic WHERE demographic.marital_status = "SINGLE" AND demographic.dob_year > "2175" |
For those records from the products and each product's manufacturer, find name and the average of code , and group by attribute name, and visualize them by a bar chart, rank by the Y-axis in asc. | 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 T1.Name ORDER BY T1.Code |
give me the number of patients whose ethnicity is american indian/alaska native and item id is 50803? | CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug tex... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.ethnicity = "AMERICAN INDIAN/ALASKA NATIVE" AND lab.itemid = "50803" |
first time patient 26156 got surgery until 2104? | CREATE TABLE d_items (row_id number,itemid number,label text,linksto 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 icustays (row_id number,subject_id number,hadm_id number,icustay_id number,first_careunit text,l... | SELECT procedures_icd.charttime FROM procedures_icd WHERE procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 26156) AND STRFTIME('%y', procedures_icd.charttime) <= '2104' ORDER BY procedures_icd.charttime LIMIT 1 |
What is the GDP of the nation with 56,210,000 people? | CREATE TABLE table_71503 ("Member countries" text,"Population" text,"Area (km\u00b2)" text,"GDP (billion US$)" text,"GDP per capita (US$)" text) | SELECT "GDP per capita (US$)" FROM table_71503 WHERE "Population" = '56,210,000' |
What district has benjamin eggleston for incumbent? | CREATE TABLE table_name_52 (district VARCHAR,incumbent VARCHAR) | SELECT district FROM table_name_52 WHERE incumbent = "benjamin eggleston" |
What is the number of patients less than 85 years old who have coronary artery disease or coronary artery bypass graft with mvr or maze primary disease? | 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 WHERE demographic.diagnosis = "CORONARY ARTERY DISEASE\CORONARY ARTERY BYPASS GRAFT WITH MVR; ? MAZE" AND demographic.age < "85" |
What is the fewest number of wickets recorded? | CREATE TABLE table_30110 ("Player" text,"Matches" real,"Overs" text,"Wickets" real,"Average" text,"Economy" text,"BBI" text,"4wi" real) | SELECT MIN("Wickets") FROM table_30110 |
What is the highest overall prior to 1996 with a slalom of 39? | CREATE TABLE table_name_33 (overall INTEGER,slalom VARCHAR,season VARCHAR) | SELECT MAX(overall) FROM table_name_33 WHERE slalom = "39" AND season < 1996 |
Tell me the position for pick of 146 | CREATE TABLE table_name_7 (position VARCHAR,pick VARCHAR) | SELECT position FROM table_name_7 WHERE pick = "146" |
What are the rooms for members of the faculty who are professors and who live in building NEB? | CREATE TABLE minor_in (stuid number,dno number)CREATE TABLE enrolled_in (stuid number,cid text,grade text)CREATE TABLE member_of (facid number,dno number,appt_type text)CREATE TABLE course (cid text,cname text,credits number,instructor number,days text,hours text,dno number)CREATE TABLE faculty (facid number,lname text... | SELECT room FROM faculty WHERE rank = "Professor" AND building = "NEB" |
A bar chart about the number of first name for all female students whose sex is F, list by the x-axis in descending. | CREATE TABLE Has_Allergy (StuID INTEGER,Allergy VARCHAR(20))CREATE TABLE Student (StuID INTEGER,LName VARCHAR(12),Fname VARCHAR(12),Age INTEGER,Sex VARCHAR(1),Major INTEGER,Advisor INTEGER,city_code VARCHAR(3))CREATE TABLE Allergy_Type (Allergy VARCHAR(20),AllergyType VARCHAR(20)) | SELECT Fname, COUNT(Fname) FROM Student WHERE Sex = 'F' GROUP BY Fname ORDER BY Fname DESC |
which composer is listed below pete doherty ? | CREATE TABLE table_204_969 (id number,"composer" text,"title" text,"genre" text,"date" number,"notes" text) | SELECT "composer" FROM table_204_969 WHERE id = (SELECT id FROM table_204_969 WHERE "composer" = 'pete doherty') + 1 |
give me the number of patients whose marital status is single and diagnoses long title is syncope and collapse? | CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.marital_status = "SINGLE" AND diagnoses.long_title = "Syncope and collapse" |
When Payne Stewart of the United States scored higher than 69, what was the To Par? | CREATE TABLE table_47375 ("Place" text,"Player" text,"Country" text,"Score" real,"To par" text) | SELECT "To par" FROM table_47375 WHERE "Country" = 'united states' AND "Score" > '69' AND "Player" = 'payne stewart' |
What is the first name and GPA of every student that has a GPA lower than average. | CREATE TABLE COURSE (CRS_CODE varchar(10),DEPT_CODE varchar(10),CRS_DESCRIPTION varchar(35),CRS_CREDIT float(8))CREATE TABLE CLASS (CLASS_CODE varchar(5),CRS_CODE varchar(10),CLASS_SECTION varchar(2),CLASS_TIME varchar(20),CLASS_ROOM varchar(8),PROF_NUM int)CREATE TABLE EMPLOYEE (EMP_NUM int,EMP_LNAME varchar(15),EMP_F... | SELECT STU_FNAME, SUM(STU_GPA) FROM STUDENT WHERE STU_GPA < (SELECT AVG(STU_GPA) FROM STUDENT) GROUP BY STU_FNAME |
what is the number of patients whose year of death is less than or equal to 2126 and procedure long title is (aorto)coronary bypass of two coronary arteries? | 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 procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.dod_year <= "2126.0" AND procedures.long_title = "(Aorto)coronary bypass of two coronary arteries" |
bernadette 's soms and which other song earned the same number of points ? | CREATE TABLE table_204_915 (id number,"draw" number,"artist" text,"song" text,"points" number,"place" text) | SELECT "song" FROM table_204_915 WHERE "song" <> '"soms"' AND "points" = (SELECT "points" FROM table_204_915 WHERE "song" = '"soms"') |
what is the ground transportation available in the city of PHILADELPHIA | CREATE TABLE restriction (restriction_code text,advance_purchase int,stopovers text,saturday_stay_required text,minimum_stay int,maximum_stay int,application text,no_discounts text)CREATE TABLE fare_basis (fare_basis_code text,booking_class text,class_type text,premium text,economy text,discounted text,night text,seaso... | SELECT DISTINCT ground_service.transport_type FROM city, ground_service WHERE city.city_name = 'PHILADELPHIA' AND ground_service.city_code = city.city_code |
what is the earliest year when the author is reki kawahara? | CREATE TABLE table_name_42 (year INTEGER,author VARCHAR) | SELECT MIN(year) FROM table_name_42 WHERE author = "reki kawahara" |
give me the number of patients whose diagnoses long title is other preterm infants, 2,000-2,499 grams? | 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 INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE diagnoses.long_title = "Other preterm infants, 2,000-2,499 grams" |
how many roman catholic dioceses were established in angola before 1990 ? | CREATE TABLE table_204_876 (id number,"ecclesiastical jurisdictions" text,"latin name" text,"type" text,"rite" text,"ecclesiastical province" text,"established" text,"area (km2)" number) | SELECT COUNT("ecclesiastical jurisdictions") FROM table_204_876 WHERE "established" < 1990 |
which of the teams had the top number of capacity ? | CREATE TABLE table_204_750 (id number,"team" text,"stadium" text,"capacity" number,"seated" number) | SELECT "team" FROM table_204_750 ORDER BY "capacity" DESC LIMIT 1 |
what is the number of patients whose age is less than 62 and diagnoses long title is acute glomerulonephritis with other specified pathological lesion in kidney? | CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd t... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.age < "62" AND diagnoses.long_title = "Acute glomerulonephritis with other specified pathological lesion in kidney" |
Show all train names and times in stations in London in descending order by train time. | CREATE TABLE train (train_id number,name text,time text,service text)CREATE TABLE train_station (train_id number,station_id number)CREATE TABLE station (station_id number,name text,annual_entry_exit number,annual_interchanges number,total_passengers number,location text,main_services text,number_of_platforms number) | SELECT T3.name, T3.time FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T2.location = 'London' ORDER BY T3.time DESC |
What is Style, when Choreographer(s) is Dave Scott? | CREATE TABLE table_name_17 (style VARCHAR,choreographer_s_ VARCHAR) | SELECT style FROM table_name_17 WHERE choreographer_s_ = "dave scott" |
Who's the incumbent in Florida 6? | CREATE TABLE table_18141 ("District" text,"Incumbent" text,"Party" text,"First elected" real,"Results" text,"Candidates" text) | SELECT "Incumbent" FROM table_18141 WHERE "District" = 'Florida 6' |
give me the flights from MIAMI to NEW YORK using FF | CREATE TABLE equipment_sequence (aircraft_code_sequence varchar,aircraft_code varchar)CREATE TABLE flight (aircraft_code_sequence text,airline_code varchar,airline_flight text,arrival_time int,connections int,departure_time int,dual_carrier text,flight_days text,flight_id int,flight_number int,from_airport varchar,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 = 'NEW YORK' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'MIAM... |
For team ascoli please mention all the appointment date. | CREATE TABLE table_27114708_2 (date_of_appointment VARCHAR,team VARCHAR) | SELECT date_of_appointment FROM table_27114708_2 WHERE team = "Ascoli" |
how many notes are form the date (from) 14 march 1910? | CREATE TABLE table_17715 ("Name of System" text,"Location" text,"Traction Type" text,"Date (From)" text,"Date (To)" text,"Notes" text) | SELECT COUNT("Notes") FROM table_17715 WHERE "Date (From)" = '14 March 1910' |
How many match numbers have team europe listed as osku palermaa? | CREATE TABLE table_1987 ("Match no." real,"Match Type" text,"Team Europe" text,"Score" text,"Team USA" text,"Progressive Total" text) | SELECT COUNT("Match no.") FROM table_1987 WHERE "Team Europe" = 'Osku Palermaa' |
How many users with rep less than 15. | CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPostId number,LinkTypeId number)CREATE TABLE SuggestedEdits (Id number,PostId number,CreationDate time,ApprovalDate time,RejectionDate time,OwnerUserId number,Comment text,Text text,Title text,Tags text,RevisionGUID other)CREATE TABLE PostHistoryT... | SELECT COUNT(*) AS Users FROM Users WHERE Reputation < 15 AND Id > 0 |
Which League championship is the lowest one that has a Venue of penn state ice pavilion, and a Club of penn state nittany lions men's ice hockey? | CREATE TABLE table_46856 ("Sport" text,"League" text,"Club" text,"Founded" real,"Venue" text,"League championships" real,"Championship years" text) | SELECT MIN("League championships") FROM table_46856 WHERE "Venue" = 'penn state ice pavilion' AND "Club" = 'penn state nittany lions men''s ice hockey' |
estimated glomerular filtration rate ( egfr ) < 30 ml / min / 1.73 m2 using the mdrd formula at visit 1. | CREATE TABLE table_test_4 ("id" int,"ejection_fraction_ef" int,"systolic_blood_pressure_sbp" int,"active_infection" bool,"heart_disease" bool,"renal_disease" bool,"estimated_glomerular_filtration_rate_egfr" int,"cardiogenic_shock" bool,"diastolic_blood_pressure_dbp" int,"symptomatic_hypotension" bool,"severe_refractory... | SELECT * FROM table_test_4 WHERE estimated_glomerular_filtration_rate_egfr < 30 |
Which Years in Orlando has a School/Club Team of texas tech? | CREATE TABLE table_name_74 (years_in_orlando VARCHAR,school_club_team VARCHAR) | SELECT years_in_orlando FROM table_name_74 WHERE school_club_team = "texas tech" |
Name the total number of ranks for kujalleq with former name of brattahl and population less than 47 | CREATE TABLE table_68047 ("Rank" real,"Population" real,"Name" text,"Former Name" text,"Municipality" text) | SELECT COUNT("Rank") FROM table_68047 WHERE "Municipality" = 'kujalleq' AND "Former Name" = 'brattahlíð' AND "Population" < '47' |
List categories that have at least two books after year 1989. | CREATE TABLE book_club (category VARCHAR,YEAR INTEGER) | SELECT category FROM book_club WHERE YEAR > 1989 GROUP BY category HAVING COUNT(*) >= 2 |
By whom is BIOLOGY 281 taught ? | CREATE TABLE program (program_id int,name varchar,college varchar,introduction varchar)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 ta (campus_job_id int,student_id int,locati... | SELECT DISTINCT instructor.name FROM course, course_offering, instructor, offering_instructor WHERE course.course_id = course_offering.course_id AND course.department = 'BIOLOGY' AND course.number = 281 AND offering_instructor.instructor_id = instructor.instructor_id AND offering_instructor.offering_id = course_offerin... |
On what date was the handicap 8 st 12 lb? | CREATE TABLE table_2896329_1 (date VARCHAR,handicap VARCHAR) | SELECT date FROM table_2896329_1 WHERE handicap = "8 st 12 lb" |
count the number of patients whose diagnoses short title is alcohol cirrhosis liver and lab test category is hematology? | 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 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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.short_title = "Alcohol cirrhosis liver" AND lab."CATEGORY" = "Hematology" |
What Average Pick # has an Overall of 296? | CREATE TABLE table_name_8 (pick__number INTEGER,overall VARCHAR) | SELECT AVG(pick__number) FROM table_name_8 WHERE overall = 296 |
how many patients whose ethnicity is black/cape verdean and year of birth is less than 2078? | 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.ethnicity = "BLACK/CAPE VERDEAN" AND demographic.dob_year < "2078" |
what is the number of patients whose procedure long title is open reduction of fracture with internal fixation, femur and lab test category is blood gas? | 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 text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE procedures.long_title = "Open reduction of fracture with internal fixation, femur" AND lab."CATEGORY" = "Blood Gas" |
what is the total of new points that have been given ? | CREATE TABLE table_204_651 (id number,"date" text,"championship" text,"location" text,"category" text,"surface" text,"prev. result" text,"prev. points" number,"new points" number,"outcome" text) | SELECT SUM("new points") FROM table_204_651 |
What is Player, when Round is less than 6, and when Pick is '69'? | CREATE TABLE table_9992 ("Round" real,"Pick" real,"Player" text,"Nationality" text,"College" text) | SELECT "Player" FROM table_9992 WHERE "Round" < '6' AND "Pick" = '69' |
what was the name of the drug patient 32755 got prescription for within 2 days after being diagnosed with bmi 33.0-33.9,adult in the last hospital visit? | CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount 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 d_icd_diagn... | SELECT t2.drug FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions.hadm_id WHERE admissions.subject_id = 32755 AND diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'bmi 33... |
Who was the director that had a recipient of Redbag Pictures Ltd? | CREATE TABLE table_name_54 (director_s_ VARCHAR,recipient VARCHAR) | SELECT director_s_ FROM table_name_54 WHERE recipient = "redbag pictures ltd" |
Which Record has a Points smaller than 62 and a February larger than 16, and a Score of 8 7? | CREATE TABLE table_39013 ("Game" real,"February" real,"Opponent" text,"Score" text,"Record" text,"Points" real) | SELECT "Record" FROM table_39013 WHERE "Points" < '62' AND "February" > '16' AND "Score" = '8–7' |
How many artists do we have? | CREATE TABLE exhibition (exhibition_id number,year number,theme text,artist_id number,ticket_price number)CREATE TABLE artist (artist_id number,name text,country text,year_join number,age number)CREATE TABLE exhibition_record (exhibition_id number,date text,attendance number) | SELECT COUNT(*) FROM artist |
Who had a rank under 17 with a total of 119? | CREATE TABLE table_66216 ("Rank" real,"Athlete" text,"Country" text,"Day 1" real,"Total" text) | SELECT "Athlete" FROM table_66216 WHERE "Rank" < '17' AND "Total" = '119' |
Provide the number of patients born before 2123 who have s/p hanging as their primary disease. | 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 procedures (subject_id text,hadm_id te... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "S/P HANGING" AND demographic.dob_year < "2123" |
What number pick was the player from HIFK Helsinki (Finland)? | CREATE TABLE table_29020 ("Pick #" real,"Player" text,"Position" text,"Nationality" text,"NHL team" text,"College/junior/club team" text) | SELECT "Pick #" FROM table_29020 WHERE "College/junior/club team" = 'HIFK Helsinki (Finland)' |
What is the lowest Year, when Notes is '5.19km, 18controls'? | CREATE TABLE table_name_24 (year INTEGER,notes VARCHAR) | SELECT MIN(year) FROM table_name_24 WHERE notes = "5.19km, 18controls" |
What is the diameter for 1997 when longitude is 212.0e and latitude is 47.0n? | CREATE TABLE table_name_50 (diameter__km_ INTEGER,latitude VARCHAR,year_named VARCHAR,longitude VARCHAR) | SELECT MIN(diameter__km_) FROM table_name_50 WHERE year_named = 1997 AND longitude = "212.0e" AND latitude = "47.0n" |
What is the most amount of ministries? | CREATE TABLE table_2453 ("N\u00ba" real,"Cabinet (Nickname)" text,"Took office" text,"Left office" text,"Duration" text,"Coalition parties" text,"ministers" text,"ministries" real,"King" text) | SELECT MAX("ministries") FROM table_2453 |
Top questions by Bayesian rating. | CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE PostNoticeTypes (Id number,ClassId number,Name text,Body text,IsHidden boolean,Predefined boolean,PostNoticeDurationId number)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE ReviewTaskResultTypes (Id number,Name text,Description text)CREATE TABLE ... | SELECT Id AS "post_link", upvotes, downvotes, Score, (upvotes + (AVG(upvotes) OVER ())) / (upvotes + downvotes + (AVG(upvotes + downvotes) OVER ())) AS br FROM (SELECT p.Id, COUNT(CASE v.VoteTypeId WHEN 2 THEN 1 ELSE NULL END) AS upvotes, COUNT(CASE v.VoteTypeId WHEN 3 THEN 1 ELSE NULL END) AS downvotes, MAX(p.Score) A... |
Which codes have subdivision names (BE) (BGN) of Homyel'skaya Voblasts'? | CREATE TABLE table_30888 ("Code" text,"Subdivision name (be) (BGN/PCGN)" text,"Subdivision name (be) (GOST)" text,"Subdivision name (ru) (BGN/PCGN)" text,"Subdivision name (ru) (GOST)" text,"Subdivision category" text) | SELECT "Code" FROM table_30888 WHERE "Subdivision name ( be ) (BGN/PCGN)" = 'Homyel''skaya voblasts' |
How many staffs have contacted with each engineer? Give me a bar chart grouping by each engineer's last name, order the number of last name in descending order. | CREATE TABLE Skills_Required_To_Fix (part_fault_id INTEGER,skill_id INTEGER)CREATE TABLE Skills (skill_id INTEGER,skill_code VARCHAR(20),skill_description VARCHAR(255))CREATE TABLE Part_Faults (part_fault_id INTEGER,part_id INTEGER,fault_short_name VARCHAR(20),fault_description VARCHAR(255),other_fault_details VARCHAR(... | SELECT last_name, COUNT(last_name) FROM Staff AS T1 JOIN Engineer_Visits AS T2 ON T1.staff_id = T2.contact_staff_id JOIN Maintenance_Engineers AS T3 ON T2.engineer_id = T3.engineer_id GROUP BY last_name ORDER BY COUNT(last_name) DESC |
Which TV Time has a Date of january 2, 2005? | CREATE TABLE table_name_23 (tv_time VARCHAR,date VARCHAR) | SELECT tv_time FROM table_name_23 WHERE date = "january 2, 2005" |
What is the gender of the school which has the website http://www.nicholasbreakspearschool.co.uk/? | CREATE TABLE table_30574 ("School" text,"Gender" text,"Age Range" text,"Religious Affiliation" text,"Location" text,"School website" text) | SELECT "Gender" FROM table_30574 WHERE "School website" = 'http://www.nicholasbreakspearschool.co.uk/' |
What is the rank of the film directed by Kevin Costner? | CREATE TABLE table_44119 ("Rank" real,"Title" text,"Studio" text,"Director" text,"Gross" text) | SELECT COUNT("Rank") FROM table_44119 WHERE "Director" = 'kevin costner' |
What is the average game number that was on october 19? | CREATE TABLE table_46062 ("Game" real,"October" real,"Opponent" text,"Score" text,"Record" text) | SELECT AVG("Game") FROM table_46062 WHERE "October" = '19' |
What is the Craft used at Coniston Water? | CREATE TABLE table_name_15 (craft VARCHAR,location VARCHAR) | SELECT craft FROM table_name_15 WHERE location = "coniston water" |
How many CFL teams drafted someone from mount allison college? | CREATE TABLE table_26996293_3 (cfl_team VARCHAR,college VARCHAR) | SELECT COUNT(cfl_team) FROM table_26996293_3 WHERE college = "Mount Allison" |
give me the number of patients whose year of death is less than or equal to 2122 and drug code is beth5? | CREATE TABLE procedures (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 text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_fla... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.dod_year <= "2122.0" AND prescriptions.formulary_drug_cd = "BETH5" |
What's the location when the branding is 1116 DXAS Zamboanga? | CREATE TABLE table_65419 ("Branding" text,"Call-Sign" text,"Frequency" text,"Power (kw)" text,"Location" text) | SELECT "Location" FROM table_65419 WHERE "Branding" = '1116 dxas zamboanga' |
Who had a points average with 0 extra points and 0 field goals? | CREATE TABLE table_name_33 (points INTEGER,extra_points VARCHAR,field_goals VARCHAR) | SELECT AVG(points) FROM table_name_33 WHERE extra_points = 0 AND field_goals > 0 |
Which Share of seats has a European election (UK) of 2009? | CREATE TABLE table_name_79 (share_of_seats VARCHAR,european_election__uk_ VARCHAR) | SELECT share_of_seats FROM table_name_79 WHERE european_election__uk_ = 2009 |
Which date held the match at the City Stadium, Georgetown? | CREATE TABLE table_name_7 (date VARCHAR,venue VARCHAR) | SELECT date FROM table_name_7 WHERE venue = "city stadium, georgetown" |
Which Allied Force targetted Woensdrecht? | CREATE TABLE table_72197 ("Target" text,"Target Code (Allied)" text,"Luftwaffe unit (wing)" text,"Allied forces" text,"Effect on Allied Squadrons (according to official figures)" text) | SELECT "Allied forces" FROM table_72197 WHERE "Target" = 'Woensdrecht' |
Find the number of booking start date for the apartments that have more than two bedrooms for each weekday in a bar chart. | CREATE TABLE Apartment_Facilities (apt_id INTEGER,facility_code CHAR(15))CREATE TABLE Apartments (apt_id INTEGER,building_id INTEGER,apt_type_code CHAR(15),apt_number CHAR(10),bathroom_count INTEGER,bedroom_count INTEGER,room_count CHAR(5))CREATE TABLE Apartment_Bookings (apt_booking_id INTEGER,apt_id INTEGER,guest_id ... | SELECT booking_start_date, COUNT(booking_start_date) FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 2 |
What team had 10 Labs and the Driver was Alex Yoong? | CREATE TABLE table_name_24 (team VARCHAR,laps VARCHAR,driver VARCHAR) | SELECT team FROM table_name_24 WHERE laps = 10 AND driver = "alex yoong" |
What was the score at Spartan Stadium when San Jose was the Home team? | CREATE TABLE table_35500 ("Date" text,"Home Team" text,"Score" text,"Away Team" text,"Venue" text) | SELECT "Score" FROM table_35500 WHERE "Home Team" = 'san jose' AND "Venue" = 'spartan stadium' |
on 07/28/2102, when was the last time that the arterial bp [diastolic] of patient 21454 was greater than 52.0? | 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,charttime time,valuenum number,valueuom text)CREATE TABLE d_icd_procedures (row_id number,icd9_cod... | SELECT chartevents.charttime 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 = 21454)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'arterial... |
what is the score on march 8? | CREATE TABLE table_48673 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text) | SELECT "Score" FROM table_48673 WHERE "Date" = 'march 8' |
What is the sum of the bronze medals when there were less than 8 total medals, 0 silver medals and a rank of 9? | CREATE TABLE table_64785 ("Rank" real,"Nation" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real) | SELECT SUM("Bronze") FROM table_64785 WHERE "Total" < '8' AND "Rank" = '9' AND "Silver" < '0' |
What are the country of product origins where pesticide residues were not detected? | CREATE TABLE sampledata15 (sample_pk number,state text,year text,month text,day text,site text,commod text,source_id text,variety text,origin text,country text,disttype text,commtype text,claim text,quantity number,growst text,packst text,distst text)CREATE TABLE resultsdata15 (sample_pk number,commod text,commtype tex... | SELECT T1.country FROM sampledata15 AS T1 JOIN resultsdata15 AS T2 ON T1.sample_pk = T2.sample_pk WHERE T2.concen = "0" GROUP BY T1.country |
How many times is the total less than 15, rank less than 5, bronze is 4 and gold smaller than 3? | CREATE TABLE table_name_23 (silver VARCHAR,gold VARCHAR,bronze VARCHAR,total VARCHAR,rank VARCHAR) | SELECT COUNT(silver) FROM table_name_23 WHERE total < 15 AND rank < 5 AND bronze = 4 AND gold < 3 |
Show the number of accounts opened in each day. Bin the account open day by weekday and group by other account details in a stacked bar chart. | CREATE TABLE Accounts (account_id INTEGER,customer_id INTEGER,date_account_opened DATETIME,account_name VARCHAR(50),other_account_details VARCHAR(255))CREATE TABLE Orders (order_id INTEGER,customer_id INTEGER,date_order_placed DATETIME,order_details VARCHAR(255))CREATE TABLE Invoices (invoice_number INTEGER,order_id IN... | SELECT date_account_opened, COUNT(date_account_opened) FROM Accounts GROUP BY other_account_details |
What are all the characteristic names of product 'sesame'? | CREATE TABLE ref_colors (color_code text,color_description text)CREATE TABLE products (product_id number,color_code text,product_category_code text,product_name text,typical_buying_price text,typical_selling_price text,product_description text,other_product_details text)CREATE TABLE product_characteristics (product_id ... | SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN characteristics AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = "sesame" |
Who was the Semi-Finalist #2 in 2007? | CREATE TABLE table_name_59 (semi_finalist__number2 VARCHAR,year VARCHAR) | SELECT semi_finalist__number2 FROM table_name_59 WHERE year = "2007" |
Name the number of new adherents per year for confucianism | CREATE TABLE table_30288 ("Religion" text,"Births" real,"Conversions" text,"New adherents per year" real,"Growth rate" text) | SELECT COUNT("New adherents per year") FROM table_30288 WHERE "Religion" = 'Confucianism' |
what is average age of patients whose gender is m and days of hospital stay is 27? | 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 AVG(demographic.age) FROM demographic WHERE demographic.gender = "M" AND demographic.days_stay = "27" |
What is the total number of ranks that had vestron as the studio? | CREATE TABLE table_name_48 (rank VARCHAR,studio VARCHAR) | SELECT COUNT(rank) FROM table_name_48 WHERE studio = "vestron" |
How many picks played Tight end? | CREATE TABLE table_14650162_1 (pick__number VARCHAR,position VARCHAR) | SELECT COUNT(pick__number) FROM table_14650162_1 WHERE position = "Tight End" |
how many patients since 3 years ago were diagnosed with s/p thyroid surgery after antiarrhythmics - class iii antiarrhythmic within 2 months? | CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight number... | SELECT COUNT(DISTINCT t1.uniquepid) FROM (SELECT patient.uniquepid, treatment.treatmenttime FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'antiarrhythmics - class iii antiarrhythmic' AND DATETIME(treatment.treatmenttime) >= DATETIME(CURRENT_TIME()... |
Which Division does the City being jacksonville, florida belong to? | CREATE TABLE table_36704 ("Conference" text,"Division" text,"Team" text,"City" text,"Home Stadium" text) | SELECT "Division" FROM table_36704 WHERE "City" = 'jacksonville, florida' |
When 5 is the l what is the lowest amount of stolen ends? | CREATE TABLE table_29565541_2 (stolen_ends INTEGER,l VARCHAR) | SELECT MIN(stolen_ends) FROM table_29565541_2 WHERE l = 5 |
Show me a bar chart for what is the id and trade name of the medicines can interact with at least 3 enzymes?, sort total number in ascending order please. | CREATE TABLE medicine_enzyme_interaction (enzyme_id int,medicine_id int,interaction_type text)CREATE TABLE enzyme (id int,name text,Location text,Product text,Chromosome text,OMIM int,Porphyria text)CREATE TABLE medicine (id int,name text,Trade_Name text,FDA_approved text) | SELECT Trade_Name, id FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id ORDER BY id |
return me the number of citations of ' Making database systems usable ' in each year . | CREATE TABLE publication (abstract varchar,cid int,citation_num int,jid int,pid int,reference_num int,title varchar,year int)CREATE TABLE domain_keyword (did int,kid int)CREATE TABLE conference (cid int,homepage varchar,name varchar)CREATE TABLE writes (aid int,pid int)CREATE TABLE cite (cited int,citing int)CREATE TAB... | SELECT year, SUM(citation_num) FROM publication WHERE title = 'Making database systems usable' GROUP BY year |
What's the 123kg of the Total world record? | CREATE TABLE table_name_41 (world_record VARCHAR) | SELECT 123 AS kg FROM table_name_41 WHERE world_record = "total" |
what is the primary disease and procedure icd9 code of subject id 74463? | 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 demographic (subject_id text,hadm_id text,name text,marital_status text,age text,do... | SELECT demographic.diagnosis, procedures.icd9_code FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.subject_id = "74463" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.