instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
Which Occupation has a Rank of 5th, a Gender of M, with a Residence of orono? | CREATE TABLE table_69029 ("Riding" text,"Candidate's Name" text,"Gender" text,"Residence" text,"Occupation" text,"Votes" real,"Rank" text) | SELECT "Occupation" FROM table_69029 WHERE "Rank" = '5th' AND "Gender" = 'm' AND "Residence" = 'orono' |
Which type has 140 made? | CREATE TABLE table_name_79 (type VARCHAR,quantity VARCHAR) | SELECT type FROM table_name_79 WHERE quantity = "140" |
how many million u.s. viewers watched the episode directed by dan lerner? | CREATE TABLE table_28232 ("No. in series" real,"No. in season" real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Production code" text,"U.S. viewers (million)" text) | SELECT "U.S. viewers (million)" FROM table_28232 WHERE "Directed by" = 'Dan Lerner' |
Who was the rider with a grid of 36? | CREATE TABLE table_41270 ("Rider" text,"Bike" text,"Laps" real,"Time" text,"Grid" real) | SELECT "Rider" FROM table_41270 WHERE "Grid" = '36' |
What is the id of the product that is booked for 3 times? | CREATE TABLE discount_coupons (coupon_id number,date_issued time,coupon_amount number)CREATE TABLE view_product_availability (product_id number,booking_id number,status_date time,available_yn text)CREATE TABLE payments (payment_id number,booking_id number,customer_id number,payment_type_code text,amount_paid_in_full_yn... | SELECT product_id FROM products_booked GROUP BY product_id HAVING COUNT(*) = 3 |
please show me CO flights from SAN FRANCISCO to PITTSBURGH on friday | CREATE TABLE airport (airport_code varchar,airport_name text,airport_location text,state_code varchar,country_name varchar,time_zone_code varchar,minimum_connect_time int)CREATE TABLE time_interval (period text,begin_time int,end_time int)CREATE TABLE days (days_code varchar,day_name varchar)CREATE TABLE dual_carrier (... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE ((CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'PITTSBURGH' AND date_day.day_number = 25 AND date_day.month_number = 6 A... |
How many people are women's singles in the season of 2000/01? | CREATE TABLE table_28211988_1 (womens_singles VARCHAR,season VARCHAR) | SELECT COUNT(womens_singles) FROM table_28211988_1 WHERE season = "2000/01" |
What is the name of member in charge of greatest number of events? | CREATE TABLE member (member_id number,member_name text,party_id text,in_office text)CREATE TABLE party_events (event_id number,event_name text,party_id number,member_in_charge_id number)CREATE TABLE party (party_id number,minister text,took_office text,left_office text,region_id number,party_name text)CREATE TABLE regi... | SELECT T1.member_name FROM member AS T1 JOIN party_events AS T2 ON T1.member_id = T2.member_in_charge_id GROUP BY T2.member_in_charge_id ORDER BY COUNT(*) DESC LIMIT 1 |
What is the highest place of a song by Henri D s that has fewer than 8 points? | CREATE TABLE table_name_6 (place INTEGER,artist VARCHAR,points VARCHAR) | SELECT MAX(place) FROM table_name_6 WHERE artist = "henri dès" AND points < 8 |
provide the number of patients whose age is less than 74 and drug code is neut? | 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 INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.age < "74" AND prescriptions.formulary_drug_cd = "NEUT" |
What is the percentage of all the literate people where females are 73.17? | CREATE TABLE table_19426 ("State/UT Code" real,"India/State/UT" text,"Literate Persons (%)" text,"Males (%)" text,"Females (%)" text) | SELECT "Literate Persons (%)" FROM table_19426 WHERE "Females (%)" = '73.17' |
Which county did the player with a total of 294 represent? | CREATE TABLE table_66651 ("Player" text,"Country" text,"Year(s) won" text,"Total" real,"To par" text,"Finish" text) | SELECT "Country" FROM table_66651 WHERE "Total" = '294' |
What was the name of the couple if the number of dances is 6? | CREATE TABLE table_73569 ("Rank by average" real,"Place" real,"Couple" text,"Number Of Dances" real,"Total Points Earned" real,"Average" text) | SELECT "Couple" FROM table_73569 WHERE "Number Of Dances" = '6' |
Which competition took place at Stade Fernand Fournier, Arles? | CREATE TABLE table_52234 ("Date" text,"Venue" text,"Score" text,"Result" text,"Competition" text) | SELECT "Competition" FROM table_52234 WHERE "Venue" = 'stade fernand fournier, arles' |
Get Vote Data for Posts. | CREATE TABLE ReviewTaskResultTypes (Id number,Name text,Description text)CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE SuggestedEdits (Id number,PostId number,CreationDate time,ApprovalDate time,RejectionDate time,Own... | SELECT v.UserId, vt.Name, COUNT(*) FROM Posts AS p INNER JOIN Votes AS v ON v.PostId = p.Id INNER JOIN VoteTypes AS vt ON v.VoteTypeId = vt.Id WHERE p.OwnerUserId = 154486 GROUP BY vt.Name, v.UserId |
During the next 6 semesters which classes will be offered ? | CREATE TABLE program_course (program_id int,course_id int,workload int,category varchar)CREATE TABLE comment_instructor (instructor_id int,student_id int,score int,comment_text varchar)CREATE TABLE course_offering (offering_id int,course_id int,semester int,section_number int,start_time time,end_time time,monday varcha... | SELECT DISTINCT course.name, course.number, semester.semester, semester.year FROM course, course_offering, semester WHERE ((semester.semester = 'FA' AND semester.year = 2016) OR (semester.semester = 'FA' AND semester.year = 2017) OR (semester.semester = 'FA' AND semester.year = 2018) OR (semester.semester = 'WN' AND se... |
what are all the rating with viewers (m) being 2.61 | CREATE TABLE table_13110459_2 (rating VARCHAR,viewers__m_ VARCHAR) | SELECT rating FROM table_13110459_2 WHERE viewers__m_ = "2.61" |
Draw a scatter chart about the correlation between Snatch and Total . | CREATE TABLE body_builder (Body_Builder_ID int,People_ID int,Snatch real,Clean_Jerk real,Total real)CREATE TABLE people (People_ID int,Name text,Height real,Weight real,Birth_Date text,Birth_Place text) | SELECT Snatch, Total FROM body_builder |
Show me a bar chart for what are the department names and how many employees work in each of them?, rank y axis from high to low order please. | CREATE TABLE regions (REGION_ID decimal(5,0),REGION_NAME varchar(25))CREATE TABLE countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))CREATE TABLE locations (LOCATION_ID decimal(4,0),STREET_ADDRESS varchar(40),POSTAL_CODE varchar(12),CITY varchar(30),STATE_PROVINCE varchar(25),COUNTRY_ID v... | SELECT DEPARTMENT_NAME, COUNT(*) FROM employees AS T1 JOIN departments AS T2 ON T1.DEPARTMENT_ID = T2.DEPARTMENT_ID GROUP BY DEPARTMENT_NAME ORDER BY COUNT(*) DESC |
What is the total points for the tean with 8 losses? | CREATE TABLE table_13015539_1 (points VARCHAR,lost VARCHAR) | SELECT COUNT(points) FROM table_13015539_1 WHERE lost = 8 |
how many players had a free transfer fee ? | CREATE TABLE table_203_237 (id number,"n" number,"p" text,"nat." text,"name" text,"age" number,"moving from" text,"type" text,"transfer\nwindow" text,"ends" number,"transfer\nfee" text) | SELECT COUNT("name") FROM table_203_237 WHERE "n" = 'free' |
how many female patients belong to black/african american ethnic background? | CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_fla... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.gender = "F" AND demographic.ethnicity = "BLACK/AFRICAN AMERICAN" |
what is the minimum attendance with score 8.16 (64) 8.12 (60) | CREATE TABLE table_10566855_1 (attendance INTEGER,score VARCHAR) | SELECT MIN(attendance) FROM table_10566855_1 WHERE score = "8.16 (64) – 8.12 (60)" |
US 269 leaving BOSTON at 1628 what is the arrival time in BALTIMORE | CREATE TABLE fare_basis (fare_basis_code text,booking_class text,class_type text,premium text,economy text,discounted text,night text,season text,basis_days text)CREATE TABLE dual_carrier (main_airline varchar,low_flight_number int,high_flight_number int,dual_airline varchar,service_name text)CREATE TABLE code_descript... | 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 (((flight.departure_time = 1628 AND flight.flight_number = 269) AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'BALTIMORE' AND flight.... |
Can you compare the account balances of customers with the letter 'a' in their names using a bar graph, and show from low to high by the y axis. | CREATE TABLE bank (branch_ID int,bname varchar(20),no_of_customers int,city varchar(10),state varchar(20))CREATE TABLE loan (loan_ID varchar(3),loan_type varchar(15),cust_ID varchar(3),branch_ID varchar(3),amount int)CREATE TABLE customer (cust_ID varchar(3),cust_name varchar(20),acc_type char(1),acc_bal int,no_of_loan... | SELECT cust_name, acc_bal FROM customer WHERE cust_name LIKE '%a%' ORDER BY acc_bal |
how many patients with primary pulmonary hypertension had a blood gas test by lab? | 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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.long_title = "Primary pulmonary hypertension" AND lab."CATEGORY" = "Blood Gas" |
When fm 97.3 is the frequency how many formats are there? | CREATE TABLE table_22417 ("Frequency" text,"Call sign" text,"Branding" text,"Format" text,"Owner" text,"Language/Rebroadcast" text) | SELECT COUNT("Format") FROM table_22417 WHERE "Frequency" = 'FM 97.3' |
in total what was the total amount of enteral tube intake: nasogastric nostril, l that patient 005-18714 had received on 01/26/2104? | CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,c... | SELECT SUM(intakeoutput.cellvaluenumeric) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '005-18714')) AND intakeoutput.celllabel = 'enter... |
Which Commenced operations have an Airline of valuair? | CREATE TABLE table_63850 ("Airline" text,"IATA" text,"ICAO" text,"Callsign" text,"Commenced operations" real) | SELECT "Commenced operations" FROM table_63850 WHERE "Airline" = 'valuair' |
list all the reviews by Niloofar | CREATE TABLE tip (tip_id int,business_id varchar,text longtext,user_id varchar,likes int,year int,month varchar)CREATE TABLE user (uid int,user_id varchar,name varchar)CREATE TABLE business (bid int,business_id varchar,name varchar,full_address varchar,city varchar,latitude varchar,longitude varchar,review_count bigint... | SELECT review.text FROM review, user WHERE user.name = 'Niloofar' AND user.user_id = review.user_id |
Which courses will be taught by Dr. Selena Smith next semester ? | CREATE TABLE requirement (requirement_id int,requirement varchar,college varchar)CREATE TABLE offering_instructor (offering_instructor_id int,offering_id int,instructor_id int)CREATE TABLE program_requirement (program_id int,category varchar,min_credit int,additional_req varchar)CREATE TABLE comment_instructor (instruc... | SELECT DISTINCT course.department, course.name, course.number FROM course, course_offering, instructor, offering_instructor, semester WHERE course.course_id = course_offering.course_id AND instructor.name LIKE '%Selena Smith%' AND offering_instructor.instructor_id = instructor.instructor_id AND offering_instructor.offe... |
Find the name of the dorm with the largest capacity. | CREATE TABLE dorm (dorm_name VARCHAR,student_capacity VARCHAR) | SELECT dorm_name FROM dorm ORDER BY student_capacity DESC LIMIT 1 |
What is the Theme of the coin with an Issue Price of $89.95? | CREATE TABLE table_name_95 (theme VARCHAR,issue_price VARCHAR) | SELECT theme FROM table_name_95 WHERE issue_price = "$89.95" |
What is the decile for Westminster Christian School with a state integrated authority? | CREATE TABLE table_name_55 (decile VARCHAR,authority VARCHAR,name VARCHAR) | SELECT decile FROM table_name_55 WHERE authority = "state integrated" AND name = "westminster christian school" |
Name the points for paulistano | CREATE TABLE table_72670 ("Position" real,"Team" text,"Points" real,"Played" real,"Won" real,"Drawn" real,"Lost" real,"For" real,"Against" real,"Difference" text) | SELECT "Points" FROM table_72670 WHERE "Team" = 'Paulistano' |
Show all role codes and the number of employees in each role by a bar chart, and sort by the the total number from high to low. | CREATE TABLE Ref_Document_Types (Document_Type_Code CHAR(15),Document_Type_Name VARCHAR(255),Document_Type_Description VARCHAR(255))CREATE TABLE Ref_Locations (Location_Code CHAR(15),Location_Name VARCHAR(255),Location_Description VARCHAR(255))CREATE TABLE Documents_to_be_Destroyed (Document_ID INTEGER,Destruction_Auth... | SELECT Role_Code, COUNT(*) FROM Employees GROUP BY Role_Code ORDER BY COUNT(*) DESC |
What is the sum of the League Cup smaller than 0? | CREATE TABLE table_name_39 (total INTEGER,league_cup INTEGER) | SELECT SUM(total) FROM table_name_39 WHERE league_cup < 0 |
provide the number of patients whose ethnicity is black/haitian and age is less than 85? | 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 demographic (subject_id text,hadm_id t... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.ethnicity = "BLACK/HAITIAN" AND demographic.age < "85" |
What is the average number of matches of leonardo in seasons after 1? | CREATE TABLE table_name_79 (matches INTEGER,name VARCHAR,seasons VARCHAR) | SELECT AVG(matches) FROM table_name_79 WHERE name = "leonardo" AND seasons > 1 |
Bin the hire date into Month interval, and then compute the average salary of employees in each month for a bar chart, note that just select those employees without the letter M in their first name, and sort the average of salary in asc order please. | 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 departments (DEPARTMENT_ID decimal(4,... | SELECT HIRE_DATE, AVG(SALARY) FROM employees WHERE NOT FIRST_NAME LIKE '%M%' ORDER BY AVG(SALARY) |
Return the dates of ceremony corresponding to music festivals that had the category 'Best Song' and result 'Awarded'. | CREATE TABLE volume (volume_id number,volume_issue text,issue_date text,weeks_on_top number,song text,artist_id number)CREATE TABLE music_festival (id number,music_festival text,date_of_ceremony text,category text,volume number,result text)CREATE TABLE artist (artist_id number,artist text,age number,famous_title text,f... | SELECT date_of_ceremony FROM music_festival WHERE category = "Best Song" AND result = "Awarded" |
what is the length (miles) when the east or north terminus is ne 2 in lincoln? | CREATE TABLE table_56778 ("County" text,"Name" text,"Length (miles)" real,"West or south terminus" text,"East or north terminus" text) | SELECT COUNT("Length (miles)") FROM table_56778 WHERE "East or north terminus" = 'ne 2 in lincoln' |
what is the number of opponents where the location is syracuse, ny? | CREATE TABLE table_23346303_3 (opponent VARCHAR,location VARCHAR) | SELECT COUNT(opponent) FROM table_23346303_3 WHERE location = "Syracuse, NY" |
when was the first time the respiration for patient 015-58787 was less than 29.0 today? | CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,cultur... | SELECT vitalperiodic.observationtime FROM vitalperiodic WHERE vitalperiodic.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '015-58787')) AND vitalperiodic.respiration < 29.0 A... |
What is the best top-5 when top-10 is 1 and there are more than 0 wins? | CREATE TABLE table_name_93 (top_5 INTEGER,top_10 VARCHAR,wins VARCHAR) | SELECT MAX(top_5) FROM table_name_93 WHERE top_10 = 1 AND wins > 0 |
Show all role codes and the number of employees in each role with a pie chart. | CREATE TABLE All_Documents (Document_ID INTEGER,Date_Stored DATETIME,Document_Type_Code CHAR(15),Document_Name CHAR(255),Document_Description CHAR(255),Other_Details VARCHAR(255))CREATE TABLE Ref_Locations (Location_Code CHAR(15),Location_Name VARCHAR(255),Location_Description VARCHAR(255))CREATE TABLE Documents_to_be_... | SELECT Role_Code, COUNT(*) FROM Employees GROUP BY Role_Code |
What average wheels has accounting as the type, with IBM Collection as the location? | CREATE TABLE table_76742 ("Location" text,"Country" text,"Type" text,"Wheels" real,"Configuration" text) | SELECT AVG("Wheels") FROM table_76742 WHERE "Type" = 'accounting' AND "Location" = 'ibm collection' |
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 last_name and employee_id , show in asc by the y-axis please. | CREATE TABLE job_history (EMPLOYEE_ID decimal(6,0),START_DATE date,END_DATE date,JOB_ID varchar(10),DEPARTMENT_ID decimal(4,0))CREATE TABLE regions (REGION_ID decimal(5,0),REGION_NAME varchar(25))CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAIL varchar(25),PHONE_NUMBER... | SELECT LAST_NAME, EMPLOYEE_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY EMPLOYEE_ID |
Which classes should I take to use toward my Core ? | CREATE TABLE course_offering (offering_id int,course_id int,semester int,section_number int,start_time time,end_time time,monday varchar,tuesday varchar,wednesday varchar,thursday varchar,friday varchar,saturday varchar,sunday varchar,has_final_project varchar,has_final_exam varchar,textbook varchar,class_address varch... | SELECT DISTINCT course.department, course.name, course.number FROM course, program_course WHERE program_course.category LIKE '%Core%' AND program_course.course_id = course.course_id |
Which school did player Rodney Purvis belong to? | CREATE TABLE table_name_32 (school VARCHAR,player VARCHAR) | SELECT school FROM table_name_32 WHERE player = "rodney purvis" |
Return the dates of birth for entrepreneurs who have either the investor Simon Woodroffe or Peter Jones, and count them by a line chart | CREATE TABLE people (People_ID int,Name text,Height real,Weight real,Date_of_Birth text)CREATE TABLE entrepreneur (Entrepreneur_ID int,People_ID int,Company text,Money_Requested real,Investor text) | SELECT Date_of_Birth, COUNT(Date_of_Birth) FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Investor = "Simon Woodroffe" OR T1.Investor = "Peter Jones" |
What is the sum of Blks, when Stls is 1, and when Rebs is greater than 8.6? | CREATE TABLE table_47326 ("Year" text,"Rebs" real,"Asts" real,"Stls" real,"Blks" real) | SELECT SUM("Blks") FROM table_47326 WHERE "Stls" = '1' AND "Rebs" > '8.6' |
Name the year for clay for boston and guillermo vilas | CREATE TABLE table_23235767_4 (year VARCHAR,opponent_in_the_final VARCHAR,surface VARCHAR,championship VARCHAR) | SELECT year FROM table_23235767_4 WHERE surface = "Clay" AND championship = "Boston" AND opponent_in_the_final = "Guillermo Vilas" |
What is the lowest week that has November 30, 2003 as the date? | CREATE TABLE table_name_19 (week INTEGER,date VARCHAR) | SELECT MIN(week) FROM table_name_19 WHERE date = "november 30, 2003" |
What is the total of the nation with 19.025 4 hoops, 2 clubs? | CREATE TABLE table_34378 ("Place" real,"Nation" text,"6 Ropes" real,"4 Hoops,2 Clubs" real,"Total" real) | SELECT "Total" FROM table_34378 WHERE "4 Hoops, 2 Clubs" = '19.025' |
give the number of patients who were admitted to the hospital before the year 2144 with 5720 as the diagnosis icd9 code. | 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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admityear < "2144" AND diagnoses.icd9_code = "5720" |
How many points does the year after 1986 with a AGS JH23B chassis have? | CREATE TABLE table_name_52 (points VARCHAR,year VARCHAR,chassis VARCHAR) | SELECT points FROM table_name_52 WHERE year > 1986 AND chassis = "ags jh23b" |
What type of Bridge is in Stanley? | CREATE TABLE table_45895 ("Name" text,"Listed" text,"Location" text,"County" text,"Type" text) | SELECT "Type" FROM table_45895 WHERE "Location" = 'stanley' |
how many times has patient 55360 been at the intensive care unit on this hospital encounter? | CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE chartevents (row_id numb... | SELECT COUNT(DISTINCT icustays.icustay_id) FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 55360 AND admissions.dischtime IS NULL) |
what's the party with brooklyn value of 51.0% | CREATE TABLE table_1108394_43 (party VARCHAR,brooklyn VARCHAR) | SELECT party FROM table_1108394_43 WHERE brooklyn = "51.0_percentage" |
When the attendance was 3188 what was the score? | CREATE TABLE table_name_78 (score VARCHAR,attendance VARCHAR) | SELECT score FROM table_name_78 WHERE attendance = 3188 |
What is the undecided percentage of the poll from Suffolk University with Murray at 11%? | CREATE TABLE table_name_80 (undecided VARCHAR,source VARCHAR,murray VARCHAR) | SELECT undecided FROM table_name_80 WHERE source = "suffolk university" AND murray = "11%" |
Who had the time of 1:23.32.41? | CREATE TABLE table_56872 ("Rank" real,"Rider" text,"Team" text,"Speed" text,"Time" text) | SELECT "Rider" FROM table_56872 WHERE "Time" = '1:23.32.41' |
when did patient 808 enter for the last time in the hospital since 2105? | CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE chartevents (row_id number,subject_id number,hadm_id number,icustay_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE admissions (row_id n... | SELECT admissions.admittime FROM admissions WHERE admissions.subject_id = 808 AND STRFTIME('%y', admissions.admittime) >= '2105' ORDER BY admissions.admittime DESC LIMIT 1 |
10 % of body surface area acute burn injury | CREATE TABLE table_train_46 ("id" int,"bleeding" int,"active_infection" bool,"hypotension" bool,"burn_injury" int,"hypertension" bool,"age" float,"NOUSE" float) | SELECT * FROM table_train_46 WHERE burn_injury > 10 |
Who constructed Chris Amon's car? | CREATE TABLE table_52647 ("Driver" text,"Constructor" text,"Laps" real,"Time/Retired" text,"Grid" real) | SELECT "Constructor" FROM table_52647 WHERE "Driver" = 'chris amon' |
What is the value in 1990 when it is A in 1989, 1985, and 1993? | CREATE TABLE table_name_45 (Id VARCHAR) | SELECT 1990 FROM table_name_45 WHERE 1989 = "a" AND 1985 = "a" AND 1993 = "a" |
how much vancomycin has been prescribed to patient 1784 in total? | CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE icustays (row_id number,subject_id number,hadm_id number,icustay_id number,first_careunit text,last_careunit text,first_wardid number,last_wardid number,intime time,outt... | SELECT SUM(prescriptions.dose_val_rx) FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 1784) AND prescriptions.drug = 'vancomycin' |
What's the circuit that had an event cancelled? | CREATE TABLE table_62740 ("Race Title" text,"Circuit" text,"City / State" text,"Date" text,"Winner" text) | SELECT "Circuit" FROM table_62740 WHERE "Winner" = 'event cancelled' |
when did patient 032-21820 first have a maximum value of respiration on this month/23? | CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature number,sao2 number,heartrate number,respiration number,systemicsystolic number,systemicdiastolic number,systemic... | SELECT vitalperiodic.observationtime FROM vitalperiodic WHERE vitalperiodic.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '032-21820')) AND NOT vitalperiodic.respiration IS N... |
Date of october 8 happened at what time? | CREATE TABLE table_69769 ("Game" real,"Date" text,"Location" text,"Time" text,"Attendance" real) | SELECT "Time" FROM table_69769 WHERE "Date" = 'october 8' |
Users active in the last fortnight. | CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)CREATE TABLE PostsWithDeleted (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score number,ViewCou... | SELECT Id AS "user_link", LastAccessDate FROM Users WHERE LastAccessDate > DATEDIFF(DAY, 1, GETDATE()) ORDER BY LastAccessDate |
Which Surface has a Tournament of st. petersburg , russia? | CREATE TABLE table_38574 ("Date" text,"Tournament" text,"Surface" text,"Opponent" text,"Score" text) | SELECT "Surface" FROM table_38574 WHERE "Tournament" = 'st. petersburg , russia' |
Answer count by post (2011). | CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE Badges (Id number,UserId number,Name text,Date time,Class number,TagBased boolean)CREATE TABLE Posts (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score num... | SELECT Id, CreationDate, CommunityOwnedDate, AnswerCount FROM Posts WHERE YEAR(CreationDate) = 2011 AND PostTypeId = 1 ORDER BY CreationDate |
what year had the highest total number ? | CREATE TABLE table_203_355 (id number,"year" number,"total" number,"romanians" text,"hungarians" text,"roma" text) | SELECT "year" FROM table_203_355 ORDER BY "total" DESC LIMIT 1 |
For each city, return the highest latitude among its stations. Show a pie chart. | CREATE TABLE station (id INTEGER,name TEXT,lat NUMERIC,long NUMERIC,dock_count INTEGER,city TEXT,installation_date TEXT)CREATE TABLE weather (date TEXT,max_temperature_f INTEGER,mean_temperature_f INTEGER,min_temperature_f INTEGER,max_dew_point_f INTEGER,mean_dew_point_f INTEGER,min_dew_point_f INTEGER,max_humidity INT... | SELECT city, MAX(lat) FROM station GROUP BY city |
has patient 013-33898 received a procedure of antihyperlipidemic agent - fenofibrate in 2105? | 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 COUNT(*) > 0 FROM treatment WHERE treatment.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '013-33898')) AND treatment.treatmentname = 'antihyperlipidemic agent - fenof... |
what is the largest evening gown amount ? | CREATE TABLE table_204_757 (id number,"state" text,"interview" number,"swimsuit" number,"evening gown" number,"average" number) | SELECT MAX("evening gown") FROM table_204_757 |
What is the number of party in the arkansas 1 district | CREATE TABLE table_18466 ("District" text,"Incumbent" text,"Party" text,"First elected" real,"Result" text,"Candidates" text) | SELECT COUNT("Party") FROM table_18466 WHERE "District" = 'Arkansas 1' |
On the Date of 2 Aug 2009, who was the Runner(s)-up? | CREATE TABLE table_name_52 (runner_s__up VARCHAR,date VARCHAR) | SELECT runner_s__up FROM table_name_52 WHERE date = "2 aug 2009" |
Who won bronze in 1994? | CREATE TABLE table_65134 ("Year" real,"Place" text,"Gold" text,"Silver" text,"Bronze" text) | SELECT "Bronze" FROM table_65134 WHERE "Year" = '1994' |
Show the name and number of employees for the departments managed by heads whose temporary acting value is 'Yes', could you rank by the names from low to high please? | CREATE TABLE management (department_ID int,head_ID int,temporary_acting text)CREATE TABLE head (head_ID int,name text,born_state text,age real)CREATE TABLE department (Department_ID int,Name text,Creation text,Ranking int,Budget_in_Billions real,Num_Employees real) | SELECT Name, SUM(Num_Employees) FROM department AS T1 JOIN management AS T2 ON T1.department_ID = T2.department_ID WHERE T2.temporary_acting = 'Yes' GROUP BY Name ORDER BY Name |
For those employees who was hired before 2002-06-21, show me about the distribution of job_id and the amount of job_id , and group by attribute job_id in a bar chart, rank names in ascending order. | CREATE TABLE jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN_SALARY decimal(6,0),MAX_SALARY decimal(6,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 employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME var... | SELECT JOB_ID, COUNT(JOB_ID) FROM employees WHERE HIRE_DATE < '2002-06-21' GROUP BY JOB_ID ORDER BY JOB_ID |
count the number of patients whose admission type is elective and lab test name is triglycer? | 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.admission_type = "ELECTIVE" AND lab.label = "Triglycer" |
Name the opponents for december 3 | CREATE TABLE table_23453931_5 (opponent VARCHAR,date VARCHAR) | SELECT COUNT(opponent) FROM table_23453931_5 WHERE date = "December 3" |
What day did the VFL pay MCG? | CREATE TABLE table_32879 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Date" FROM table_32879 WHERE "Venue" = 'mcg' |
Which athlete is ranked less than 5 with time over 11.22? | CREATE TABLE table_63942 ("Rank" real,"Lane" real,"Athlete" text,"Time (sec)" real,"Notes" text) | SELECT "Athlete" FROM table_63942 WHERE "Time ( sec )" > '11.22' AND "Rank" < '5' |
Name the original name for last days of the victim | CREATE TABLE table_name_97 (original_name VARCHAR,film_title_used_in_nomination VARCHAR) | SELECT original_name FROM table_name_97 WHERE film_title_used_in_nomination = "last days of the victim" |
give me the number of patients whose age is less than 31 and procedure icd9 code is 17? | 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 INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.age < "31" AND procedures.icd9_code = "17" |
compare usage of tag combinations: [excel] [vba] [excel-vba]. | CREATE TABLE CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance text,MarkdownPostOwnerGuidance text,MarkdownPrivilegedUserGuidance text,MarkdownConcensusDescription text,CreationDate time,CreationModeratorId number,ApprovalDate time,ApprovalModeratorId number,DeactivationDat... | SELECT 'EorV_hasEV' AS x, COUNT(Id) AS y FROM Posts WHERE (Tags LIKE '%<excel>%' OR Tags LIKE '%<vba>%') AND NOT Tags LIKE '%<excel-vba>%' |
what was the number of times hydromorphone 1 mg/1 ml syr was prescribed for patient 030-53416 in 06/this year? | 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 medication (medicationid number,patientunitstayid number,drugname text,dos... | SELECT COUNT(*) FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '030-53416')) AND medication.drugname = 'hydromorphone 1 mg/1 ml syr' AND DATET... |
What is the name of the third who has Barbora Vojtusova as Skip? | CREATE TABLE table_name_47 (third VARCHAR,skip VARCHAR) | SELECT third FROM table_name_47 WHERE skip = "barbora vojtusova" |
what is the imprint when the title is owari no chronicle (ahead series)? | CREATE TABLE table_9572 ("Year" real,"Character" text,"Title" text,"Author" text,"Artist" text,"Imprint" text) | SELECT "Imprint" FROM table_9572 WHERE "Title" = 'owari no chronicle (ahead series)' |
League Cup smaller than 0 is what sum of the total? | CREATE TABLE table_36285 ("Name" text,"Championship" real,"FA Cup" real,"League Cup" real,"Total" real) | SELECT SUM("Total") FROM table_36285 WHERE "League Cup" < '0' |
What about the average amounts of payments by each method code? You can give me a bar chart, display from high to low by the X. | CREATE TABLE Claims (Claim_ID INTEGER,Policy_ID INTEGER,Date_Claim_Made DATE,Date_Claim_Settled DATE,Amount_Claimed INTEGER,Amount_Settled INTEGER)CREATE TABLE Customers (Customer_ID INTEGER,Customer_Details VARCHAR(255))CREATE TABLE Payments (Payment_ID INTEGER,Settlement_ID INTEGER,Payment_Method_Code VARCHAR(255),Da... | SELECT Payment_Method_Code, AVG(Amount_Payment) FROM Payments GROUP BY Payment_Method_Code ORDER BY Payment_Method_Code DESC |
Which city of license has a wriq Call sign? | CREATE TABLE table_69059 ("Call sign" text,"Frequency MHz" real,"City of license" text,"ERP W" text,"Class" text,"FCC info" text) | SELECT "City of license" FROM table_69059 WHERE "Call sign" = 'wriq' |
What is Country, when HDTV is yes, and when Content is cinema? | CREATE TABLE table_name_29 (country VARCHAR,hdtv VARCHAR,content VARCHAR) | SELECT country FROM table_name_29 WHERE hdtv = "yes" AND content = "cinema" |
Visualize a bar chart for how films are produced by each studio?, list bar from low to high order. | CREATE TABLE film (Film_ID int,Title text,Studio text,Director text,Gross_in_dollar int)CREATE TABLE film_market_estimation (Estimation_ID int,Low_Estimate real,High_Estimate real,Film_ID int,Type text,Market_ID int,Year int)CREATE TABLE market (Market_ID int,Country text,Number_cities int) | SELECT Studio, COUNT(*) FROM film GROUP BY Studio ORDER BY Studio |
what was patient 002-58884's first time of lr intake on last month/14? | 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 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 = '002-58884')) AND intakeoutput.cellpath LIKE '%intake%... |
give me the number of patients whose diagnoses short title is choledochlith nos w obst? | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug tex... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE diagnoses.short_title = "Choledochlith NOS w obst" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.