instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
how many patients received parenteral feeds - tpn treatment within 2 months after being diagnosed with coronary artery disease during the last year. | CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE treatment (treatmentid number,patientu... | SELECT COUNT(DISTINCT t1.uniquepid) FROM (SELECT patient.uniquepid, diagnosis.diagnosistime FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'coronary artery disease' AND DATETIME(diagnosis.diagnosistime, 'start of year') = DATETIME(CURRENT_TIME(), '... |
did patient 65124 receive hemorrhage complic proc diagnosis until 1 year ago? | 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_wardid number,intime time,outtime time)CREATE TABLE transfers (row_id number,subject_id number,hadm_id number,icustay_id number,eventtype text,careunit text,wardid numb... | SELECT COUNT(*) > 0 FROM diagnoses_icd WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'hemorrhage complic proc') AND diagnoses_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 65124) AND DATETIME(diagnoses... |
What team was he on the year he had 38 points? | CREATE TABLE table_24584486_1 (team VARCHAR,points VARCHAR) | SELECT team FROM table_24584486_1 WHERE points = 38 |
What was the transfer window with a moving from of fenerbah e? | CREATE TABLE table_name_21 (transfer_window VARCHAR,moving_from VARCHAR) | SELECT transfer_window FROM table_name_21 WHERE moving_from = "fenerbahçe" |
Give me the comparison about author_tutor_ATB over the middle_name . | CREATE TABLE Subjects (subject_id INTEGER,subject_name VARCHAR(120))CREATE TABLE Student_Course_Enrolment (registration_id INTEGER,student_id INTEGER,course_id INTEGER,date_of_enrolment DATETIME,date_of_completion DATETIME)CREATE TABLE Courses (course_id INTEGER,author_id INTEGER,subject_id INTEGER,course_name VARCHAR(... | SELECT middle_name, author_tutor_ATB FROM Course_Authors_and_Tutors ORDER BY personal_name |
what is the price for the lorazepam inj? | CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight number,dischargeweight number,hospitaladmittime time,hospitaladmitsource text,unitadmittime time,unitdischargetime tim... | SELECT DISTINCT cost.cost FROM cost WHERE cost.eventtype = 'medication' AND cost.eventid IN (SELECT medication.medicationid FROM medication WHERE medication.drugname = 'lorazepam inj') |
For those records from the products and each product's manufacturer, give me the comparison about the average of revenue over the founder , and group by attribute founder, and I want to rank in descending by the x axis. | CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL)CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER) | SELECT Founder, AVG(Revenue) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Founder ORDER BY Founder DESC |
What is the highest value for SF round for the country of England? | CREATE TABLE table_23293785_2 (sf_round INTEGER,country VARCHAR) | SELECT MAX(sf_round) FROM table_23293785_2 WHERE country = "England" |
Which tyre is on the car driven by Pedro de la Rosa? | CREATE TABLE table_71457 ("Entrant" text,"Constructor" text,"Chassis" text,"Engine \u2020" text,"Tyre" text,"Driver" text,"Rounds" text) | SELECT "Tyre" FROM table_71457 WHERE "Driver" = 'pedro de la rosa' |
What was the amount of 000s when Germany had 16.6? | CREATE TABLE table_name_35 (total__000s_ VARCHAR,germany VARCHAR) | SELECT total__000s_ FROM table_name_35 WHERE germany = 16.6 |
During the Fall and Winter , what upper-level electives are offered ? | CREATE TABLE course_prerequisite (pre_course_id int,course_id int)CREATE TABLE area (course_id int,area varchar)CREATE TABLE offering_instructor (offering_instructor_id int,offering_id int,instructor_id int)CREATE TABLE student (student_id int,lastname varchar,firstname varchar,program_id int,declare_major varchar,tota... | SELECT DISTINCT course.department, course.name, course.number FROM course INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN semester ON semester.semester_id = course_offering.semester INNER JOIN program_course ON program_course.course_id = course.course_id WHERE (semester.semester = ... |
What is the date of the game when the venue is MCG? | CREATE TABLE table_32752 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Date" FROM table_32752 WHERE "Venue" = 'mcg' |
Questions & Answers with 'Thanks in advance'. | CREATE TABLE SuggestedEditVotes (Id number,SuggestedEditId number,UserId number,VoteTypeId number,CreationDate time,TargetUserId number,TargetRepChange number)CREATE TABLE PostTags (PostId number,TagId number)CREATE TABLE CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance te... | SELECT p.CreationDate, CASE WHEN (2 = p.PostTypeId) THEN 'Answer' ELSE 'Question' END AS PostType, p.Score, CASE WHEN (2 = p.PostTypeId) THEN t.Title ELSE p.Title END AS QuestionTitle, p.Body, p.Id AS "post_link" FROM Posts AS p LEFT OUTER JOIN Posts AS t ON (p.ParentId = t.Id) WHERE 1 = 1 AND p.CreationDate >= DATEADD... |
Which points classification has 4 as the stage? | CREATE TABLE table_2613 ("Stage" real,"Stage winner" text,"General classification" text,"Points classification" text,"Mountains classification" text,"Malaysian rider classification" text,"Team classification" text,"Malaysian team classification" text) | SELECT "Points classification" FROM table_2613 WHERE "Stage" = '4' |
have patient 15125 been diagnosed with anything since 1 year ago? | CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE admissions (row_id number,subject_id number,hadm_id number,admittime time,dischtime time,admission_type text,admission_location text,disch... | SELECT COUNT(*) > 0 FROM diagnoses_icd WHERE diagnoses_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 15125) AND DATETIME(diagnoses_icd.charttime) >= DATETIME(CURRENT_TIME(), '-1 year') |
how many jstations have an rf of at least 29 ? | CREATE TABLE table_204_793 (id number,"call-sign" text,"location" text,"rf" number,"psip" number,"programming" text) | SELECT COUNT(*) FROM table_204_793 WHERE "rf" >= 29 |
What was the average attendance when the decision was price and montreal were the visitors? | CREATE TABLE table_78262 ("Date" text,"Venue" text,"Visitor" text,"Score" text,"Home" text,"Montreal goals" text,"Decision" text,"Attendance" real,"Series" text) | SELECT AVG("Attendance") FROM table_78262 WHERE "Visitor" = 'montreal' AND "Decision" = 'price' |
What is the average Isolation in the municipality of Sunndal at an elevation of more than 1850? | CREATE TABLE table_name_83 (isolation__km_ INTEGER,municipality VARCHAR,elevation__m_ VARCHAR) | SELECT AVG(isolation__km_) FROM table_name_83 WHERE municipality = "sunndal" AND elevation__m_ > 1850 |
how many times did patient 017-58432 have an intake of ns ivf on 11/07/last year? | CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissio... | SELECT COUNT(*) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '017-58432')) AND intakeoutput.cellpath LIKE '%intake%' AND intakeoutput.ce... |
Show the details of the top 3 most expensive hotels. | CREATE TABLE HOTELS (other_hotel_details VARCHAR,price_range VARCHAR) | SELECT other_hotel_details FROM HOTELS ORDER BY price_range DESC LIMIT 3 |
What is the Location for the newington international airport? | CREATE TABLE table_name_6 (location VARCHAR,name VARCHAR) | SELECT location FROM table_name_6 WHERE name = "newington international airport" |
What place had a score smaller than 74 and a par of e? | CREATE TABLE table_8997 ("Place" text,"Player" text,"Country" text,"Score" real,"To par" text) | SELECT "Place" FROM table_8997 WHERE "Score" < '74' AND "To par" = 'e' |
i'd like to see the flights from DENVER to PHILADELPHIA again | CREATE TABLE time_interval (period text,begin_time int,end_time int)CREATE TABLE state (state_code text,state_name text,country_name text)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)C... | 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 = 'DENVER' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'PHILADE... |
What is the game number when the Toronto Maple Leafs were the opponent, and the February was less than 17? | CREATE TABLE table_46034 ("Game" real,"February" real,"Opponent" text,"Score" text,"Record" text) | SELECT AVG("Game") FROM table_46034 WHERE "Opponent" = 'toronto maple leafs' AND "February" < '17' |
Tell me the league with a regular 1st season | CREATE TABLE table_name_2 (league VARCHAR,reg_season VARCHAR) | SELECT league FROM table_name_2 WHERE reg_season = "1st" |
What was the attendance when the VFL played Lake Oval? | CREATE TABLE table_4494 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT COUNT("Crowd") FROM table_4494 WHERE "Venue" = 'lake oval' |
i'd like the cheapest one way fare from BOSTON to ATLANTA please | CREATE TABLE state (state_code text,state_name text,country_name text)CREATE TABLE airport_service (city_code varchar,airport_code varchar,miles_distant int,direction varchar,minutes_distant int)CREATE TABLE ground_service (city_code text,airport_code text,transport_type text,ground_fare int)CREATE TABLE class_of_servi... | SELECT DISTINCT fare.fare_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, fare, flight, flight_fare WHERE CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'BOSTON' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_... |
Who was the director of Small Voices, a film title used in nomination? | CREATE TABLE table_name_61 (director VARCHAR,film_title_used_in_nomination VARCHAR) | SELECT director FROM table_name_61 WHERE film_title_used_in_nomination = "small voices" |
Show the average price of each film in a bar chart, I want to show y axis from low to high order. | CREATE TABLE cinema (Cinema_ID int,Name text,Openning_year int,Capacity int,Location text)CREATE TABLE schedule (Cinema_ID int,Film_ID int,Date text,Show_times_per_day int,Price float)CREATE TABLE film (Film_ID int,Rank_in_series int,Number_in_season int,Title text,Directed_by text,Original_air_date text,Production_cod... | SELECT Title, AVG(Price) FROM schedule AS T1 JOIN film AS T2 ON T1.Film_ID = T2.Film_ID JOIN cinema AS T3 ON T1.Cinema_ID = T3.Cinema_ID GROUP BY Title ORDER BY AVG(Price) |
with lola t86/50 chassis and less than 7 points what is the entrant? | CREATE TABLE table_name_87 (entrant VARCHAR,points VARCHAR,chassis VARCHAR) | SELECT entrant FROM table_name_87 WHERE points < 7 AND chassis = "lola t86/50" |
What is the district with Republican party in place? | CREATE TABLE table_1342198_25 (district VARCHAR,party VARCHAR) | SELECT district FROM table_1342198_25 WHERE party = "Republican" |
what are total transaction amounts for each transaction type?, and I want to rank by the Y-axis from high to low. | 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 Invoice_Line_Items (order_item_id INTEGER,in... | SELECT transaction_type, SUM(transaction_amount) FROM Financial_Transactions GROUP BY transaction_type ORDER BY SUM(transaction_amount) DESC |
What is the Spanish word for cas [ kas]? | CREATE TABLE table_28812 ("Western" text,"Central" text,"Eastern" text,"Old Galician (13th\u201315th c.)" text,"Portuguese" text,"Spanish" text,"Latin" text,"English" text) | SELECT "Spanish" FROM table_28812 WHERE "Central" = 'cas [ˈkas]' |
count the number of times that nitroglycerin 50 mg in d5w 250 ml r has been prescribed until 2103. | CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight number,dischargeweight number,hospitaladmittime time,hospitaladmitsource text,unitadmittime time,unitdischargetime tim... | SELECT COUNT(*) FROM medication WHERE medication.drugname = 'nitroglycerin 50 mg in d5w 250 ml r' AND STRFTIME('%y', medication.drugstarttime) <= '2103' |
What's the lineup when the assist/pass was Unassisted? | CREATE TABLE table_65433 ("Date" text,"Location" text,"Lineup" text,"Assist/pass" text,"Score" text,"Result" text,"Competition" text) | SELECT "Lineup" FROM table_65433 WHERE "Assist/pass" = 'unassisted' |
Which Game has a Team of at san antonio, and a Record of 3-3? | CREATE TABLE table_name_86 (game VARCHAR,team VARCHAR,record VARCHAR) | SELECT game FROM table_name_86 WHERE team = "at san antonio" AND record = "3-3" |
What's the highest division number through the years? | CREATE TABLE table_1990460_1 (division INTEGER) | SELECT MAX(division) FROM table_1990460_1 |
If the school is John A. Logan College, what are the colors? | CREATE TABLE table_24920 ("School" text,"Location" text,"Team Name" text,"Colors" text,"Varsity Teams" real,"NJCAA Championships" real) | SELECT "Colors" FROM table_24920 WHERE "School" = 'John A. Logan College' |
Who has the high points when 3-2 is the series? | CREATE TABLE table_25463 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Series" text) | SELECT "High points" FROM table_25463 WHERE "Series" = '3-2' |
What's the sales breakdown of the Nintendo game released on May 15, 2006? | CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR,publisher VARCHAR,release_date VARCHAR) | SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = "Nintendo" AND release_date = "May 15, 2006" |
For what year is the type of record 'total attendance-regular season? | CREATE TABLE table_24364 ("Type of Record" text,"Attendance" real,"Date/Year" text,"Stadium" text,"Result/Games" text) | SELECT "Date/Year" FROM table_24364 WHERE "Type of Record" = 'Total Attendance-Regular season' |
What is the rate limit when the desired rate change (%) is +40.4? | CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR,desired_rate_change___percentage_ VARCHAR) | SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate_change___percentage_ = "+40.4" |
tell me the intake method for belatacept study drug (*ind*)? | CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type text,event_id number,chargetime time,cost number)CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title te... | SELECT DISTINCT prescriptions.route FROM prescriptions WHERE prescriptions.drug = 'belatacept study drug (*ind*)' |
what is days of hospital stay and primary disease of subject id 2560? | 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 lab (subject_id text,hadm_id text,itemid text,charttime te... | SELECT demographic.days_stay, demographic.diagnosis FROM demographic WHERE demographic.subject_id = "2560" |
count the number of patients whose age is less than 77 and item id is 51032? | 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 text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,la... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.age < "77" AND lab.itemid = "51032" |
My Tags by Post Count. | CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE ReviewTaskResultTypes (Id number,Name text,Description text)CREATE TABLE ReviewTaskStates (Id number,Name text,Description text)CREATE TABLE CloseReasonTypes (Id number,Name text,Description text)CREATE TABLE PostLinks (Id number,CreationDate time,PostId n... | SELECT T.TagName, COUNT(Pot.TagId) AS TagCount, SUM(P.Score) AS TagScore FROM Tags AS T, PostTags AS Pot, Posts AS P, Users AS U, PostTypes AS Pt WHERE U.Id = P.OwnerUserId AND Pt.Id = P.PostTypeId AND (u.Id = 548225) AND Pot.PostId = P.ParentId AND T.Id = Pot.TagId GROUP BY T.TagName ORDER BY COUNT(Pot.TagId) DESC |
When did construction start on the Power station with a net MWE of 1190 | CREATE TABLE table_19260 ("AGR Power Station" text,"Net MWe" real,"Construction started" real,"Connected to grid" real,"Commercial operation" real,"Accounting closure date" real) | SELECT MIN("Construction started") FROM table_19260 WHERE "Net MWe" = '1190' |
What were the years of the Tottenham Hotspur career for the player with 10 goals, from England, played the df position, and had 118 club apps? | CREATE TABLE table_name_26 (tottenham_hotspur_career VARCHAR,club_apps VARCHAR,position VARCHAR,goals VARCHAR,nationality VARCHAR) | SELECT tottenham_hotspur_career FROM table_name_26 WHERE goals = "10" AND nationality = "england" AND position = "df" AND club_apps = "118" |
When marcus camby (15) has the highest amount of rebounds who has the highest amount of assists? | CREATE TABLE table_23286158_10 (high_assists VARCHAR,high_rebounds VARCHAR) | SELECT high_assists FROM table_23286158_10 WHERE high_rebounds = "Marcus Camby (15)" |
For those records from the products and each product's manufacturer, draw a bar chart about the distribution of name and the sum of revenue , and group by attribute name, list from high to low by the Y-axis. | CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL)CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER) | SELECT T1.Name, T2.Revenue FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T1.Name ORDER BY T2.Revenue DESC |
What is the location of the mill with a reference number of 44? | CREATE TABLE table_name_99 (location VARCHAR,ref_number VARCHAR) | SELECT location FROM table_name_99 WHERE ref_number = 44 |
What is the high point toal for martine foubert placing below 2? | CREATE TABLE table_51352 ("Draw" real,"Artist" text,"Song" text,"Points" real,"Place" real) | SELECT MAX("Points") FROM table_51352 WHERE "Artist" = 'martine foubert' AND "Place" > '2' |
Who was the runner up for the Nagapattinam constituency? | CREATE TABLE table_2703 ("Constituency" text,"Winner" text,"Party" text,"Margin" real,"Runner-up a" text,"Party a" text) | SELECT "Runner-up a" FROM table_2703 WHERE "Constituency" = 'Nagapattinam' |
What is the procedure long title and for how many days did subject id 76446 stay in the hospital? | 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 demographic.days_stay, procedures.long_title FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.subject_id = "76446" |
What is the most legs lost of all? | CREATE TABLE table_18621456_22 (legs_lost INTEGER) | SELECT MAX(legs_lost) FROM table_18621456_22 |
What athlete has less than 7 gold and 14 total medals? | CREATE TABLE table_name_87 (athlete VARCHAR,gold VARCHAR,total VARCHAR) | SELECT athlete FROM table_name_87 WHERE gold < 7 AND total = 14 |
What event did Sjerstin Vermeulen receive a 66.452 result? | CREATE TABLE table_62859 ("Athlete" text,"Class" text,"Horse" text,"Event" text,"Result" text,"Rank" text) | SELECT "Event" FROM table_62859 WHERE "Athlete" = 'sjerstin vermeulen' AND "Result" = '66.452' |
Trendy tags: 2015 to 2016 growth. | CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE PostHistory (Id number,PostHistoryTypeId number,PostId number,RevisionGUID other,CreationDate time,UserId number,UserDisplayName text,Comment text,Text text,ContentLicense text)CREATE TABLE PostTags (PostId number,TagId number)CREATE TABLE PostNoticeTypes ... | SELECT *, CAST(100.0 * (a.y2016 - a.y2015) / NULLIF(a.y2015, 0) AS FLOAT(18, 2)) AS growth FROM (SELECT t.TagName, COUNT(p.Id) AS postCount, SUM(CASE WHEN YEAR(p.CreationDate) = 2014 THEN 1 ELSE 0 END) AS y2014, SUM(CASE WHEN YEAR(p.CreationDate) = 2015 THEN 1 ELSE 0 END) AS y2015, SUM(CASE WHEN YEAR(p.CreationDate) = ... |
what is the total number of times johan bryneel 's name appears on all of these lists ? | CREATE TABLE table_204_156 (id number,"year" number,"crystal bicycle\n(best professional cyclist)" text,"best young rider" text,"best manager" text,"crystal drop of sweat\n(best helper)" text) | SELECT COUNT(*) FROM table_204_156 WHERE "best manager" = 'johan bruyneel' |
How many bookings did each customer make? List the customer id, first name, and the count. | CREATE TABLE bookings (customer_id VARCHAR)CREATE TABLE Customers (customer_id VARCHAR,first_name VARCHAR) | SELECT T1.customer_id, T1.first_name, COUNT(*) FROM Customers AS T1 JOIN bookings AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id |
What is Tournament, when Date is 'Sep 12, 1976'? | CREATE TABLE table_name_96 (tournament VARCHAR,date VARCHAR) | SELECT tournament FROM table_name_96 WHERE date = "sep 12, 1976" |
What is the title of the prerequisite class of International Finance course? | CREATE TABLE course (title VARCHAR,course_id VARCHAR)CREATE TABLE prereq (prereq_id VARCHAR,course_id VARCHAR) | SELECT title FROM course WHERE course_id IN (SELECT T1.prereq_id FROM prereq AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.title = 'International Finance') |
How many security forces? | CREATE TABLE table_2478 ("Period" text,"Civilians" real,"Security forces" real,"Insurgents" real,"Total per period" real) | SELECT MAX("Security forces") FROM table_2478 |
Which episode number drew in 3.84 million viewers in the U.S.? | CREATE TABLE table_14929574_3 (series__number INTEGER,us_viewers__million_ VARCHAR) | SELECT MAX(series__number) FROM table_14929574_3 WHERE us_viewers__million_ = "3.84" |
What is the percentage for the team with a road record of 3-4 and a home record of 7-0? | CREATE TABLE table_25699 ("Team" text,"SEC Wins" real,"SEC Losses" real,"Percentage" text,"Home Record" text,"Road Record" text,"Overall Record" text) | SELECT "Percentage" FROM table_25699 WHERE "Road Record" = '3-4' AND "Home Record" = '7-0' |
What is the score for the away team Chelsea? | CREATE TABLE table_46067 ("Tie no" text,"Home team" text,"Score" text,"Away team" text,"Date" text) | SELECT "Score" FROM table_46067 WHERE "Away team" = 'chelsea' |
What's the mean number of wins with a rank that's more than 5? | CREATE TABLE table_name_91 (wins INTEGER,rank INTEGER) | SELECT AVG(wins) FROM table_name_91 WHERE rank > 5 |
What is the liberal ticket that has judith white as the socialist workers? | CREATE TABLE table_name_73 (liberal_ticket VARCHAR,socialist_workers_ticket VARCHAR) | SELECT liberal_ticket FROM table_name_73 WHERE socialist_workers_ticket = "judith white" |
What is the location for Lakewood Park Christian? | CREATE TABLE table_13275 ("School" text,"Location" text,"Mascot" text,"IHSAA Class" text,"County" text,"Year Joined" text,"Year Left" text,"Conference Joined" text) | SELECT "Location" FROM table_13275 WHERE "School" = 'lakewood park christian' |
What was the money for place t3 and United States? | CREATE TABLE table_58720 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text,"Money ($)" text) | SELECT "Money ( $ )" FROM table_58720 WHERE "Place" = 't3' AND "Country" = 'united states' |
What is the total number of interviews where the evening gown number is less than 8.82, the state is Kentucky, and the average is more than 8.85? | CREATE TABLE table_56374 ("State" text,"Swimsuit" real,"Evening gown" real,"Interview" real,"Average" real) | SELECT SUM("Interview") FROM table_56374 WHERE "Evening gown" < '8.82' AND "State" = 'kentucky' AND "Average" > '8.85' |
What was the score against Portland in game numbers under 20? | CREATE TABLE table_7988 ("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_7988 WHERE "Game" < '20' AND "Team" = 'portland' |
what name was the drug that patient 7375 had been prescribed two times until 08/2101? | 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 transfers (row_id number,subject_id number,hadm_id number,icustay_id number,eventtype text,careunit text,wardid number,intime time,outtime time)CREA... | SELECT t1.drug FROM (SELECT prescriptions.drug, COUNT(prescriptions.startdate) AS c1 FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 7375) AND STRFTIME('%y-%m', prescriptions.startdate) <= '2101-08' GROUP BY prescriptions.drug) AS t1 WHERE t1.c1... |
What is the final score in 2007 for the world league in novi sad played against Italy? | CREATE TABLE table_70842 ("Year" real,"Competition" text,"Town" text,"Opponent" text,"Final score" text) | SELECT "Final score" FROM table_70842 WHERE "Year" = '2007' AND "Competition" = 'world league' AND "Town" = 'novi sad' AND "Opponent" = 'italy' |
On Friday does REES 395 have class ? | CREATE TABLE program_requirement (program_id int,category varchar,min_credit int,additional_req varchar)CREATE TABLE semester (semester_id int,semester varchar,year int)CREATE TABLE instructor (instructor_id int,name varchar,uniqname varchar)CREATE TABLE course_prerequisite (pre_course_id int,course_id int)CREATE TABLE... | SELECT DISTINCT course_offering.friday FROM course INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN semester ON semester.semester_id = course_offering.semester WHERE course.department = 'REES' AND course.number = 395 AND semester.semester = 'WN' AND semester.year = 2016 |
What is the winning song for the artist with a debut album 'the winner'? | CREATE TABLE table_1646960_3 (winning_song VARCHAR,debut_album VARCHAR) | SELECT winning_song FROM table_1646960_3 WHERE debut_album = "The winner" |
What tournament had a score of 5 7, 6 4, 6 4? | CREATE TABLE table_41815 ("Year" real,"Tournament Name" text,"Champions" text,"Runners-up" text,"Score" text) | SELECT "Tournament Name" FROM table_41815 WHERE "Score" = '5–7, 6–4, 6–4' |
What were the results of the event where $817,781 was awarded to less than 1,236 entrants? | CREATE TABLE table_38766 ("Entrants" real,"Winner" text,"Prize" text,"Runner-up" text,"Results" text) | SELECT "Results" FROM table_38766 WHERE "Entrants" < '1,236' AND "Prize" = '$817,781' |
What iwas the attendance of the game that took place on december 6, 1998? | CREATE TABLE table_name_41 (attendance VARCHAR,date VARCHAR) | SELECT attendance FROM table_name_41 WHERE date = "december 6, 1998" |
Is it true that all upper-level classes have exams ? | CREATE TABLE area (course_id int,area varchar)CREATE TABLE program (program_id int,name varchar,college varchar,introduction varchar)CREATE TABLE course_prerequisite (pre_course_id int,course_id int)CREATE TABLE course_offering (offering_id int,course_id int,semester int,section_number int,start_time time,end_time time... | SELECT COUNT(*) = 0 FROM course INNER JOIN program_course ON program_course.course_id = course.course_id WHERE course.has_exams = 'N' AND program_course.category LIKE '%ULCS%' |
what is the number of patients whose diagnoses short title is perinat gi sys dis nec and drug route is po/ng? | 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 diagnoses (subject_id text,hadm_id tex... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE diagnoses.short_title = "Perinat GI sys dis NEC" AND prescriptions.route = "PO/NG" |
What is North Melbourne's Away team score? | CREATE TABLE table_57618 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Away team score" FROM table_57618 WHERE "Away team" = 'north melbourne' |
what was the top five prescribed drugs for the patients in the age of 30s in the previous year? | 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 procedures_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE patients (row_id number,subject_id number,... | SELECT t1.drug FROM (SELECT prescriptions.drug, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.age BETWEEN 30 AND 39) AND DATETIME(prescriptions.startdate, 'start of year') = DATETIME(CURRENT_TIME(), 'start o... |
which parter did she have the most ? | CREATE TABLE table_204_553 (id number,"outcome" text,"no." number,"date" text,"tournament" text,"surface" text,"partner" text,"opponents in the final" text,"score in the final" text) | SELECT "partner" FROM table_204_553 GROUP BY "partner" ORDER BY COUNT(*) DESC LIMIT 1 |
What was the air date where there were 5.72 million viewers? | CREATE TABLE table_2893 ("No. in series" real,"No. in season" real,"Title" text,"Directed by" text,"Written by" text,"U.S. viewers (million)" text,"Original air date" text,"Production code" real) | SELECT "Original air date" FROM table_2893 WHERE "U.S. viewers (million)" = '5.72' |
What is the title of the issue where the art was done by Barry Kitson and Farmer? | CREATE TABLE table_22259 ("#" real,"Cover Date" text,"Story Title" text,"Writer/s" text,"Artist/s" text,"Letterer/s" text,"Colourist/s" text,"Editor/s" text,"Comments" text) | SELECT "Story Title" FROM table_22259 WHERE "Artist/s" = 'Barry Kitson and Farmer' |
Which Cup Apps (sub) had 2 goals? | CREATE TABLE table_name_59 (cup_apps__sub_ VARCHAR,cup_goals VARCHAR) | SELECT cup_apps__sub_ FROM table_name_59 WHERE cup_goals = "2" |
patient 95986 has produced gastric emesis in 05/this year? | CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE procedures_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE d_items (row_id number,i... | SELECT COUNT(*) > 0 FROM outputevents WHERE outputevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 95986)) AND outputevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'gastric emesis... |
What is the total number of bronze medals of the nation with 4 total medals and 1 silver? | CREATE TABLE table_7154 ("Rank" text,"Nation" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real) | SELECT COUNT("Bronze") FROM table_7154 WHERE "Total" = '4' AND "Silver" = '1' |
TOP USERS IN TAG GROUPED BY COUNTRY. | CREATE TABLE PendingFlags (Id number,FlagTypeId number,PostId number,CreationDate time,CloseReasonTypeId number,CloseAsOffTopicReasonTypeId number,DuplicateOfQuestionId number,BelongsOnBaseHostAddress text)CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE PostFeedback (Id number,PostId number,IsAnonymous ... | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", u.Id AS "user_link", u.Reputation, COUNT(p.Id) FROM Users AS u INNER JOIN Posts AS p ON p.OwnerUserId = u.Id INNER JOIN PostTags AS pt ON pt.PostId = p.Id INNER JOIN Tags AS t ON t.Id = pt.TagId WHERE LOWER(Location) LIKE LOWER('%##countryname##%') AND t.TagNa... |
Who played a home team that scored 9.16 (70)? | CREATE TABLE table_4901 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Away team" FROM table_4901 WHERE "Home team score" = '9.16 (70)' |
Name the least number with density more than 262 with population more than 22,415 and area less than 335.14 | CREATE TABLE table_67769 ("Municipality" text,"Number" real,"Population" real,"Area\u00b9" real,"Density\u00b2" real) | SELECT MIN("Number") FROM table_67769 WHERE "Density\u00b2" > '262' AND "Population" > '22,415' AND "Area\u00b9" < '335.14' |
Tell me the number of regions with an area of 58.81 | CREATE TABLE table_56921 ("Code" real,"Type" text,"Name" text,"Area (km 2)" real,"Population" real,"Regional County Municipality" text,"Region" real) | SELECT COUNT("Region") FROM table_56921 WHERE "Area (km 2 )" = '58.81' |
Which weight class had a time of 4:59? | CREATE TABLE table_43224 ("Card" text,"Weight Class" text,"Round" real,"Time" text,"Method" text) | SELECT "Weight Class" FROM table_43224 WHERE "Time" = '4:59' |
What is the df when Adam Hinshelwood is Junior Mendes? | CREATE TABLE table_26362 ("1 January 2010" text,"DF" text,"Adam Hinshelwood" text,"Aldershot Town" text,"Wycombe Wanderers" text,"Undisclosed" text) | SELECT "DF" FROM table_26362 WHERE "Adam Hinshelwood" = 'Junior Mendes' |
what is average age of patients whose insurance is government and days of hospital stay is 5? | 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 AVG(demographic.age) FROM demographic WHERE demographic.insurance = "Government" AND demographic.days_stay = "5" |
give me the number of patients whose admission location is trsf within this facility and year of birth is less than 1879? | 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 text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,la... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.admission_location = "TRSF WITHIN THIS FACILITY" AND demographic.dob_year < "1879" |
What is the total lost that has points greater than 8 and a difference of - 8 and a position of greater than 5? | CREATE TABLE table_name_2 (lost INTEGER,position VARCHAR,points VARCHAR,difference VARCHAR) | SELECT SUM(lost) FROM table_name_2 WHERE points > 8 AND difference = "- 8" AND position > 5 |
Which player won the Masters in 1976? | CREATE TABLE table_7565 ("Player" text,"Country" text,"Year(s) won" text,"Total" text,"To par" text) | SELECT "Player" FROM table_7565 WHERE "Year(s) won" = '1976' |
What are the name and primarily affiliated department name of each physician?, and list y axis from low to high order. | CREATE TABLE Undergoes (Patient INTEGER,Procedures INTEGER,Stay INTEGER,DateUndergoes DATETIME,Physician INTEGER,AssistingNurse INTEGER)CREATE TABLE Room (RoomNumber INTEGER,RoomType VARCHAR(30),BlockFloor INTEGER,BlockCode INTEGER,Unavailable BOOLEAN)CREATE TABLE Trained_In (Physician INTEGER,Treatment INTEGER,Certifi... | SELECT T3.Name, COUNT(T3.Name) FROM Physician AS T1 JOIN Affiliated_With AS T2 ON T1.EmployeeID = T2.Physician JOIN Department AS T3 ON T2.Department = T3.DepartmentID WHERE T2.PrimaryAffiliation = 1 GROUP BY T3.Name ORDER BY COUNT(T3.Name) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.