instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
How many attended tie number 1? | CREATE TABLE table_54593 ("Tie no" text,"Home team" text,"Score" text,"Away team" text,"Attendance" real) | SELECT SUM("Attendance") FROM table_54593 WHERE "Tie no" = '1' |
What's the opponent's venue result when the opponent is tennessee? | CREATE TABLE table_48149 ("Missouri vs." text,"Overall Record" text,"at Columbia" text,"at Opponent's Venue" text,"at Neutral Site" text,"Last 5 Meetings" text,"Last 10 Meetings" text,"Current Streak" text,"Since Joining SEC" text) | SELECT "at Opponent's Venue" FROM table_48149 WHERE "Missouri vs." = 'tennessee' |
Which Spoofed title is from February 1998? | CREATE TABLE table_name_47 (spoofed_title VARCHAR,date VARCHAR) | SELECT spoofed_title FROM table_name_47 WHERE date = "february 1998" |
What is the total number of airlines? | CREATE TABLE airlines (alid number,name text,iata text,icao text,callsign text,country text,active text)CREATE TABLE routes (rid number,dst_apid number,dst_ap text,src_apid number,src_ap text,alid number,airline text,codeshare text)CREATE TABLE airports (apid number,name text,city text,country text,x number,y number,el... | SELECT COUNT(*) FROM airlines |
Which is located in Nigeria? | CREATE TABLE table_name_72 (name VARCHAR,location VARCHAR) | SELECT name FROM table_name_72 WHERE location = "nigeria" |
What date was the game with the away team york city? | CREATE TABLE table_12280 ("Tie no" text,"Home team" text,"Score" text,"Away team" text,"Date" text) | SELECT "Date" FROM table_12280 WHERE "Away team" = 'york city' |
how many games did the hoyas score 50 or more points ? | CREATE TABLE table_204_36 (id number,"date" text,"opponent" text,"site" text,"result" text,"attendance" number,"record" text) | SELECT COUNT(*) FROM table_204_36 WHERE "result" >= 50 |
What week corresponds to the last one to be played at the memorial stadium? | CREATE TABLE table_10647401_1 (week INTEGER,stadium VARCHAR) | SELECT MAX(week) FROM table_10647401_1 WHERE stadium = "Memorial stadium" |
flights from LOS ANGELES to PITTSBURGH | CREATE TABLE flight_leg (flight_id int,leg_number int,leg_flight int)CREATE TABLE date_day (month_number int,day_number int,year int,day_name varchar)CREATE TABLE airport_service (city_code varchar,airport_code varchar,miles_distant int,direction varchar,minutes_distant int)CREATE TABLE equipment_sequence (aircraft_cod... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, flight WHERE CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'LOS ANGELES' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'PI... |
how many single patients are of hispanic or latino-puertorican ethnicity? | 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.marital_status = "SINGLE" AND demographic.ethnicity = "HISPANIC/LATINO - PUERTO RICAN" |
For all employees who have the letters D or S in their first name, draw a bar chart about the distribution of hire_date and the sum of manager_id bin hire_date by time. | 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 regions (REGION_ID decimal(5,0),REGION_NAME varchar(25))CREATE TABLE locations (LOCATION_ID decimal(4,0),STREET_ADDRESS varchar(40),POSTAL_CODE varchar(12),CITY varchar(30),STATE_P... | SELECT HIRE_DATE, SUM(MANAGER_ID) FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' |
Which title was directed by chuck jones and released on 1958-04-12? | CREATE TABLE table_name_56 (title VARCHAR,director VARCHAR,release_date VARCHAR) | SELECT title FROM table_name_56 WHERE director = "chuck jones" AND release_date = "1958-04-12" |
How many people attended the home game for South Melbourne? | CREATE TABLE table_name_58 (crowd INTEGER,home_team VARCHAR) | SELECT SUM(crowd) FROM table_name_58 WHERE home_team = "south melbourne" |
How many military deaths were there when there were 1,200+ military and/or civilian wounded? | CREATE TABLE table_61744 ("Conflicts prior to Israel's independence" text,"Military deaths" text,"Civilian deaths" text,"Total deaths" text,"Military and/or Civilian wounded" text,"Total casualties" text) | SELECT "Military deaths" FROM table_61744 WHERE "Military and/or Civilian wounded" = '1,200+' |
when was the last time until 1749 days ago that patient 006-66713 has had a p.o. intake? | CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid numb... | SELECT intakeoutput.intakeoutputtime FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '006-66713')) AND intakeoutput.cellpath LIKE '%intake%... |
Draw a bar chart of product type code versus minimal product price, display by the total number from low to high please. | CREATE TABLE Departments (department_id INTEGER,dept_store_id INTEGER,department_name VARCHAR(80))CREATE TABLE Suppliers (supplier_id INTEGER,supplier_name VARCHAR(80),supplier_phone VARCHAR(80))CREATE TABLE Supplier_Addresses (supplier_id INTEGER,address_id INTEGER,date_from DATETIME,date_to DATETIME)CREATE TABLE Cust... | SELECT product_type_code, MIN(product_price) FROM Products GROUP BY product_type_code ORDER BY MIN(product_price) |
Who was the opposition for the player who has a total of 10 points? | CREATE TABLE table_64444 ("Rank" real,"Player" text,"County" text,"Tally" text,"Total" real,"Opposition" text) | SELECT "Opposition" FROM table_64444 WHERE "Total" = '10' |
what are the five frequently ordered drugs for patients that received cont inv mec ven 96+ hrs previously within the same hospital visit, in 2102? | CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type text,event_id number,chargetime time,cost number)CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE admissions (row_id number,subject_id number,hadm_id... | SELECT t3.drug FROM (SELECT t2.drug, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, procedures_icd.charttime, admissions.hadm_id FROM procedures_icd JOIN admissions ON procedures_icd.hadm_id = admissions.hadm_id WHERE procedures_icd.icd9_code = (SELECT d_icd_procedures.icd9_code FR... |
Year wise total number of posts. | CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE TagSynonyms (Id number,SourceTagName text,TargetTagName text,CreationDate time,OwnerUserId number,AutoRenameCount number,LastAutoRename time,Score number,ApprovedByUserId number,ApprovalDate time)CREATE TABLE FlagTypes ... | SELECT * FROM Posts WHERE CreationDate BETWEEN '2015-12-01 00:00:01' AND '2015-12-31 11:59:59' |
Fastest Guns in the West. Users with fastest response time | 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 a.OwnerUserId AS "user_link", CAST(DATE(0, 'AVG(CAST((JULIANDAY(CreationDate) - JULIANDAY(q.CreationDate)) * 86400.0 AS INTEGER)) SECOND') AS TIMESTAMP), COUNT(*) FROM Posts AS a INNER JOIN Posts AS q ON a.ParentId = q.Id WHERE a.PostTypeId = 2 AND NOT a.OwnerUserId IS NULL AND (q.OwnerUserId IS NULL OR q.OwnerU... |
Potential voters in mod election. | CREATE TABLE Badges (Id number,UserId number,Name text,Date time,Class number,TagBased boolean)CREATE TABLE CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance text,MarkdownPostOwnerGuidance text,MarkdownPrivilegedUserGuidance text,MarkdownConcensusDescription text,CreationDa... | SELECT COUNT(Id) FROM Users WHERE Reputation >= 150 |
what's the province where member is dingley brittin category:articles with hcards | CREATE TABLE table_380 ("Member" text,"Electorate" text,"Province" text,"MPs term" text,"Election date" text) | SELECT "Province" FROM table_380 WHERE "Member" = 'Dingley Brittin Category:Articles with hCards' |
What is the overall rank with rating smaller than 8.2 and rating share of 4.5/11? | CREATE TABLE table_57926 ("Episode" text,"Air Date" text,"Rating" real,"Share" real,"Rating/Share 18\u201349" text,"Viewers (m)" real,"Timeslot Rank" real,"Night Rank" text,"Overall Rank" real) | SELECT COUNT("Overall Rank") FROM table_57926 WHERE "Rating/Share 18\u201349" = '4.5/11' AND "Rating" < '8.2' |
what were the new drugs prescribed to patient 022-6959 today compared to that yesterday? | 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 cost (costid number,uniquepid text,patienthealthsystemstayid number,eventt... | SELECT medication.drugname FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.uniquepid = '022-6959') AND DATETIME(medication.drugstarttime, 'start of day') = DATETIME(CURRENT_TIME(), 'start of day', '-0 day') EXCEPT SELECT medication.drugname FROM medicat... |
Gets all down votes for user. | CREATE TABLE PendingFlags (Id number,FlagTypeId number,PostId number,CreationDate time,CloseReasonTypeId number,CloseAsOffTopicReasonTypeId number,DuplicateOfQuestionId number,BelongsOnBaseHostAddress text)CREATE TABLE Posts (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,Deletion... | SELECT p.Id AS "post_link", SUM(v.PostId) AS downVotes FROM Posts AS p INNER JOIN PostTypes AS pt ON pt.Id = p.PostTypeId INNER JOIN Votes AS v ON v.PostId = p.Id INNER JOIN VoteTypes AS vt ON vt.Id = v.VoteTypeId WHERE p.OwnerUserId = '##UserId##' AND vt.Id = 3 AND p.PostTypeId = 1 GROUP BY p.Id |
How many juries are there when the draw is 3? | CREATE TABLE table_30214 ("Draw" real,"Artist" text,"Song (English translation)" text,"Lyrics (l) / Music (m)" text,"Juries" real,"Viewers" real,"Total" real,"Place" real) | SELECT MAX("Juries") FROM table_30214 WHERE "Draw" = '3' |
how much does patient 15794 change in weight last measured on the current hospital visit compared to the second to last value measured on the current hospital visit? | CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE transfers (row_id numb... | SELECT (SELECT chartevents.valuenum 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 = 15794 AND admissions.dischtime IS NULL)) AND chartevents.itemid IN (SELECT d_items.itemid FROM... |
what is the number of patients whose language is engl and lab test name is creatine kinase, mb isoenzyme? | 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 text,icd9_code text,short_title text,long_title text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,sho... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.language = "ENGL" AND lab.label = "Creatine Kinase, MB Isoenzyme" |
What design was acquired in 1875? | CREATE TABLE table_15143 ("Name" text,"Design" text,"Manufacturer" text,"Acquired" real,"Disposed" text) | SELECT "Design" FROM table_15143 WHERE "Acquired" = '1875' |
Who was the home team that scored 19.18 (132)? | CREATE TABLE table_53687 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Home team" FROM table_53687 WHERE "Home team score" = '19.18 (132)' |
Who is the home team of the game on December 21? | CREATE TABLE table_14951 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Record" text) | SELECT "Home" FROM table_14951 WHERE "Date" = 'december 21' |
how many patients on elective admission had their epithelial cells tested by lab? | 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 COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admission_type = "ELECTIVE" AND lab.label = "Epithelial Cells" |
Name the story number for paul cornell | CREATE TABLE table_22064 ("Story No." text,"Episode" real,"Title" text,"Directed by" text,"Written by" text,"UK viewers (million)" text,"AI (%)" real,"Original air date" text,"Production code" text) | SELECT "Story No." FROM table_22064 WHERE "Written by" = 'Paul Cornell' |
what were the five most commonly given diagnoses for patients who had received opn rt hemicolectomy nec before within 2 months the previous year? | CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)CREATE TABLE transfers (row_id number,subject_id number,hadm_id number,icustay_id number,eventtype text,careunit text,wardid number,intime time,outtime time)CREATE TABLE chartevents (row_id n... | SELECT d_icd_diagnoses.short_title FROM d_icd_diagnoses WHERE d_icd_diagnoses.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, procedures_icd.charttime FROM procedures_icd JOIN admissions ON procedures_icd.hadm_id = admissi... |
Name the location of the church for berle kyrkje | CREATE TABLE table_1777 ("Parish (Prestegjeld)" text,"Sub-Parish (Sokn)" text,"Church Name" text,"Year Built" real,"Location of the Church" text) | SELECT "Location of the Church" FROM table_1777 WHERE "Church Name" = 'Berle kyrkje' |
What is the title of episode 155 in the series? | CREATE TABLE table_30194 ("No. in series" real,"No. in season" real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Production code" real) | SELECT "Title" FROM table_30194 WHERE "No. in series" = '155' |
Name the week 3 of 36 | CREATE TABLE table_name_67 (week_1 VARCHAR,week_3 VARCHAR) | SELECT week_1 FROM table_name_67 WHERE week_3 = "36" |
what was the name of the procedure that's been performed to patient 027-188709 two or more times in this hospital encounter? | CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature number,sao2 number,heartrate number,respiration number,systemicsystolic number,systemicdiastolic number,systemicmean num... | SELECT t1.treatmentname FROM (SELECT treatment.treatmentname, COUNT(treatment.treatmenttime) AS c1 FROM treatment WHERE treatment.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid ... |
Which highest pick number's name was Adam Podlesh, when the overall was less than 101? | CREATE TABLE table_37939 ("Round" real,"Pick #" real,"Overall" real,"Name" text,"Position" text,"College" text) | SELECT MAX("Pick #") FROM table_37939 WHERE "Name" = 'adam podlesh' AND "Overall" < '101' |
Which station has the frequency of 107.3? | CREATE TABLE table_22828 ("DMA" real,"Market" text,"Station" text,"Frequency" text,"Branding" text,"Format" text) | SELECT "Station" FROM table_22828 WHERE "Frequency" = '107.3' |
Who did Teo Fabi drive for when he won and had pole position? | CREATE TABLE table_4525 ("Name" text,"Pole Position" text,"Fastest Lap" text,"Winning driver" text,"Winning team" text,"Report" text) | SELECT "Winning team" FROM table_4525 WHERE "Winning driver" = 'teo fabi' AND "Pole Position" = 'teo fabi' |
What was the score when the away team was Collingwood? | CREATE TABLE table_name_56 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_56 WHERE away_team = "collingwood" |
What's the lowest diameter when the longitude is 71.1w? | CREATE TABLE table_name_71 (diameter INTEGER,longitude VARCHAR) | SELECT MIN(diameter) FROM table_name_71 WHERE longitude = "71.1w" |
Which team did Tyson Chandler (7) have high rebounds for? | CREATE TABLE table_45167 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text) | SELECT "Team" FROM table_45167 WHERE "High rebounds" = 'tyson chandler (7)' |
what are the three most commonly performed procedures in this year? | CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE transfers (row_id number,subject_id number,hadm_id number,icustay_id number,eventtype text,careunit text,wardid number,intime time,outtime time)CREATE TABLE inputevents_cv (row_id number,subject_id numb... | SELECT d_icd_procedures.short_title FROM d_icd_procedures WHERE d_icd_procedures.icd9_code IN (SELECT t1.icd9_code FROM (SELECT procedures_icd.icd9_code, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM procedures_icd WHERE DATETIME(procedures_icd.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of ye... |
Which year did Tony Bettenhausen complete more than 200 laps? | CREATE TABLE table_71525 ("Year" text,"Start" text,"Qual" text,"Rank" text,"Finish" text,"Laps" real) | SELECT "Year" FROM table_71525 WHERE "Laps" > '200' |
Find the average number of factories for the manufacturers that have more than 20 shops. | CREATE TABLE manufacturer (manufacturer_id number,open_year number,name text,num_of_factories number,num_of_shops number)CREATE TABLE furniture_manufacte (manufacturer_id number,furniture_id number,price_in_dollar number)CREATE TABLE furniture (furniture_id number,name text,num_of_component number,market_rate number) | SELECT AVG(num_of_factories) FROM manufacturer WHERE num_of_shops > 20 |
Draw a bar chart for what are the average prices of products, grouped by manufacturer name?, and I want to show by the Y from high to low. | 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 T2.Name, AVG(T1.Price) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T2.Name ORDER BY AVG(T1.Price) DESC |
List the state names and the number of customers living in each state with a bar chart, could you rank by the the total number in asc please? | CREATE TABLE Actual_Orders (actual_order_id INTEGER,order_status_code VARCHAR(10),regular_order_id INTEGER,actual_order_date DATETIME)CREATE TABLE Customers (customer_id INTEGER,payment_method VARCHAR(10),customer_name VARCHAR(80),customer_phone VARCHAR(80),customer_email VARCHAR(80),date_became_customer DATETIME)CREAT... | SELECT state_province_county, COUNT(*) FROM Customer_Addresses AS t1 JOIN Addresses AS t2 ON t1.address_id = t2.address_id GROUP BY t2.state_province_county ORDER BY COUNT(*) |
what episode number had 11.73 million viewers? | CREATE TABLE table_24689168_5 (episode VARCHAR,viewers__millions_ VARCHAR) | SELECT episode FROM table_24689168_5 WHERE viewers__millions_ = "11.73" |
a month before has patient 016-18150 been getting any output amt-blake drain output? | CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE treatment (treatmentid number,patientun... | SELECT COUNT(*) > 0 FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '016-18150')) AND intakeoutput.cellpath LIKE '%output%' AND intakeoutpu... |
On average, how many Starts have Wins that are smaller than 0? | CREATE TABLE table_name_86 (starts INTEGER,wins INTEGER) | SELECT AVG(starts) FROM table_name_86 WHERE wins < 0 |
Show gas station id, location, and manager_name for all gas stations ordered by open year. | CREATE TABLE gas_station (station_id VARCHAR,LOCATION VARCHAR,manager_name VARCHAR,open_year VARCHAR) | SELECT station_id, LOCATION, manager_name FROM gas_station ORDER BY open_year |
Which average's against score has 2 as a difference and a lost of 5? | CREATE TABLE table_name_34 (against INTEGER,difference VARCHAR,lost VARCHAR) | SELECT AVG(against) FROM table_name_34 WHERE difference = "2" AND lost = 5 |
when was patient 002-59265 first prescribed with pulmicort respule and zosyn at the same time? | CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature number,sao2 number,heartrate number,respiration number,systemicsystolic number,systemicdiasto... | SELECT t1.drugstarttime FROM (SELECT patient.uniquepid, medication.drugstarttime FROM medication JOIN patient ON medication.patientunitstayid = patient.patientunitstayid WHERE medication.drugname = 'pulmicort respule' AND patient.uniquepid = '002-59265') AS t1 JOIN (SELECT patient.uniquepid, medication.drugstarttime FR... |
Show the average population of all counties. | CREATE TABLE county (Population INTEGER) | SELECT AVG(Population) FROM county |
find out the number of patients who have been prescribed neo*iv*ampicillin sodium. | 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 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 prescriptions.drug = "NEO*IV*AMPicillin Sodium" |
what is the total when the league is less than 1? | CREATE TABLE table_7916 ("Name" text,"League" real,"FA Cup" real,"League Cup" real,"Total" real) | SELECT "Total" FROM table_7916 WHERE "League" < '1' |
for type diesel-mechanical and configuration b-b, what is the status? | CREATE TABLE table_39624 ("Name" text,"Livery" text,"Arrival" real,"Type" text,"Configuration" text,"Builder" text,"Built" real,"Status" text,"Location" text) | SELECT "Status" FROM table_39624 WHERE "Configuration" = 'b-b' AND "Type" = 'diesel-mechanical' |
What is the Speed when Construction begun in 2010, and an Expected start of revenue services of 2015? | CREATE TABLE table_name_3 (speed VARCHAR,construction_begun VARCHAR,expected_start_of_revenue_services VARCHAR) | SELECT speed FROM table_name_3 WHERE construction_begun = "2010" AND expected_start_of_revenue_services = 2015 |
what is minimum age of patients whose marital status is divorced and primary disease is posterior communicating aneurysm/sda? | 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 MIN(demographic.age) FROM demographic WHERE demographic.marital_status = "DIVORCED" AND demographic.diagnosis = "POSTERIOR COMMUNICATING ANEURYSM/SDA" |
Give me a bar chart showing the number of customers who has an account for each customer last name, and sort from high to low by the y axis please. | CREATE TABLE Financial_Transactions (transaction_id INTEGER,previous_transaction_id INTEGER,account_id INTEGER,card_id INTEGER,transaction_type VARCHAR(15),transaction_date DATETIME,transaction_amount DOUBLE,transaction_comment VARCHAR(255),other_transaction_details VARCHAR(255))CREATE TABLE Accounts (account_id INTEGE... | SELECT customer_last_name, COUNT(customer_last_name) FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id GROUP BY customer_last_name ORDER BY COUNT(customer_last_name) DESC |
What away team plays at Victoria Park? | CREATE TABLE table_name_60 (away_team VARCHAR,venue VARCHAR) | SELECT away_team FROM table_name_60 WHERE venue = "victoria park" |
What district did Joe Waggonner belong to? | CREATE TABLE table_18389 ("District" text,"Incumbent" text,"Party" text,"First elected" real,"Result" text,"Candidates" text) | SELECT "District" FROM table_18389 WHERE "Incumbent" = 'Joe Waggonner' |
What airport has an ICAO of Birk? | CREATE TABLE table_name_16 (airport VARCHAR,icao VARCHAR) | SELECT airport FROM table_name_16 WHERE icao = "birk" |
What class is the dodge dealers grand prix? | CREATE TABLE table_name_23 (class VARCHAR,race VARCHAR) | SELECT class FROM table_name_23 WHERE race = "the dodge dealers grand prix" |
For those employees who do not work in departments with managers that have ids between 100 and 200, show me about the distribution of email and salary in a bar chart. | CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAIL varchar(25),PHONE_NUMBER varchar(20),HIRE_DATE date,JOB_ID varchar(10),SALARY decimal(8,2),COMMISSION_PCT decimal(2,2),MANAGER_ID decimal(6,0),DEPARTMENT_ID decimal(4,0))CREATE TABLE locations (LOCATION_ID decimal(4,0),S... | SELECT EMAIL, SALARY FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) |
what is the date of the last game on this chart ? | CREATE TABLE table_203_344 (id number,"#" number,"date" text,"opponent" text,"score" text,"win" text,"loss" text,"save" text,"attendance" number,"record" text,"other info" text) | SELECT "date" FROM table_203_344 ORDER BY id DESC LIMIT 1 |
What is the smallest season with 6 races, 2 wins, and a Series of all-japan gt championship> | CREATE TABLE table_67552 ("Season" real,"Series" text,"Races" text,"Wins" text,"Position" text) | SELECT MIN("Season") FROM table_67552 WHERE "Races" = '6' AND "Series" = 'all-japan gt championship' AND "Wins" = '2' |
Who won the regular season when Maryland won the tournament? | CREATE TABLE table_22779004_1 (regular_season_winner VARCHAR,tournament_winner VARCHAR) | SELECT regular_season_winner FROM table_22779004_1 WHERE tournament_winner = "Maryland" |
What player was drafted 252? | CREATE TABLE table_name_52 (player VARCHAR,pick VARCHAR) | SELECT player FROM table_name_52 WHERE pick = 252 |
How many site entries are there at 3:30pm and the visiting team is coastal carolina? | CREATE TABLE table_28298589_2 (site VARCHAR,time VARCHAR,visiting_team VARCHAR) | SELECT COUNT(site) FROM table_28298589_2 WHERE time = "3:30pm" AND visiting_team = "Coastal Carolina" |
What was the total for the golfer who had a year won of 1987? | CREATE TABLE table_name_20 (total VARCHAR,year_s__won VARCHAR) | SELECT total FROM table_name_20 WHERE year_s__won = "1987" |
what were the top five medicines that were frequently prescribed? | CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE icustays (row_id number,subject_id n... | SELECT t1.drug FROM (SELECT prescriptions.drug, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM prescriptions GROUP BY prescriptions.drug) AS t1 WHERE t1.c1 <= 5 |
Give me a bar chart showing the total number of ships' classes that do not have a captain, show from low to high by the y-axis please. | CREATE TABLE captain (Captain_ID int,Name text,Ship_ID int,age text,Class text,Rank text)CREATE TABLE Ship (Ship_ID int,Name text,Type text,Built_Year real,Class text,Flag text) | SELECT Class, COUNT(Class) FROM Ship WHERE NOT Ship_ID IN (SELECT Ship_ID FROM captain) GROUP BY Class ORDER BY COUNT(Class) |
Which Census Ranking has a Population smaller than 879, and an Area km 2 larger than 537.62? | CREATE TABLE table_60608 ("Official Name" text,"Status" text,"Area km 2" real,"Population" real,"Census Ranking" text) | SELECT "Census Ranking" FROM table_60608 WHERE "Population" < '879' AND "Area km 2" > '537.62' |
Who is the second member with first member Sir Rowland Hill, BT, and a conservative second party? | CREATE TABLE table_59995 ("Election" text,"First member" text,"First party" text,"Second member" text,"Second party" text) | SELECT "Second member" FROM table_59995 WHERE "First member" = 'sir rowland hill, bt' AND "Second party" = 'conservative' |
For which Award Ceremony was Emilio Pichardo as Bobby Strong nominated? | CREATE TABLE table_name_18 (award_ceremony VARCHAR,nominee VARCHAR) | SELECT award_ceremony FROM table_name_18 WHERE nominee = "emilio pichardo as bobby strong" |
What is the average week for the game against baltimore colts with less than 41,062 in attendance? | CREATE TABLE table_name_12 (week INTEGER,opponent VARCHAR,attendance VARCHAR) | SELECT AVG(week) FROM table_name_12 WHERE opponent = "baltimore colts" AND attendance < 41 OFFSET 062 |
What is the High assists for march 25? | CREATE TABLE table_name_69 (high_assists VARCHAR,date VARCHAR) | SELECT high_assists FROM table_name_69 WHERE date = "march 25" |
For those employees who do not work in departments with managers that have ids between 100 and 200, visualize a bar chart about the distribution of hire_date and the average of employee_id bin hire_date by weekday, and show y-axis from high to low order. | 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 (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),E... | SELECT HIRE_DATE, AVG(EMPLOYEE_ID) FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY AVG(EMPLOYEE_ID) DESC |
calculate the number of patients who were dead after being diagnosed with acute respiratory failure within the same hospital visit until 2102. | CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid num... | SELECT COUNT(DISTINCT t2.uniquepid) FROM (SELECT t1.uniquepid, t1.diagnosistime, t1.patienthealthsystemstayid FROM (SELECT patient.uniquepid, diagnosis.diagnosistime, patient.patienthealthsystemstayid FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = ... |
What is the country of Craig Stadler? | CREATE TABLE table_name_65 (country VARCHAR,player VARCHAR) | SELECT country FROM table_name_65 WHERE player = "craig stadler" |
what is the maximum total cost of the hospital involving a laboratory glucose test in 2105? | CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight... | SELECT MAX(t1.c1) FROM (SELECT SUM(cost.cost) AS c1 FROM cost WHERE cost.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.patientunitstayid IN (SELECT lab.patientunitstayid FROM lab WHERE lab.labname = 'glucose')) AND STRFTIME('%y', cost.chargetime) = '2105' GROUP BY cos... |
What team has a home city of Velika? | CREATE TABLE table_77051 ("Team" text,"Manager" text,"Home city" text,"Stadium" text,"Capacity" real) | SELECT "Team" FROM table_77051 WHERE "Home city" = 'velika' |
Which customers have used the service named 'Close a policy' or 'Upgrade a policy'? Give me the customer names. | CREATE TABLE customers (customer_id number,customer_name text)CREATE TABLE services (service_id number,service_name text)CREATE TABLE first_notification_of_loss (fnol_id number,customer_id number,policy_id number,service_id number)CREATE TABLE settlements (settlement_id number,claim_id number,effective_date time,settle... | SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id JOIN services AS t3 ON t2.service_id = t3.service_id WHERE t3.service_name = "Close a policy" OR t3.service_name = "Upgrade a policy" |
Which was the position for overall less than 254, round less than 5 and pick number less than 13? | CREATE TABLE table_71385 ("Round" real,"Pick #" real,"Overall" real,"Name" text,"Position" text,"College" text) | SELECT "Position" FROM table_71385 WHERE "Overall" < '254' AND "Round" < '5' AND "Pick #" < '13' |
What is the release date for Ben 10: Alien Force Volume 9 on DVD? | CREATE TABLE table_name_22 (release_date VARCHAR,dvd_title VARCHAR) | SELECT release_date FROM table_name_22 WHERE dvd_title = "ben 10: alien force volume 9" |
what tier was this team placed into next after their 2011-2012 season ? | CREATE TABLE table_204_636 (id number,"season" text,"tier" number,"division" text,"pos." text,"notes" text) | SELECT "tier" FROM table_204_636 WHERE "season" > '2011-12' ORDER BY "season" LIMIT 1 |
how many stations have at least 5 kw or more listed in the power column ? | CREATE TABLE table_204_164 (id number,"branding" text,"callsign" text,"frequency" text,"power (kw)" text,"location" text) | SELECT COUNT("branding") FROM table_204_164 WHERE "power (kw)" >= 5 |
What is the new/returning/same network name for This Week in Baseball? | CREATE TABLE table_169766_13 (new_returning_same_network VARCHAR,show VARCHAR) | SELECT new_returning_same_network FROM table_169766_13 WHERE show = "This Week in Baseball" |
Who was appointed on October 21, 2011 from Quebec? | CREATE TABLE table_name_31 (name VARCHAR,province VARCHAR,appointed VARCHAR) | SELECT name FROM table_name_31 WHERE province = "quebec" AND appointed = "october 21, 2011" |
let me know the long title and icd9 code of diagnoses for patient with patient id 7273. | 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 diagnoses.icd9_code, diagnoses.long_title FROM diagnoses WHERE diagnoses.subject_id = "7273" |
What is Round when Year is 1987? | CREATE TABLE table_45464 ("Year" real,"Seed" real,"Round" text,"Opponent" text,"Result/Score" text) | SELECT "Round" FROM table_45464 WHERE "Year" = '1987' |
What is the venue when the year is after 2001 for the summer olympics? | CREATE TABLE table_71336 ("Year" real,"Competition" text,"Venue" text,"Position" text,"Notes" text) | SELECT "Venue" FROM table_71336 WHERE "Year" > '2001' AND "Competition" = 'summer olympics' |
what was the last arterial bp [diastolic] value for patient 15107 on 11/21/last year? | CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_... | SELECT chartevents.valuenum 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 = 15107)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'arterial ... |
Recent Unanswered Posts About C# & LINQ. | CREATE TABLE CloseReasonTypes (Id number,Name text,Description text)CREATE TABLE PostHistory (Id number,PostHistoryTypeId number,PostId number,RevisionGUID other,CreationDate time,UserId number,UserDisplayName text,Comment text,Text text,ContentLicense text)CREATE TABLE PostTags (PostId number,TagId number)CREATE TABLE... | SELECT Id AS "post_link", CreationDate, Score, ViewCount AS "v", AnswerCount AS "a", CommentCount AS "c", LastActivityDate, Tags FROM Posts WHERE ClosedDate IS NULL AND AnswerCount = 0 AND LastActivityDate > (CURRENT_TIMESTAMP() - 10) ORDER BY LastActivityDate DESC LIMIT 100 |
For the Fall term , are any PreMajor or MDE classes offered ? | CREATE TABLE requirement (requirement_id int,requirement varchar,college varchar)CREATE TABLE semester (semester_id int,semester varchar,year int)CREATE TABLE program_requirement (program_id int,category varchar,min_credit int,additional_req varchar)CREATE TABLE student (student_id int,lastname varchar,firstname varcha... | SELECT DISTINCT course.department, course.name, course.number, program_course.category FROM course, course_offering, program_course, semester WHERE course.course_id = course_offering.course_id AND program_course.category IN ('PreMajor', 'MDE') AND program_course.course_id = course.course_id AND semester.semester = 'Fal... |
What venue did the partnership of herschelle gibbs / justin kemp happen? | CREATE TABLE table_name_74 (venue VARCHAR,partnerships VARCHAR) | SELECT venue FROM table_name_74 WHERE partnerships = "herschelle gibbs / justin kemp" |
What is the report for the race name V Ulster Trophy? | CREATE TABLE table_1140117_5 (report VARCHAR,race_name VARCHAR) | SELECT report FROM table_1140117_5 WHERE race_name = "V Ulster Trophy" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.