instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
What is the Money ($) of the game with a score of 69-74-70-73=286? | CREATE TABLE table_name_57 (money___ INTEGER,score VARCHAR) | SELECT MAX(money___) AS $__ FROM table_name_57 WHERE score = 69 - 74 - 70 - 73 = 286 |
What is the title when the director is Maynard C. Virgil i ? | CREATE TABLE table_3985 ("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_3985 WHERE "Directed by" = 'Maynard C. Virgil I' |
Visualize a bar chart about the distribution of Nationality and the average of meter_100 , and group by attribute Nationality, and I want to show by the Nationality from high to low. | CREATE TABLE swimmer (ID int,name text,Nationality text,meter_100 real,meter_200 text,meter_300 text,meter_400 text,meter_500 text,meter_600 text,meter_700 text,Time text)CREATE TABLE stadium (ID int,name text,Capacity int,City text,Country text,Opening_year int)CREATE TABLE record (ID int,Result text,Swimmer_ID int,Ev... | SELECT Nationality, AVG(meter_100) FROM swimmer GROUP BY Nationality ORDER BY Nationality DESC |
Which segment A item that has a Segment D of wigs? | CREATE TABLE table_name_80 (segment_a VARCHAR,segment_d VARCHAR) | SELECT segment_a FROM table_name_80 WHERE segment_d = "wigs" |
Name the 1/8 finals for round 1 n/a | CREATE TABLE table_18646111_13 (round_1 VARCHAR) | SELECT 1 AS _8_finals FROM table_18646111_13 WHERE round_1 = "N/A" |
Bar graph to show how many result from different result | CREATE TABLE Acceptance (Submission_ID int,Workshop_ID int,Result text)CREATE TABLE workshop (Workshop_ID int,Date text,Venue text,Name text)CREATE TABLE submission (Submission_ID int,Scores real,Author text,College text) | SELECT Result, COUNT(Result) FROM Acceptance GROUP BY Result |
what is the total attempted with a total made 16 | CREATE TABLE table_47116 ("Game" real,"3PM-A" text,"Percent Made" real,"Total Made" real,"Total Attempted" real,"Series Percent" real) | SELECT COUNT("Total Attempted") FROM table_47116 WHERE "Total Made" = '16' |
Find the patient who has the most recent undergoing treatment? | CREATE TABLE physician (employeeid number,name text,position text,ssn number)CREATE TABLE room (roomnumber number,roomtype text,blockfloor number,blockcode number,unavailable boolean)CREATE TABLE block (blockfloor number,blockcode number)CREATE TABLE affiliated_with (physician number,department number,primaryaffiliatio... | SELECT patient FROM undergoes ORDER BY dateundergoes LIMIT 1 |
Who was nominated for Best Theatre Choreographer? | CREATE TABLE table_46415 ("Year" real,"Award" text,"Category" text,"Nominee" text,"Result" text) | SELECT "Nominee" FROM table_46415 WHERE "Category" = 'best theatre choreographer' |
How many caps does Jon Dahl Tomasson, who has less than 0.46 goals per match, have? | CREATE TABLE table_62100 ("Name" text,"Confederation" text,"International goals" real,"Caps" real,"Goals per Match" real) | SELECT COUNT("Caps") FROM table_62100 WHERE "Name" = 'jon dahl tomasson' AND "Goals per Match" < '0.46' |
what's the livingstone with fitzroy being 9499 | CREATE TABLE table_12570207_1 (livingstone VARCHAR,fitzroy VARCHAR) | SELECT livingstone FROM table_12570207_1 WHERE fitzroy = 9499 |
Find the number of courses provided in each year with a line chart, could you display X in descending order? | CREATE TABLE teaches (ID varchar(5),course_id varchar(8),sec_id varchar(8),semester varchar(6),year numeric(4,0))CREATE TABLE student (ID varchar(5),name varchar(20),dept_name varchar(20),tot_cred numeric(3,0))CREATE TABLE section (course_id varchar(8),sec_id varchar(8),semester varchar(6),year numeric(4,0),building va... | SELECT year, COUNT(*) FROM section GROUP BY year ORDER BY year DESC |
What song was performed when Barbara Windsor was the guest host? | CREATE TABLE table_20428 ("Episode Number" real,"Air Date" text,"Guest Host" text,"Musical Guest (Song performed)" text,"Who knows the most about the guest host? Panelists" text,"Coat Of Cash Wearing Celebrity" text) | SELECT "Musical Guest (Song performed)" FROM table_20428 WHERE "Guest Host" = 'Barbara Windsor' |
What was the circuit for alberto ascari jos froil n gonz lez? | CREATE TABLE table_name_83 (circuit VARCHAR,fastest_lap VARCHAR) | SELECT circuit FROM table_name_83 WHERE fastest_lap = "alberto ascari josé froilán gonzález" |
how many patients whose primary disease is sepsis and admission year is less than 2203? | 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.diagnosis = "SEPSIS" AND demographic.admityear < "2203" |
What is the total points for a place less than 2 with a played greater than 18? | CREATE TABLE table_13096 ("Place" real,"Team" text,"Played" real,"Draw" real,"Lost" real,"Goals Scored" real,"Goals Conceded" real,"Points" real) | SELECT SUM("Points") FROM table_13096 WHERE "Place" < '2' AND "Played" > '18' |
what are the five most frequently prescribed drugs for patients that have been prescribed famotidine (pf) at the same time, in a year before? | 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 t3.drugname FROM (SELECT t2.drugname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, medication.drugstarttime FROM medication JOIN patient ON medication.patientunitstayid = patient.patientunitstayid WHERE medication.drugname = 'famotidine (pf)' AND DATETIME(medication.drugstartt... |
tell me the birth date and long title of diagnoses of patient jerry deberry. | 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.dob, diagnoses.long_title FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.name = "Jerry Deberry" |
what is the number of patients who had rash as primary disease and died in 2155 or before that? | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethni... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "RASH" AND demographic.dod_year <= "2155.0" |
what is the number of patients whose ethnicity is black/haitian and item id is 50904? | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.ethnicity = "BLACK/HAITIAN" AND lab.itemid = "50904" |
what were the three most frequently given specimen tests for patients who have previously been diagnosed with cardiac dysrhythmias nec within 2 months,? | CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE microbiologyevents (row_id number,subject_id number,had... | SELECT t3.spec_type_desc FROM (SELECT t2.spec_type_desc, 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 = admissions.hadm_id WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_... |
Find the id and local authority of the station whose maximum precipitation is higher than 50 Visualize by bar chart, and display by the id in asc. | CREATE TABLE train (id int,train_number int,name text,origin text,destination text,time text,interval text)CREATE TABLE station (id int,network_name text,services text,local_authority text)CREATE TABLE route (train_id int,station_id int)CREATE TABLE weekly_weather (station_id int,day_of_week text,high_temperature int,l... | SELECT local_authority, id FROM weekly_weather AS t1 JOIN station AS t2 ON t1.station_id = t2.id ORDER BY id |
How many people live where there are 118% of people have phones? | CREATE TABLE table_name_88 (population VARCHAR,_number_of_phones_as__percentage_of_population VARCHAR) | SELECT population FROM table_name_88 WHERE _number_of_phones_as__percentage_of_population = 118 |
what was the largest attendance at kardinia park? | CREATE TABLE table_name_74 (crowd INTEGER,venue VARCHAR) | SELECT MAX(crowd) FROM table_name_74 WHERE venue = "kardinia park" |
Post Views Histogram (Regular Scale). | CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE Comments (Id number,PostId number,Score number,Text text,CreationDate time,UserDisplayName text,UserI... | WITH PostScores AS (SELECT p.ViewCount, p.PostTypeId, COUNT(*) * 1.0 AS PostCount FROM Posts AS p WHERE p.PostTypeId IN (1) AND ClosedDate IS NULL AND DATEDIFF(day, p.CreationDate, GETDATE()) > '##minAge:int?7##' GROUP BY ViewCount, p.PostTypeId) SELECT ViewCount, CASE WHEN PostTypeId = '1' THEN 'Questions' ELSE 'Answe... |
On what date was the result Eng by 1 wkt? | CREATE TABLE table_name_79 (date VARCHAR,result VARCHAR) | SELECT date FROM table_name_79 WHERE result = "eng by 1 wkt" |
for each winning game , what was their score ? | CREATE TABLE table_203_750 (id number,"#" number,"date" text,"venue" text,"opponent" text,"score" text,"result" text,"competition" text) | SELECT "score" FROM table_203_750 WHERE "result" = 'win' |
How many years did barclay nordica arrows bmw enter with a bmw str-4 t/c engine with less than 1 point? | CREATE TABLE table_70405 ("Year" real,"Entrant" text,"Chassis" text,"Engine" text,"Points" real) | SELECT SUM("Year") FROM table_70405 WHERE "Engine" = 'bmw str-4 t/c' AND "Entrant" = 'barclay nordica arrows bmw' AND "Points" < '1' |
What was the date of the Capitals game when Columbus was the home team? | CREATE TABLE table_52232 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Decision" text,"Attendance" real,"Record" text) | SELECT "Date" FROM table_52232 WHERE "Home" = 'columbus' |
Show the name and population of the country that has the highest roller coaster. | CREATE TABLE roller_coaster (Country_ID VARCHAR,Height VARCHAR)CREATE TABLE country (Name VARCHAR,population VARCHAR,Country_ID VARCHAR) | SELECT T1.Name, T1.population FROM country AS T1 JOIN roller_coaster AS T2 ON T1.Country_ID = T2.Country_ID ORDER BY T2.Height DESC LIMIT 1 |
When did the w 20-19 happen? | CREATE TABLE table_name_72 (date VARCHAR,result VARCHAR) | SELECT date FROM table_name_72 WHERE result = "w 20-19" |
How many instructors are in each department? Show me a bar chart, sort by the x axis in asc. | CREATE TABLE classroom (building varchar(15),room_number varchar(7),capacity numeric(4,0))CREATE TABLE instructor (ID varchar(5),name varchar(20),dept_name varchar(20),salary numeric(8,2))CREATE TABLE section (course_id varchar(8),sec_id varchar(8),semester varchar(6),year numeric(4,0),building varchar(15),room_number ... | SELECT T1.dept_name, COUNT(DISTINCT T3.ID) FROM department AS T1 JOIN student AS T2 ON T1.dept_name = T2.dept_name JOIN instructor AS T3 ON T1.dept_name = T3.dept_name ORDER BY T1.dept_name |
Is an Scientific Writing lab planned for this year ? | CREATE TABLE student (student_id int,lastname varchar,firstname varchar,program_id int,declare_major varchar,total_credit int,total_gpa float,entered_as varchar,admit_term int,predicted_graduation_semester int,degree varchar,minor varchar,internship varchar)CREATE TABLE comment_instructor (instructor_id int,student_id ... | SELECT COUNT(*) > 0 FROM course, course_offering, semester WHERE (course.description LIKE '%lab%' OR course.name LIKE '%lab%') AND (course.description LIKE '%Scientific Writing%' OR course.name LIKE '%Scientific Writing%') AND course.course_id = course_offering.course_id AND semester.semester_id = course_offering.semes... |
What example for did- is shown for a Consonant final stem of -i, and a Noun example: datv- of datv-it? | CREATE TABLE table_8902 ("Consonant final stem" text,"Example: did-" text,"Vowel final stem" text,"Example: ch'aghara-" text,"Noun example: datv-" text) | SELECT "Example: did-" FROM table_8902 WHERE "Consonant final stem" = '-i' AND "Noun example: datv-" = 'datv-it' |
What's the lowest ranking source of copper, copper ore, concentrated and leached? | CREATE TABLE table_79972 ("Rank" real,"Mine" text,"County" text,"Operator" text,"Source of copper" text,"2012 Cu Production (lbs)" real) | SELECT MIN("Rank") FROM table_79972 WHERE "Source of copper" = 'copper ore, concentrated and leached' |
For those employees who do not work in departments with managers that have ids between 100 and 200, return a bar chart about the distribution of last_name and employee_id . | CREATE TABLE countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))CREATE TABLE departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_ID decimal(4,0))CREATE TABLE locations (LOCATION_ID decimal(4,0),STREET_ADDRESS varchar(40),POSTAL_CODE varchar... | SELECT LAST_NAME, EMPLOYEE_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) |
What is the Outcome of the Match played after 2003 with a Score of 6 0, 6 3? | CREATE TABLE table_65594 ("Outcome" text,"Year" real,"Championship" text,"Surface" text,"Partner" text,"Opponents" text,"Score" text) | SELECT "Outcome" FROM table_65594 WHERE "Year" > '2003' AND "Score" = '6–0, 6–3' |
What is the Original artist when the week number is top 9? | CREATE TABLE table_7249 ("Week #" text,"Theme" text,"Song choice" text,"Original artist" text,"Order #" text,"Result" text) | SELECT "Original artist" FROM table_7249 WHERE "Week #" = 'top 9' |
the nationals sa and independent party make up what percentage of votes ? | CREATE TABLE table_203_494 (id number,"party" text,"votes" number,"%" number,"swing" number,"seats" number,"change" number) | SELECT SUM("%") FROM table_203_494 WHERE "party" IN ('nationals sa', 'independent') |
has patient 77676 ever had any surgery until 1 year ago? | 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 d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type text,event_id numbe... | SELECT COUNT(*) > 0 FROM procedures_icd WHERE procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 77676) AND DATETIME(procedures_icd.charttime) <= DATETIME(CURRENT_TIME(), '-1 year') |
Show budget type codes and the number of documents in each budget type with a bar chart, could you sort by the the total number from low to high? | CREATE TABLE Documents_with_Expenses (Document_ID INTEGER,Budget_Type_Code CHAR(15),Document_Details VARCHAR(255))CREATE TABLE Ref_Document_Types (Document_Type_Code CHAR(15),Document_Type_Name VARCHAR(255),Document_Type_Description VARCHAR(255))CREATE TABLE Projects (Project_ID INTEGER,Project_Details VARCHAR(255))CRE... | SELECT Budget_Type_Code, COUNT(*) FROM Documents_with_Expenses GROUP BY Budget_Type_Code ORDER BY COUNT(*) |
How many accounts are opened in each year? Show a line chart, and list by the X-axis from low to high. | CREATE TABLE Order_Items (order_item_id INTEGER,order_id INTEGER,product_id INTEGER,product_quantity VARCHAR(50),other_order_item_details VARCHAR(255))CREATE TABLE Invoice_Line_Items (order_item_id INTEGER,invoice_number INTEGER,product_id INTEGER,product_title VARCHAR(80),product_quantity VARCHAR(50),product_price DEC... | SELECT date_account_opened, COUNT(date_account_opened) FROM Accounts ORDER BY date_account_opened |
On what date did the Pistons play @ toronto? | CREATE TABLE table_25366 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text) | SELECT "Date" FROM table_25366 WHERE "Team" = '@ Toronto' |
What is the Placement when the Votes are fewer than 208, and when the Candidate is Jordan Turner? | CREATE TABLE table_15439 ("Riding" text,"Province" text,"Candidate" text,"Votes" real,"Placement" text) | SELECT "Placement" FROM table_15439 WHERE "Votes" < '208' AND "Candidate" = 'jordan turner' |
Give me a bar chart for how many grape of each grape, and I want to order by the bars in descending. | CREATE TABLE grapes (ID INTEGER,Grape TEXT,Color TEXT)CREATE TABLE appellations (No INTEGER,Appelation TEXT,County TEXT,State TEXT,Area TEXT,isAVA TEXT)CREATE TABLE wine (No INTEGER,Grape TEXT,Winery TEXT,Appelation TEXT,State TEXT,Name TEXT,Year INTEGER,Price INTEGER,Score INTEGER,Cases INTEGER,Drink TEXT) | SELECT Grape, COUNT(Grape) FROM wine GROUP BY Grape ORDER BY Grape DESC |
what is the name of procedure patient 4368 has been given two times in 06/2105? | CREATE TABLE procedures_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,st... | 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, COUNT(procedures_icd.charttime) AS c1 FROM procedures_icd WHERE procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 436... |
Name the total fat which has a polyunsaturated fat of 11g and monounsaturated fat of 45g | CREATE TABLE table_name_60 (total_fat VARCHAR,polyunsaturated_fat VARCHAR,monounsaturated_fat VARCHAR) | SELECT total_fat FROM table_name_60 WHERE polyunsaturated_fat = "11g" AND monounsaturated_fat = "45g" |
Display a bar chart for how many products are there for each manufacturer?, and order in asc by the names. | 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, COUNT(*) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T2.Name ORDER BY T2.Name |
what score was on february 21 | CREATE TABLE table_name_18 (score VARCHAR,february VARCHAR) | SELECT score FROM table_name_18 WHERE february = 21 |
Compare the total number of each fate with a bar chart, could you show by the the number of fate in desc? | CREATE TABLE ship (Ship_ID int,Name text,Type text,Nationality text,Tonnage int)CREATE TABLE mission (Mission_ID int,Ship_ID int,Code text,Launched_Year int,Location text,Speed_knots int,Fate text) | SELECT Fate, COUNT(Fate) FROM mission GROUP BY Fate ORDER BY COUNT(Fate) DESC |
What is the margin for the Masters Tournament (2) championship? | CREATE TABLE table_55823 ("Year" real,"Championship" text,"54 holes" text,"Winning score" text,"Margin" text,"Runner(s)-up" text) | SELECT "Margin" FROM table_55823 WHERE "Championship" = 'masters tournament (2)' |
which type of drug has been given to kelly gallardo? | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE diagnoses (subject_id text,hadm_id tex... | SELECT prescriptions.drug_type FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.name = "Kelly Gallardo" |
what was the crowd when the scores are 10.12 (72) 8.11 (59)? | CREATE TABLE table_1139835_1 (crowd INTEGER,scores VARCHAR) | SELECT MAX(crowd) FROM table_1139835_1 WHERE scores = "10.12 (72) – 8.11 (59)" |
Plot the average of salary by grouped by hire date as a bar graph | 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 HIRE_DATE, AVG(SALARY) FROM employees |
Who was the team captain of the Bolton Wanderers? | CREATE TABLE table_70933 ("Team" text,"Manager 1" text,"Captain" text,"Kit manufacturer" text,"Shirt sponsor" text) | SELECT "Captain" FROM table_70933 WHERE "Team" = 'bolton wanderers' |
What is the driver for the team whose primary sponsor is Quicken Loans / Haas Automation? | CREATE TABLE table_17740 ("Team" text,"Car(s)" text,"#" real,"Driver(s)" text,"Primary Sponsor(s)" text,"Owner(s)" text,"Crew Chief" text) | SELECT "Driver(s)" FROM table_17740 WHERE "Primary Sponsor(s)" = 'Quicken Loans / Haas Automation' |
What kind of report was for the game played on 29 November with Melbourne Tigers being the away team? | CREATE TABLE table_44791 ("Date" text,"Home team" text,"Score" text,"Away team" text,"Venue" text,"Box Score" text,"Report" text) | SELECT "Report" FROM table_44791 WHERE "Date" = '29 november' AND "Away team" = 'melbourne tigers' |
yes or no for the adelaide with no for auckland, yes for melbourne, yes for the gold coast? | CREATE TABLE table_name_97 (adelaide VARCHAR,gold_coast VARCHAR,auckland VARCHAR,melbourne VARCHAR) | SELECT adelaide FROM table_name_97 WHERE auckland = "no" AND melbourne = "yes" AND gold_coast = "yes" |
What is the top rank with a time of 2:19.86? | CREATE TABLE table_14697 ("Rank" real,"Heat" real,"Lane" real,"Name" text,"Nationality" text,"Time" text) | SELECT MAX("Rank") FROM table_14697 WHERE "Time" = '2:19.86' |
how many urgent hospital admission patients had open reduction of femur fracture with internal fixation? | 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 text,icd9_code text,short_title text,long_title text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,sho... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admission_type = "URGENT" AND procedures.short_title = "Open reduc-int fix femur" |
For those employees who do not work in departments with managers that have ids between 100 and 200, return a bar chart about the distribution of job_id and department_id , could you order by the DEPARTMENT_ID in asc please? | CREATE TABLE departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_ID decimal(4,0))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 jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN... | SELECT JOB_ID, DEPARTMENT_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY DEPARTMENT_ID |
Which Venue has an Away team score of 13.12 (90)? | CREATE TABLE table_56138 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Venue" FROM table_56138 WHERE "Away team score" = '13.12 (90)' |
Which driver has 45 laps? | CREATE TABLE table_name_92 (driver VARCHAR,laps VARCHAR) | SELECT driver FROM table_name_92 WHERE laps = 45 |
Most common display names. | CREATE TABLE PostTags (PostId number,TagId number)CREATE TABLE Tags (Id number,TagName text,Count number,ExcerptPostId number,WikiPostId number)CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,CreationDate time,RejectionReasonId number,Comment text)CREATE TABLE PostLinks (Id n... | SELECT DisplayName, COUNT(DisplayName) AS N FROM Users GROUP BY DisplayName ORDER BY N DESC LIMIT 100 |
In the 2010 season what club has 0 goals and more than 0 Apps? | CREATE TABLE table_54476 ("National team" text,"Club" text,"Season" text,"Apps" real,"Goals" real) | SELECT "Club" FROM table_54476 WHERE "Goals" = '0' AND "Apps" > '0' AND "Season" = '2010' |
Who's the opposition at westpac stadium when the attendance is 31,853? | CREATE TABLE table_11996 ("Date" text,"Round" text,"Attendance" text,"Opposition" text,"Stadium" text) | SELECT "Opposition" FROM table_11996 WHERE "Stadium" = 'westpac stadium' AND "Attendance" = '31,853' |
Tell me the sum of draws for position less than 15 with played more than 38 | CREATE TABLE table_53940 ("Position" real,"Club" text,"Played" real,"Points" text,"Wins" real,"Draws" real,"Losses" real,"Goals for" real,"Goals against" real,"Goal Difference" real) | SELECT SUM("Draws") FROM table_53940 WHERE "Position" < '15' AND "Played" > '38' |
provide the number of patients whose discharge location is home health care and procedure long title is percutaneous abdominal drainage? | CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.discharge_location = "HOME HEALTH CARE" AND procedures.long_title = "Percutaneous abdominal drainage" |
what is the score for the tournament cagnes-sur-mer? | CREATE TABLE table_13952 ("Date" text,"Tournament" text,"Surface" text,"Opponent in the final" text,"Score" text) | SELECT "Score" FROM table_13952 WHERE "Tournament" = 'cagnes-sur-mer' |
List the number of the name of physicians who took some appointment, could you display X-axis in desc order please? | CREATE TABLE Procedures (Code INTEGER,Name VARCHAR(30),Cost REAL)CREATE TABLE Nurse (EmployeeID INTEGER,Name VARCHAR(30),Position VARCHAR(30),Registered BOOLEAN,SSN INTEGER)CREATE TABLE Undergoes (Patient INTEGER,Procedures INTEGER,Stay INTEGER,DateUndergoes DATETIME,Physician INTEGER,AssistingNurse INTEGER)CREATE TABL... | SELECT Name, COUNT(Name) FROM Appointment AS T1 JOIN Physician AS T2 ON T1.Physician = T2.EmployeeID GROUP BY Name ORDER BY Name DESC |
What is Robert Allenby's average to par score? | CREATE TABLE table_name_88 (to_par INTEGER,player VARCHAR) | SELECT AVG(to_par) FROM table_name_88 WHERE player = "robert allenby" |
Top 200 Users in Ohio. | CREATE TABLE PostNoticeTypes (Id number,ClassId number,Name text,Body text,IsHidden boolean,Predefined boolean,PostNoticeDurationId number)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance text,MarkdownPostOwnerGuidan... | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation, Location FROM Users WHERE LOWER(Location) LIKE '%oh%' OR LOWER(Location) LIKE '%ohio%' ORDER BY Reputation DESC LIMIT 200 |
What is Date, when Format is Vinyl, and when Label is Mercury? | CREATE TABLE table_name_65 (date VARCHAR,format VARCHAR,label VARCHAR) | SELECT date FROM table_name_65 WHERE format = "vinyl" AND label = "mercury" |
when did patient 021-49082 get a lab test for the first time? | CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE patient (uniquepid text,patienthealthsy... | SELECT lab.labresulttime FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '021-49082')) ORDER BY lab.labresulttime LIMIT 1 |
What is the to par of Philip Parkin? | CREATE TABLE table_60489 ("Place" text,"Player" text,"Country" text,"Score" real,"To par" text) | SELECT "To par" FROM table_60489 WHERE "Player" = 'philip parkin' |
Kimball, toby toby kimball is a player; How many times at school/ club team/country was the player present? | CREATE TABLE table_17145 ("Player" text,"No.(s)" text,"Height in Ft." text,"Position" text,"Years for Rockets" text,"School/Club Team/Country" text) | SELECT COUNT("School/Club Team/Country") FROM table_17145 WHERE "Player" = 'Kimball, Toby Toby Kimball' |
which Category has a Result of nominated, and a Lost to of jennifer westfeldt ( kissing jessica stein )? | CREATE TABLE table_64080 ("Year" real,"Category" text,"Film" text,"Result" text,"Lost to" text) | SELECT "Category" FROM table_64080 WHERE "Result" = 'nominated' AND "Lost to" = 'jennifer westfeldt ( kissing jessica stein )' |
What rank was Lassi Karonen? | CREATE TABLE table_name_9 (rank VARCHAR,athlete VARCHAR) | SELECT COUNT(rank) FROM table_name_9 WHERE athlete = "lassi karonen" |
get me the number of urgent hospital admission patients who stayed in hospital for more than 3 days. | 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 WHERE demographic.admission_type = "URGENT" AND demographic.days_stay > "3" |
How high did Arnold Palmer score in 1962? | CREATE TABLE table_15708 ("Place" text,"Player" text,"Country" text,"Score" real,"To par" text) | SELECT MAX("Score") FROM table_15708 WHERE "Player" = 'arnold palmer' |
What GSR class is associated with a 0-4-2t type? | CREATE TABLE table_name_49 (gsr_class VARCHAR,type VARCHAR) | SELECT gsr_class FROM table_name_49 WHERE type = "0-4-2t" |
What were the blocks per game in the selection where the field goal percentage was .594 (2nd)? | CREATE TABLE table_25774493_3 (blocks_per_game VARCHAR,field_goal_percentage VARCHAR) | SELECT blocks_per_game FROM table_25774493_3 WHERE field_goal_percentage = ".594 (2nd)" |
Provide the number of patients diagnosed with bowel obstruction whose lab test fluid is blood. | 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.diagnosis = "BOWEL OBSTRUCTION" AND lab.fluid = "Blood" |
What time slot is the episode 'the way we weren't' in | CREATE TABLE table_16560 ("#" real,"Episode" text,"Air Date" text,"Time slot (EST)" text,"Rating" text,"Share" real,"18-49 (Rating/Share)" text,"Viewers (m)" text,"Rank (Overall)" text) | SELECT "Time slot (EST)" FROM table_16560 WHERE "Episode" = 'The Way We Weren''t' |
Result F A of 2 0 had what group position? | CREATE TABLE table_name_80 (group_position VARCHAR,result_f_a VARCHAR) | SELECT group_position FROM table_name_80 WHERE result_f_a = "2–0" |
what is maximum age of patients whose marital status is single and primary disease is hypoxia? | 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 MAX(demographic.age) FROM demographic WHERE demographic.marital_status = "SINGLE" AND demographic.diagnosis = "HYPOXIA" |
A scatter chart shows the correlation between Team_ID and School_ID . | CREATE TABLE university (School_ID int,School text,Location text,Founded real,Affiliation text,Enrollment real,Nickname text,Primary_conference text)CREATE TABLE basketball_match (Team_ID int,School_ID int,Team_Name text,ACC_Regular_Season text,ACC_Percent text,ACC_Home text,ACC_Road text,All_Games text,All_Games_Perce... | SELECT Team_ID, School_ID FROM basketball_match |
Name the avg finish for position of 70th | CREATE TABLE table_2762 ("Year" real,"Starts" real,"Wins" real,"Top 5" real,"Top 10" real,"Poles" real,"Avg. Start" text,"Avg. Finish" text,"Winnings" text,"Position" text,"Team(s)" text) | SELECT "Avg. Finish" FROM table_2762 WHERE "Position" = '70th' |
What was the duration of Daniela Ryf's swimming stage? | CREATE TABLE table_17085947_32 (swim__15km_ VARCHAR,athlete VARCHAR) | SELECT swim__15km_ FROM table_17085947_32 WHERE athlete = "Daniela Ryf" |
count the number of patients whose admission year is less than 2158 and procedure short title is inject ca chemother nec? | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethni... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admityear < "2158" AND procedures.short_title = "Inject ca chemother NEC" |
Which club has a capacity of 25138? | CREATE TABLE table_name_4 (club VARCHAR,capacity VARCHAR) | SELECT club FROM table_name_4 WHERE capacity = "25138" |
What year was the player pick number 15 picked? | CREATE TABLE table_name_23 (year VARCHAR,pick VARCHAR) | SELECT year FROM table_name_23 WHERE pick = "15" |
What race occurred on the date of 15 June? | CREATE TABLE table_name_74 (race VARCHAR,date VARCHAR) | SELECT race FROM table_name_74 WHERE date = "15 june" |
How many available hotels are there in total? | CREATE TABLE HOTELS (Id VARCHAR) | SELECT COUNT(*) FROM HOTELS |
What is Kerry J. Donley's First Election date? | CREATE TABLE table_name_23 (first_election VARCHAR,name VARCHAR) | SELECT first_election FROM table_name_23 WHERE name = "kerry j. donley" |
Find the login name of the course author that teaches the course with name 'advanced database'. | CREATE TABLE Course_Authors_and_Tutors (login_name VARCHAR,author_id VARCHAR)CREATE TABLE Courses (author_id VARCHAR,course_name VARCHAR) | SELECT T1.login_name FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T2.course_name = "advanced database" |
Who was the first elected for the republican party? | CREATE TABLE table_60809 ("District" text,"Incumbent" text,"Party" text,"First elected" real,"Results" text) | SELECT "First elected" FROM table_60809 WHERE "Party" = 'republican' |
what is the time when the laps is less than 21 and the grid is more than 17? | CREATE TABLE table_44333 ("Rider" text,"Manufacturer" text,"Laps" real,"Time" text,"Grid" real) | SELECT "Time" FROM table_44333 WHERE "Laps" < '21' AND "Grid" > '17' |
what is the number of patients whose diagnoses icd9 code is v1083 and lab test fluid is other body fluid? | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.icd9_code = "V1083" AND lab.fluid = "Other Body Fluid" |
When the grid number is 10, what is the total number of laps? | CREATE TABLE table_name_39 (laps VARCHAR,grid VARCHAR) | SELECT COUNT(laps) FROM table_name_39 WHERE grid = 10 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.