instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
In what year did the team compete in the 2nd, Northeast season of the USL PDL League? | CREATE TABLE table_1939214_1 (year VARCHAR,league VARCHAR,regular_season VARCHAR) | SELECT year FROM table_1939214_1 WHERE league = "USL PDL" AND regular_season = "2nd, Northeast" |
how many patients whose gender is f and diagnoses long title is acute diastolic heart failure? | 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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.gender = "F" AND diagnoses.long_title = "Acute diastolic heart failure" |
What is the Player that has a To standard of 7? | CREATE TABLE table_name_47 (player VARCHAR,to_par VARCHAR) | SELECT player FROM table_name_47 WHERE to_par = "–7" |
what's the party with dbeingtrict being massachusetts 3 | CREATE TABLE table_18294 ("District" text,"Incumbent" text,"Party" text,"First elected" real,"Result" text,"Candidates" text) | SELECT "Party" FROM table_18294 WHERE "District" = 'Massachusetts 3' |
What is the social democrat released on October 10, 1999? | CREATE TABLE table_64109 ("Date Released" text,"Polling institute" text,"Socialist" text,"Social Democratic" text,"Green-Communist" text,"People's Party" text,"Left Bloc" text,"Lead" text) | SELECT "Social Democratic" FROM table_64109 WHERE "Date Released" = 'october 10, 1999' |
What is the result of the qf round? | CREATE TABLE table_24307 ("Competition" text,"Round" text,"Opponent" text,"Result" text,"Score" text,"Home/Away" text,"Venue" text,"Attendance" text,"Date" text) | SELECT "Result" FROM table_24307 WHERE "Round" = 'QF' |
Name the sum of year for 2nd position for junior race | CREATE TABLE table_name_40 (year INTEGER,position VARCHAR,event VARCHAR) | SELECT SUM(year) FROM table_name_40 WHERE position = "2nd" AND event = "junior race" |
Are any classes available next semester for PreMajor fulfillment ? | 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 course.department, course.name, course.number FROM course, course_offering, program_course, semester WHERE course.course_id = course_offering.course_id AND program_course.category LIKE '%PreMajor%' AND program_course.course_id = course.course_id AND semester.semester = 'FA' AND semester.semester_id = co... |
Which Country has Wins larger than 2, and a Rank of 2, and a Name of federico bahamontes? | CREATE TABLE table_45767 ("Rank" real,"Name" text,"Country" text,"Wins" real,"Years" text) | SELECT "Country" FROM table_45767 WHERE "Wins" > '2' AND "Rank" = '2' AND "Name" = 'federico bahamontes' |
with a record of 66-78 what was the loss? | CREATE TABLE table_11265 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" text,"Record" text) | SELECT "Loss" FROM table_11265 WHERE "Record" = '66-78' |
For those employees who did not have any job in the past, give me the comparison about the average of manager_id over the job_id , and group by attribute job_id by a bar chart, and display by the the average of manager id in asc please. | CREATE TABLE job_history (EMPLOYEE_ID decimal(6,0),START_DATE date,END_DATE date,JOB_ID varchar(10),DEPARTMENT_ID decimal(4,0))CREATE TABLE 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),CO... | SELECT JOB_ID, AVG(MANAGER_ID) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history) GROUP BY JOB_ID ORDER BY AVG(MANAGER_ID) |
What is the Date that has 1:01:42? | CREATE TABLE table_70153 ("Surface" text,"Event" text,"Time (h : m : s)" text,"Date" text,"Place" text) | SELECT "Date" FROM table_70153 WHERE "Time ( h : m : s )" = '1:01:42' |
what are the five most frequently performed procedures for a patient who was previously diagnosed with enterostomy status nec in the same month until 2101? | CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,startdate time,end... | SELECT d_icd_procedures.short_title FROM d_icd_procedures WHERE d_icd_procedures.icd9_code IN (SELECT t3.icd9_code FROM (SELECT t2.icd9_code, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissi... |
When the president was Yoweri Museveni, and the year was 1993, with rank of 6 under political rights, what was the total of civil liberties? | CREATE TABLE table_64291 ("Year" real,"Political Rights" real,"Civil Liberties" real,"Status" text,"President" text) | SELECT SUM("Civil Liberties") FROM table_64291 WHERE "Political Rights" = '6' AND "President" = 'yoweri museveni' AND "Year" = '1993' |
Who had the high rebounds in Philips Arena 12,088? | CREATE TABLE table_46965 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text) | SELECT "High rebounds" FROM table_46965 WHERE "Location Attendance" = 'philips arena 12,088' |
What are the titles, years, and directors of all movies, ordered by budget in millions? | CREATE TABLE book_club (book_club_id number,year number,author_or_editor text,book_title text,publisher text,category text,result text)CREATE TABLE culture_company (company_name text,type text,incorporated_in text,group_equity_shareholding number,book_club_id text,movie_id text)CREATE TABLE movie (movie_id number,title... | SELECT title, year, director FROM movie ORDER BY budget_million |
on 04/22/2105 the heart rate of patient 6580 was ever less than 86.0? | CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE icustays (row_id number,subject_id number,hadm_id number,icustay_id number,first_careunit text,last_careunit text,first_wardid number,last_wa... | SELECT COUNT(*) > 0 FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 6580)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'heart rate' AND d_... |
Can you tell me the lowest Round that has the Location of indiana, united states, and the Method of submission (guillotine choke)? | CREATE TABLE table_name_6 (round INTEGER,location VARCHAR,method VARCHAR) | SELECT MIN(round) FROM table_name_6 WHERE location = "indiana, united states" AND method = "submission (guillotine choke)" |
What years did the player from LaSalle play for the Rockets? | CREATE TABLE table_11734041_2 (years_for_rockets VARCHAR,school_club_team_country VARCHAR) | SELECT years_for_rockets FROM table_11734041_2 WHERE school_club_team_country = "LaSalle" |
If the assembly is the sixth assembly, what is the maximum election year? | CREATE TABLE table_26132 ("Election Year" real,"Assembly" text,"Winning Party/Coalition" text,"Chief Minister" text,"Speaker" text) | SELECT MAX("Election Year") FROM table_26132 WHERE "Assembly" = 'Sixth Assembly' |
What is the lowest numbered Lane with a Time of 1:10.57 and Heat larger than 2? | CREATE TABLE table_68205 ("Heat" real,"Lane" real,"Name" text,"Nationality" text,"Time" text) | SELECT MIN("Lane") FROM table_68205 WHERE "Heat" > '2' AND "Time" = '1:10.57' |
what is the monthly average emesis output that patient 015-23047 has had since 12/27/2105? | CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE treatment (treatmentid number,patientu... | SELECT AVG(intakeoutput.cellvaluenumeric) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '015-23047')) AND intakeoutput.celllabel = 'emesi... |
Find the number of courses offered by Psychology department in each building with a bar chart, could you sort from high to low by the names? | CREATE TABLE student (ID varchar(5),name varchar(20),dept_name varchar(20),tot_cred numeric(3,0))CREATE TABLE course (course_id varchar(8),title varchar(50),dept_name varchar(20),credits numeric(2,0))CREATE TABLE section (course_id varchar(8),sec_id varchar(8),semester varchar(6),year numeric(4,0),building varchar(15),... | SELECT building, COUNT(building) FROM course AS T1 JOIN section AS T2 ON T1.course_id = T2.course_id WHERE T1.dept_name = 'Psychology' GROUP BY building ORDER BY building DESC |
Top C Devs in Greece. | CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPostId number,LinkTypeId number)CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE PostTags (PostId number,TagId number)CREATE TABLE PostNoticeTypes ... | SELECT u.Id AS id, COUNT(a.Id) AS answerCount FROM Posts AS a JOIN Users AS u ON u.Id = a.OwnerUserId JOIN Posts AS q ON a.ParentId = q.Id WHERE q.Tags LIKE '%C++%' AND u.Location LIKE '%Greece%' GROUP BY u.Id |
Which loss has an Opponent of @ angels, and a Date of august 1? | CREATE TABLE table_name_47 (loss VARCHAR,opponent VARCHAR,date VARCHAR) | SELECT loss FROM table_name_47 WHERE opponent = "@ angels" AND date = "august 1" |
count the number of times in which patient 18866 had had a pe 24 fs po intake today. | CREATE TABLE chartevents (row_id number,subject_id number,hadm_id number,icustay_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE admissions (row_id number,subject_id number,hadm_id number,admittime time,dischtime time,admission_type text,admission_location text,discharge_location text,... | SELECT COUNT(*) 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 = 18866)) AND inputevents_cv.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'pe 24 fs po'... |
Give me the number of the descriptions of the service types that cost more than 100. | CREATE TABLE Services (Service_ID INTEGER,Service_Type_Code CHAR(15),Workshop_Group_ID INTEGER,Product_Description VARCHAR(255),Product_Name VARCHAR(255),Product_Price DECIMAL(20,4),Other_Product_Service_Details VARCHAR(255))CREATE TABLE Drama_Workshop_Groups (Workshop_Group_ID INTEGER,Address_ID INTEGER,Currency_Code ... | SELECT Service_Type_Description, COUNT(Service_Type_Description) FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code WHERE T2.Product_Price > 100 GROUP BY Service_Type_Description |
Which Opponent has a Loss of weaver (9-9)? | CREATE TABLE table_name_18 (opponent VARCHAR,loss VARCHAR) | SELECT opponent FROM table_name_18 WHERE loss = "weaver (9-9)" |
Which Track(s) is on 18 november 1985? | CREATE TABLE table_name_86 (track_s_ VARCHAR,date VARCHAR) | SELECT track_s_ FROM table_name_86 WHERE date = "18 november 1985" |
Who boarded first class? | CREATE TABLE table_name_48 (boarded VARCHAR,class VARCHAR) | SELECT boarded FROM table_name_48 WHERE class = "first" |
What is Score, when Home is 'Montreal Canadiens', and when Date is 'May 16'? | CREATE TABLE table_62265 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Record" text) | SELECT "Score" FROM table_62265 WHERE "Home" = 'montreal canadiens' AND "Date" = 'may 16' |
How many companies were created by Andy? | CREATE TABLE products (code number,name text,price number,manufacturer number)CREATE TABLE manufacturers (code number,name text,headquarter text,founder text,revenue number) | SELECT COUNT(*) FROM manufacturers WHERE founder = 'Andy' |
On what date was the 4th round, with home team Itabuna, played? | CREATE TABLE table_name_4 (date VARCHAR,round VARCHAR,home_team VARCHAR) | SELECT date FROM table_name_4 WHERE round = "4th" AND home_team = "itabuna" |
What prefix has chemical class Iodoalkane? | CREATE TABLE table_name_73 (prefix VARCHAR,chemical_class VARCHAR) | SELECT prefix FROM table_name_73 WHERE chemical_class = "iodoalkane" |
What were the total apps for Dunne in season where he had 0 league goals? | CREATE TABLE table_2980024_1 (total_apps VARCHAR,league_goals VARCHAR) | SELECT total_apps FROM table_2980024_1 WHERE league_goals = 0 |
Name the average rank with larger than 3 and heat more than 5 | CREATE TABLE table_80218 ("Rank" real,"Heat" real,"Lane" real,"Name" text,"Nationality" text,"Time" text) | SELECT AVG("Rank") FROM table_80218 WHERE "Lane" > '3' AND "Heat" > '5' |
Who was the winner of the tre valli varesine race? | CREATE TABLE table_name_60 (winner VARCHAR,race_name VARCHAR) | SELECT winner FROM table_name_60 WHERE race_name = "tre valli varesine" |
What was the percentage in 2006 that had less than 9% in 1970? | CREATE TABLE table_49437 ("Borough" text,"1970" real,"1980" real,"1990" real,"2000" real,"2006" real) | SELECT AVG("2006") FROM table_49437 WHERE "1970" < '9' |
When did alfonse d'amore compete? | CREATE TABLE table_name_59 (date VARCHAR,opponent VARCHAR) | SELECT date FROM table_name_59 WHERE opponent = "alfonse d'amore" |
what date saw the chicago bears lose in green bay earlier than 1931? | CREATE TABLE table_51250 ("Year" real,"Date" text,"Winner" text,"Result" text,"Loser" text,"Attendance" real,"Location" text) | SELECT "Date" FROM table_51250 WHERE "Loser" = 'chicago bears' AND "Location" = 'green bay' AND "Year" < '1931' |
Which track 7 title was recorded in 1959-09-15? | CREATE TABLE table_53807 ("Track" real,"Title" text,"Translation" text,"Composer" text,"Recorded" text) | SELECT "Title" FROM table_53807 WHERE "Recorded" = '1959-09-15' AND "Track" = '7' |
What is the time in Baltimore? | CREATE TABLE table_48680 ("Date" text,"Time" text,"Opponent" text,"Score" text,"Site" text,"City" text) | SELECT "Time" FROM table_48680 WHERE "City" = 'baltimore' |
What is the average rank of the match where offaly was the opposition and the total was greater than 9? | CREATE TABLE table_65865 ("Rank" real,"Player" text,"County" text,"Tally" text,"Total" real,"Opposition" text) | SELECT AVG("Rank") FROM table_65865 WHERE "Opposition" = 'offaly' AND "Total" > '9' |
Which School/ Club Team acquired Jondan Salvador via trade? | CREATE TABLE table_name_8 (school_club_team VARCHAR,acquisition_via VARCHAR,name VARCHAR) | SELECT school_club_team FROM table_name_8 WHERE acquisition_via = "trade" AND name = "jondan salvador" |
in how many of the arkansas colomel the county was pope | CREATE TABLE table_29458735_5 (colonel VARCHAR,county VARCHAR) | SELECT COUNT(colonel) FROM table_29458735_5 WHERE county = "Pope" |
Which items in segment C is episode 160? | CREATE TABLE table_33827 ("Series Ep." text,"Episode" real,"Segment A" text,"Segment B" text,"Segment C" text,"Segment D" text) | SELECT "Segment C" FROM table_33827 WHERE "Episode" = '160' |
Who played the bass for the Against the Grain album after 1982? | CREATE TABLE table_46847 ("Year" real,"Album" text,"Vocals" text,"Bass" text,"Drums" text,"Label" text) | SELECT "Bass" FROM table_46847 WHERE "Year" > '1982' AND "Album" = 'against the grain' |
in PITTSBURGH i'd like to RENTAL CAR | 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 class_of_service (booking_class varchar,rank int,class_description tex... | SELECT DISTINCT ground_service.transport_type FROM city, ground_service WHERE city.city_name = 'PITTSBURGH' AND ground_service.city_code = city.city_code AND ground_service.transport_type = 'RENTAL CAR' |
what is the average base price of different bed type? List bed type and average base price, and I want to display in desc by the Y-axis please. | CREATE TABLE Reservations (Code INTEGER,Room TEXT,CheckIn TEXT,CheckOut TEXT,Rate REAL,LastName TEXT,FirstName TEXT,Adults INTEGER,Kids INTEGER)CREATE TABLE Rooms (RoomId TEXT,roomName TEXT,beds INTEGER,bedType TEXT,maxOccupancy INTEGER,basePrice INTEGER,decor TEXT) | SELECT bedType, AVG(basePrice) FROM Rooms GROUP BY bedType ORDER BY AVG(basePrice) DESC |
What location has a killed of 100.9, and a year later than 1993? | CREATE TABLE table_name_81 (location VARCHAR,year VARCHAR,killed VARCHAR) | SELECT location FROM table_name_81 WHERE year > 1993 AND killed = "100.9" |
What is the greatest draw that has 4th for place? | CREATE TABLE table_name_62 (draw INTEGER,place VARCHAR) | SELECT MAX(draw) FROM table_name_62 WHERE place = "4th" |
pulmonary or lung disorders | CREATE TABLE table_train_97 ("id" int,"pulmonary_disease" bool,"systolic_blood_pressure_sbp" int,"diabetic" string,"psychiatric_disease" bool,"hematologic_disease" bool,"diastolic_blood_pressure_dbp" int,"lung_disease" bool,"NOUSE" float) | SELECT * FROM table_train_97 WHERE pulmonary_disease = 1 OR lung_disease = 1 |
Which department has Guy-Dominique Kennel as president since 2008? | CREATE TABLE table_76675 ("Number" text,"D\u00e9partment (or collectivity)" text,"Pr\u00e9sident" text,"Party" text,"Since" real) | SELECT "D\u00e9partment (or collectivity)" FROM table_76675 WHERE "Since" = '2008' AND "Pr\u00e9sident" = 'guy-dominique kennel' |
Which game took place on April 22? | CREATE TABLE table_name_8 (game VARCHAR,date VARCHAR) | SELECT game FROM table_name_8 WHERE date = "april 22" |
What is the per-capita GDP for the country with an overall GDP of 156.640? | CREATE TABLE table_67542 ("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_67542 WHERE "GDP (billion US$)" = '156.640' |
What is the Total when the Set 3 was 25-15? | CREATE TABLE table_43377 ("Date" text,"Score" text,"Set 1" text,"Set 2" text,"Set 3" text,"Set 4" text,"Set 5" text,"Total" text) | SELECT "Total" FROM table_43377 WHERE "Set 3" = '25-15' |
Bar chart of sum crs credit from each dept code | 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 COURSE (CRS_CODE varchar(10),DEPT_CODE varchar(10),CRS_DESCRIPTION varchar(35),CRS_CREDIT float(8))CREATE TABLE EMPLOYEE (EMP_NUM int,EMP_LNAME varchar(... | SELECT DEPT_CODE, SUM(CRS_CREDIT) FROM COURSE GROUP BY DEPT_CODE |
When is it that successor's formal installation has a Vacator of ross bass (d)? | CREATE TABLE table_66237 ("State (class)" text,"Vacator" text,"Reason for change" text,"Successor" text,"Date of successor's formal installation" text) | SELECT "Date of successor's formal installation" FROM table_66237 WHERE "Vacator" = 'ross bass (d)' |
How many patients admitted before the year 2131 had procedure icd9 code 3895? | 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.admityear < "2131" AND procedures.icd9_code = "3895" |
What are the names of the states that have some college students playing in the positions of goalie and mid-field? | CREATE TABLE tryout (pid number,cname text,ppos text,decision text)CREATE TABLE player (pid number,pname text,ycard text,hs number)CREATE TABLE college (cname text,state text,enr number) | SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cname = T2.cname WHERE T2.ppos = 'goalie' INTERSECT SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cname = T2.cname WHERE T2.ppos = 'mid' |
What is the name of customers who do not use Cash as payment method. | CREATE TABLE customers (customer_id number,payment_method text,customer_name text,date_became_customer time,other_customer_details text)CREATE TABLE products (product_id number,product_details text)CREATE TABLE customer_orders (order_id number,customer_id number,order_status text,order_date time,order_details text)CREA... | SELECT customer_name FROM customers WHERE payment_method <> 'Cash' |
how many high assits have a date of february 5? | CREATE TABLE table_31463 ("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_31463 WHERE "Date" = 'February 5' |
Which player has the lowest earnings and has at least 4 wins and is ranked higher than 4? | CREATE TABLE table_54955 ("Rank" real,"Player" text,"Country" text,"Earnings($)" real,"Wins" real) | SELECT MIN("Earnings( $ )") FROM table_54955 WHERE "Wins" = '4' AND "Rank" > '4' |
Show the booking status code and the corresponding number of bookings in a bar chart. | CREATE TABLE Guests (guest_id INTEGER,gender_code CHAR(1),guest_first_name VARCHAR(80),guest_last_name VARCHAR(80),date_of_birth DATETIME)CREATE TABLE View_Unit_Status (apt_id INTEGER,apt_booking_id INTEGER,status_date DATETIME,available_yn BIT)CREATE TABLE Apartments (apt_id INTEGER,building_id INTEGER,apt_type_code C... | SELECT booking_status_code, COUNT(*) FROM Apartment_Bookings GROUP BY booking_status_code |
What is the pick # for the position de? | CREATE TABLE table_16313 ("Pick #" real,"CFL Team" text,"Player" text,"Position" text,"College" text) | SELECT "Pick #" FROM table_16313 WHERE "Position" = 'DE' |
what number of patients have been diagnosed with seizures - from ischemia/infarction during the same hospital visit after having received a anticonvulsant - valproate procedure the last year? | CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight number,disch... | SELECT COUNT(DISTINCT t1.uniquepid) FROM (SELECT patient.uniquepid, treatment.treatmenttime, patient.patienthealthsystemstayid FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'anticonvulsant - valproate' AND DATETIME(treatment.treatmenttime, 'start ... |
What number of Yards has 32 as an In 20? | CREATE TABLE table_name_90 (yards VARCHAR,in_20 VARCHAR) | SELECT COUNT(yards) FROM table_name_90 WHERE in_20 = 32 |
How much Total has Semidoubles smaller than 78, and Doubles, II Class smaller than 17? | CREATE TABLE table_64476 ("Date" real,"Doubles,I Class" real,"Doubles,II Class" real,"Greater Doubles" real,"Doubles" real,"Semidoubles" real,"Total" real) | SELECT COUNT("Total") FROM table_64476 WHERE "Semidoubles" < '78' AND "Doubles, II Class" < '17' |
What was the result of the game that had 20,627 fans in attendance? | CREATE TABLE table_48796 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Attendance" text) | SELECT "Result" FROM table_48796 WHERE "Attendance" = '20,627' |
Name the tournament for dominican republic | CREATE TABLE table_25938117_1 (tournament VARCHAR,location VARCHAR) | SELECT tournament FROM table_25938117_1 WHERE location = "Dominican Republic" |
What is the most popular file format? | CREATE TABLE files (formats VARCHAR) | SELECT formats FROM files GROUP BY formats ORDER BY COUNT(*) DESC LIMIT 1 |
Name the Social Sec Leeds has Fixtures Sec of n/a, and a General Sec of n/a, and the Season of 2005 2006? | CREATE TABLE table_8088 ("Season" text,"President" text,"General Sec" text,"Treasurer" text,"Fixtures Sec" text,"Social Sec Bradford" text,"Social Sec Leeds" text,"Media Officer" text) | SELECT "Social Sec Leeds" FROM table_8088 WHERE "Fixtures Sec" = 'n/a' AND "General Sec" = 'n/a' AND "Season" = '2005–2006' |
Which Years have a Rank larger than 2, and Wins of 2, and a Country of france? | CREATE TABLE table_45769 ("Rank" real,"Name" text,"Country" text,"Wins" real,"Years" text) | SELECT "Years" FROM table_45769 WHERE "Rank" > '2' AND "Wins" = '2' AND "Country" = 'france' |
What is the earliest created year when the map# was 10? | CREATE TABLE table_60427 ("map#" real,"County" text,"Capital" text,"Population (2008)" real,"Area" text,"Created" real) | SELECT MIN("Created") FROM table_60427 WHERE "map#" = '10' |
Number of questions closed by close vote count.. Sceptics questions closed, by number of close votes. Useful to identify moderator-closed questions. | 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 Users (Id number,Reputation number,CreationDate time,DisplayName text,LastAccessDate time,WebsiteUrl text,Location te... | SELECT 'close_votes', COUNT(*) FROM (SELECT COUNT(*) AS "close_votes" FROM Posts INNER JOIN Votes ON Posts.Id = Votes.PostId WHERE Votes.VoteTypeId = 6 AND NOT Posts.ClosedDate IS NULL GROUP BY Posts.Id) AS X GROUP BY 'close_votes' |
What is the minimum number of perfect 40s? | CREATE TABLE table_20465 ("Rank by average" real,"Place" text,"Couple" text,"Perfect 40s" real,"Total" real,"Number of dances" real,"Season" real,"Average" text) | SELECT MIN("Perfect 40s") FROM table_20465 |
What are the different stage positions for all musicians whose first name is 'Solveig'? | CREATE TABLE vocals (songid number,bandmate number,type text)CREATE TABLE instruments (songid number,bandmateid number,instrument text)CREATE TABLE band (id number,firstname text,lastname text)CREATE TABLE performance (songid number,bandmate number,stageposition text)CREATE TABLE albums (aid number,title text,year numb... | SELECT DISTINCT T1.stageposition FROM performance AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE firstname = "Solveig" |
What is the fewest number of wins in the chart for Ayrton Senna? | CREATE TABLE table_37130 ("Driver" text,"Season" text,"Wins" real,"Entries" text,"Percentage" text) | SELECT MIN("Wins") FROM table_37130 WHERE "Driver" = 'ayrton senna' |
What position is Justin Shaw in? | CREATE TABLE table_72795 ("Pick #" real,"CFL Team" text,"Player" text,"Position" text,"College" text) | SELECT "Position" FROM table_72795 WHERE "Player" = 'Justin Shaw' |
What is the 2010 for the grand slam tournaments of 2007? | CREATE TABLE table_10845 ("Tournament" text,"2007" text,"2008" text,"2009" text,"2010" text,"2011" text,"2012" text) | SELECT "2010" FROM table_10845 WHERE "2007" = 'grand slam tournaments' |
Give me a bar chart to show the number of event details of events that have more than one participant, and list from high to low by the total number. | CREATE TABLE Events (Event_ID INTEGER,Service_ID INTEGER,Event_Details VARCHAR(255))CREATE TABLE Services (Service_ID INTEGER,Service_Type_Code CHAR(15))CREATE TABLE Participants (Participant_ID INTEGER,Participant_Type_Code CHAR(15),Participant_Details VARCHAR(255))CREATE TABLE Participants_in_Events (Event_ID INTEGER... | SELECT Event_Details, COUNT(Event_Details) FROM Events AS T1 JOIN Participants_in_Events AS T2 ON T1.Event_ID = T2.Event_ID GROUP BY Event_Details ORDER BY COUNT(Event_Details) DESC |
how many quarries was slate mined at ? | CREATE TABLE table_203_2 (id number,"name" text,"mineral" text,"opened" text,"closed" text,"years connected" text,"notes" text) | SELECT COUNT(*) FROM table_203_2 WHERE "mineral" = 'slate' |
What was the final score of Game #4? | CREATE TABLE table_63111 ("Game" real,"Date" text,"Opponent" text,"Score" text,"Record" text) | SELECT "Score" FROM table_63111 WHERE "Game" = '4' |
in the first hospital visit, patient 006-193056 has been allergic to any substance? | CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype tex... | SELECT COUNT(*) > 0 FROM allergy WHERE allergy.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '006-193056' AND NOT patient.hospitaldischargetime IS NULL ORDER BY patient.hospi... |
What was the earliest year that T rlea took 7th place? | CREATE TABLE table_name_6 (year INTEGER,position VARCHAR) | SELECT MIN(year) FROM table_name_6 WHERE position = "7th" |
When the driver mike hailwood has a grid greater than 12 and a Time/Retired of + 2 laps, what is the average number of laps? | CREATE TABLE table_name_96 (laps INTEGER,grid VARCHAR,time_retired VARCHAR,driver VARCHAR) | SELECT AVG(laps) FROM table_name_96 WHERE time_retired = "+ 2 laps" AND driver = "mike hailwood" AND grid > 12 |
egfr < 60 ml / min / 1.73 m2, or serum creatinine >= 1.4 mg / dl for male and >= 1.3 mg / dl for female | CREATE TABLE table_dev_37 ("id" int,"gender" string,"hemoglobin_a1c_hba1c" float,"diabetes_mellitus" bool,"dysglycemia" bool,"creatinine_clearance_cl" float,"estimated_glomerular_filtration_rate_egfr" int,"fasting_plasma_glucose" int,"serum_creatinine" float,"fasting_glucose" int,"NOUSE" float) | SELECT * FROM table_dev_37 WHERE estimated_glomerular_filtration_rate_egfr < 60 OR (serum_creatinine >= 1.4 AND gender = 'male') OR (serum_creatinine >= 1.3 AND gender = 'female') |
Which competition was in Dubai? | CREATE TABLE table_38216 ("Date" text,"Venue" text,"Score" text,"Result" text,"Competition" text) | SELECT "Competition" FROM table_38216 WHERE "Venue" = 'dubai' |
What is the name of the plan that has a downstream rate of 4,096 kbit? | CREATE TABLE table_43732 ("Internet Plan" text,"Downstream" text,"Upstream" text,"Bandwidth Included" text,"Price" text) | SELECT "Internet Plan" FROM table_43732 WHERE "Downstream" = '4,096 kbit' |
governs an area with what area (in thousand km 2)? | CREATE TABLE table_16928 ("Governorate" text,"Name in Russian" text,"Name in Polish" text,"Seat" text,"Area,in thousands of km 2" real,"Population,in thousands,(1905)" real) | SELECT "Area, in thousands of km 2" FROM table_16928 WHERE "Name in Russian" = 'Плоцкая губерния' |
Show the number of competitions held in each city with a bar chart. | CREATE TABLE city (City_ID int,Official_Name text,Status text,Area_km_2 real,Population real,Census_Ranking text)CREATE TABLE farm (Farm_ID int,Year int,Total_Horses real,Working_Horses real,Total_Cattle real,Oxen real,Bulls real,Cows real,Pigs real,Sheep_and_Goats real)CREATE TABLE farm_competition (Competition_ID int... | SELECT Official_Name, COUNT(Official_Name) FROM city AS T1 JOIN farm_competition AS T2 ON T1.City_ID = T2.Host_city_ID GROUP BY Official_Name |
What is every value for periselene if period is 4.947432? | CREATE TABLE table_206217_2 (periselene__km_ VARCHAR,period__h_ VARCHAR) | SELECT periselene__km_ FROM table_206217_2 WHERE period__h_ = "4.947432" |
Which college had a pick in a round under 7, with a pick number 13 and overall was under 186? | CREATE TABLE table_43914 ("Round" real,"Pick" real,"Overall" real,"Name" text,"Position" text,"College" text) | SELECT "College" FROM table_43914 WHERE "Round" < '7' AND "Overall" < '186' AND "Pick" = '13' |
For those employees who was hired before 2002-06-21, give me the comparison about the amount of job_id over the job_id , and group by attribute job_id by a bar chart, sort by the X in desc. | CREATE TABLE jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN_SALARY decimal(6,0),MAX_SALARY decimal(6,0))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 decima... | SELECT JOB_ID, COUNT(JOB_ID) FROM employees WHERE HIRE_DATE < '2002-06-21' GROUP BY JOB_ID ORDER BY JOB_ID DESC |
how much is the changing of bedside glucose of patient 010-29520 last measured on the last hospital visit compared to the first value measured on the last hospital visit? | 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 patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid... | SELECT (SELECT lab.labresult FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '010-29520' AND NOT patient.hospitaldischargetime IS NULL ORDER BY patient.hospi... |
What's the earliest year the philippines won? | CREATE TABLE table_59792 ("Year" real,"Country/Territory" text,"Miss International" text,"National title" text,"Location" text) | SELECT MIN("Year") FROM table_59792 WHERE "Country/Territory" = 'philippines' |
what is the recnet when the city of license is peterborough? | CREATE TABLE table_name_68 (recnet VARCHAR,city_of_license VARCHAR) | SELECT recnet FROM table_name_68 WHERE city_of_license = "peterborough" |
What papers has srinivasan iyer written ? | CREATE TABLE paper (paperid int,title varchar,venueid int,year int,numciting int,numcitedby int,journalid int)CREATE TABLE paperkeyphrase (paperid int,keyphraseid int)CREATE TABLE paperdataset (paperid int,datasetid int)CREATE TABLE field (fieldid int)CREATE TABLE writes (paperid int,authorid int)CREATE TABLE venue (ve... | SELECT DISTINCT writes.paperid FROM author, writes WHERE author.authorname = 'srinivasan iyer' AND writes.authorid = author.authorid |
wednesday morning flights between BALTIMORE and NEWARK NEW JERSEY | CREATE TABLE code_description (code varchar,description text)CREATE TABLE airport_service (city_code varchar,airport_code varchar,miles_distant int,direction varchar,minutes_distant int)CREATE TABLE flight_fare (flight_id int,fare_id int)CREATE TABLE compartment_class (compartment varchar,class_type varchar)CREATE TABL... | 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, state WHERE ((CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'NEWARK' AND date_day.day_number = 23 AND date_day.month_number = ... |
What is the total pick number of Virginia Tech? | CREATE TABLE table_name_68 (pick VARCHAR,school VARCHAR) | SELECT COUNT(pick) FROM table_name_68 WHERE school = "virginia tech" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.