instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
What is the total average for long 10? | CREATE TABLE table_56189 ("Player" text,"Rec." real,"Yards" real,"Avg." real,"TD's" real,"Long" real) | SELECT COUNT("Avg.") FROM table_56189 WHERE "Long" = '10' |
Who were the reporters for the 1977 Belmont Stakes? | CREATE TABLE table_25132 ("Year" real,"Network" text,"Race caller" text,"s Host" text,"s Analyst" text,"Reporters" text,"Trophy presentation" text) | SELECT "Reporters" FROM table_25132 WHERE "Year" = '1977' |
What was the date of the Ace Group Classic tournament with a 1 stroke margin of victory? | CREATE TABLE table_68004 ("Date" text,"Tournament" text,"Winning score" text,"Margin of victory" text,"Runner(s)-up" text) | SELECT "Date" FROM table_68004 WHERE "Margin of victory" = '1 stroke' AND "Tournament" = 'the ace group classic' |
what flights are there from NEWARK to TAMPA | CREATE TABLE dual_carrier (main_airline varchar,low_flight_number int,high_flight_number int,dual_airline varchar,service_name text)CREATE TABLE equipment_sequence (aircraft_code_sequence varchar,aircraft_code varchar)CREATE TABLE ground_service (city_code text,airport_code text,transport_type text,ground_fare int)CREA... | 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 = 'NEWARK' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'TAMPA' ... |
Which series number had the production code of 116 | CREATE TABLE table_15938543_1 (no_in_series VARCHAR,production_code VARCHAR) | SELECT no_in_series FROM table_15938543_1 WHERE production_code = 116 |
what is the total number of kickoff [a ] where week is week | CREATE TABLE table_226 ("Week" text,"Date" text,"Opponent" text,"Result" text,"Kickoff [a ]" text,"Game site" text,"TV" text,"Attendance" text,"Record" text) | SELECT COUNT("Kickoff [a ]") FROM table_226 WHERE "Week" = 'Week' |
Specify the total number of patients who had suture bladder lacerat and a death status of unspecified | 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.expire_flag = "0" AND procedures.short_title = "Suture bladder lacerat" |
how many patients are admitted under emergency and posess medicare insurance? | 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 COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.admission_type = "EMERGENCY" AND demographic.insurance = "Medicare" |
Which Species Specific has a Link of server/sourcecode? | CREATE TABLE table_36084 ("Name" text,"Species Specific" text,"Intra-molecular structure" text,"Comparative" text,"Link" text) | SELECT "Species Specific" FROM table_36084 WHERE "Link" = 'server/sourcecode' |
When through 2006 to 2007 the duration of one quarter is 3.4 what is it through 2007 to 2008? | CREATE TABLE table_22525 ("Term Abroad" text,"2000/01" text,"2001/02" text,"2002/03" text,"2003/04" text,"2004/05" text,"2005/06" text,"2006/07" text,"2007/08" text,"2008/09" text) | SELECT "2007/08" FROM table_22525 WHERE "2006/07" = '3.4' |
What's the percentage of EU average GDP (PPP) in the region where per capita is 2519 | CREATE TABLE table_25588 ("Region (NUTS 2006)" text,"Total (million \u20ac)" text,"\u20ac per capita (2005)" real,"PPP (million \u20ac)" real,"PPP \u20ac per capita" real,"% of EU average GDP (PPP)" text) | SELECT "% of EU average GDP (PPP)" FROM table_25588 WHERE "\u20ac per capita (2005)" = '2519' |
What is the evening gown score for the contestant from Mississippi? | CREATE TABLE table_name_4 (evening_gown VARCHAR,state VARCHAR) | SELECT evening_gown FROM table_name_4 WHERE state = "mississippi" |
What is the earliest year that a team event was included at Vilamoura, Portugal? | CREATE TABLE table_65842 ("Year" real,"Tournament" text,"Venue" text,"Result" text,"Event" text) | SELECT MIN("Year") FROM table_65842 WHERE "Event" = 'team' AND "Venue" = 'vilamoura, portugal' |
what is the name of the drug that was prescribed two or more times to patient 16992 in 02/2105? | 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 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,had... | 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 = 16992) AND STRFTIME('%y-%m', prescriptions.startdate) = '2105-02' GROUP BY prescriptions.drug) AS t1 WHERE t1.c1... |
In the Spring or Summer term are there 200 -level classes available to take ? | CREATE TABLE course (course_id int,name varchar,department varchar,number varchar,credits varchar,advisory_requirement varchar,enforced_requirement varchar,description varchar,num_semesters int,num_enrolled int,has_discussion varchar,has_lab varchar,has_projects varchar,has_exams varchar,num_reviews int,clarity_score i... | SELECT DISTINCT course.department, course.name, course.number, semester.semester FROM course, course_offering, semester WHERE course.course_id = course_offering.course_id AND course.department = 'EECS' AND course.number BETWEEN 200 AND 200 + 100 AND semester.semester IN ('SP', 'SS', 'SU') AND semester.semester_id = cou... |
Find the id and location of circuits that belong to France or Belgium. Plot them as bar chart. | CREATE TABLE drivers (driverId INTEGER,driverRef TEXT,number TEXT,code TEXT,forename TEXT,surname TEXT,dob TEXT,nationality TEXT,url TEXT)CREATE TABLE circuits (circuitId INTEGER,circuitRef TEXT,name TEXT,location TEXT,country TEXT,lat REAL,lng REAL,alt TEXT,url TEXT)CREATE TABLE races (raceId INTEGER,year INTEGER,roun... | SELECT location, circuitId FROM circuits WHERE country = "France" OR country = "Belgium" |
What was the away team that played the home team of Geelong? | CREATE TABLE table_name_49 (away_team VARCHAR,home_team VARCHAR) | SELECT away_team FROM table_name_49 WHERE home_team = "geelong" |
Name the number of date for shea stadium | CREATE TABLE table_14418812_1 (date VARCHAR,game_site VARCHAR) | SELECT COUNT(date) FROM table_14418812_1 WHERE game_site = "Shea Stadium" |
What is the lowest last quarter with a time of 1:53.2 and odds of *1.30? | CREATE TABLE table_name_30 (last_1_4 INTEGER,time VARCHAR,odds VARCHAR) | SELECT MIN(last_1_4) FROM table_name_30 WHERE time = "1:53.2" AND odds = "*1.30" |
What is the High assists with a Date that is february 27? | CREATE TABLE table_43000 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text) | SELECT "High assists" FROM table_43000 WHERE "Date" = 'february 27' |
What is the y = 2011 when the expression is month = floor ((d + e + 114) / 31)? | CREATE TABLE table_214479_8 (y_ VARCHAR,_2011 VARCHAR,expression VARCHAR,month VARCHAR,d VARCHAR,e VARCHAR) | SELECT y_ = _2011 FROM table_214479_8 WHERE expression = month = FLOOR((d + e + 114) / 31) |
Which artists have order number 6? | CREATE TABLE table_29756040_1 (original_artist VARCHAR,order__number VARCHAR) | SELECT original_artist FROM table_29756040_1 WHERE order__number = "6" |
What was the tier versus Annalisa bona? | CREATE TABLE table_71020 ("Date" text,"Tournament" text,"Surface" text,"Tier" text,"Opponent in the final" text,"Score" text) | SELECT "Tier" FROM table_71020 WHERE "Opponent in the final" = 'annalisa bona' |
Which party has a first elected of 1966, qld as the state, and donald milner cameron as the member? | CREATE TABLE table_6781 ("Member" text,"Party" text,"Electorate" text,"State" text,"First elected" text) | SELECT "Party" FROM table_6781 WHERE "First elected" = '1966' AND "State" = 'qld' AND "Member" = 'donald milner cameron' |
What did the away team score at Moorabbin Oval? | CREATE TABLE table_56114 ("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_56114 WHERE "Venue" = 'moorabbin oval' |
What is the home team score when north Melbourne was the away team? | CREATE TABLE table_52586 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Home team score" FROM table_52586 WHERE "Away team" = 'north melbourne' |
What is the smallest bronze with a Rank of 12, and a Silver smaller than 2? | CREATE TABLE table_14491 ("Rank" real,"Nation" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real) | SELECT MIN("Bronze") FROM table_14491 WHERE "Rank" = '12' AND "Silver" < '2' |
What is the traditional Chinese character set for the location that has an area of 181? | CREATE TABLE table_2170 ("English Name" text,"Simplified Chinese" text,"Traditional Chinese" text,"Pinyin" text,"Area" real,"Population" real,"Density" real) | SELECT "Traditional Chinese" FROM table_2170 WHERE "Area" = '181' |
Which team has driven 134 laps? | CREATE TABLE table_name_22 (team VARCHAR,laps VARCHAR) | SELECT team FROM table_name_22 WHERE laps = 134 |
When the money list rank was n/a, what was the scoring average? | CREATE TABLE table_15883 ("Year" real,"Tournaments played" real,"Cuts made*" real,"Wins" real,"2nd" real,"Top 10s" real,"Best finish" text,"Earnings ($)" real,"Money list rank" text,"Scoring average" text,"Scoring rank" text) | SELECT "Scoring average" FROM table_15883 WHERE "Money list rank" = 'n/a' |
Name the gdp per capita for world rank being 131 | CREATE TABLE table_2249029_1 (gdp_per_capita VARCHAR,gdp_world_rank VARCHAR) | SELECT gdp_per_capita FROM table_2249029_1 WHERE gdp_world_rank = "131" |
In what Week is the Opponent the New Orleans Saints? | CREATE TABLE table_name_43 (week INTEGER,opponent VARCHAR) | SELECT AVG(week) FROM table_name_43 WHERE opponent = "new orleans saints" |
Please give me the title of Season 2, episode 1. | CREATE TABLE table_12451376_2 (title VARCHAR,season_2_ep__number VARCHAR) | SELECT title FROM table_12451376_2 WHERE season_2_ep__number = 1 |
What is the lowest population for the neighborhood with the color blue that commenced its construction before 1987? | CREATE TABLE table_name_20 (population INTEGER,colour VARCHAR,construction_commenced VARCHAR) | SELECT MIN(population) FROM table_name_20 WHERE colour = "blue" AND construction_commenced < 1987 |
Which Team has 19 Carries, and a Week larger than 13? | CREATE TABLE table_78816 ("Week" real,"Team" text,"Carries" real,"Yards" real,"Average" real) | SELECT "Team" FROM table_78816 WHERE "Carries" = '19' AND "Week" > '13' |
What is the lowest number of carriers? | CREATE TABLE table_26431 ("Profile" text,"Bandwidth (MHz)" text,"Number of carriers" real,"Carrier bandwidth (kHz)" text,"Power (dBm)" text,"Max. downstream throughput (Mbit/s)" real) | SELECT MIN("Number of carriers") FROM table_26431 |
what classes of service does TW have | CREATE TABLE flight (aircraft_code_sequence text,airline_code varchar,airline_flight text,arrival_time int,connections int,departure_time int,dual_carrier text,flight_days text,flight_id int,flight_number int,from_airport varchar,meal_code text,stops int,time_elapsed int,to_airport varchar)CREATE TABLE equipment_sequen... | SELECT DISTINCT class_of_service.booking_class FROM class_of_service, fare, fare_basis, flight, flight_fare WHERE fare_basis.booking_class = class_of_service.booking_class AND fare.fare_basis_code = fare_basis.fare_basis_code AND flight_fare.fare_id = fare.fare_id AND flight.airline_code = 'TW' AND flight.flight_id = f... |
how many students are affected by each allergy type? | CREATE TABLE Student (StuID INTEGER,LName VARCHAR(12),Fname VARCHAR(12),Age INTEGER,Sex VARCHAR(1),Major INTEGER,Advisor INTEGER,city_code VARCHAR(3))CREATE TABLE Allergy_Type (Allergy VARCHAR(20),AllergyType VARCHAR(20))CREATE TABLE Has_Allergy (StuID INTEGER,Allergy VARCHAR(20)) | SELECT AllergyType, COUNT(*) FROM Has_Allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy GROUP BY T2.AllergyType |
count the number of patients whose lab test chart time is 2133-08-01 12:06:00? | 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 demographic (subject_id text,hadm_id t... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE lab.charttime = "2133-08-01 12:06:00" |
how many hours has it been since the first time in which patient 8888 was prescribed with furosemide on this hospital encounter? | CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE admissions (row_id number,subject_id number,hadm_id number,admittime time,dischtime time,admission_type text,... | SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', prescriptions.startdate)) FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 8888 AND admissions.dischtime IS NULL) AND prescriptions.drug = 'furosemide' ORDER BY prescriptions.startdate ... |
How many played has an against greater than 57 and a lost bigger than 14? | CREATE TABLE table_name_83 (played VARCHAR,against VARCHAR,lost VARCHAR) | SELECT COUNT(played) FROM table_name_83 WHERE against > 57 AND lost > 14 |
When the points are 98 what is the draw? | CREATE TABLE table_64674 ("Draw" real,"Language" text,"Artist" text,"Song" text,"English translation" text,"Place" real,"Points" real) | SELECT COUNT("Draw") FROM table_64674 WHERE "Points" = '98' |
Show the names of products and the number of events they are in by a bar chart, order by the y-axis from high to low please. | CREATE TABLE Parties_in_Events (Party_ID INTEGER,Event_ID INTEGER,Role_Code CHAR(15))CREATE TABLE Products (Product_ID INTEGER,Product_Type_Code CHAR(15),Product_Name VARCHAR(255),Product_Price DECIMAL(20,4))CREATE TABLE Agreements (Document_ID INTEGER,Event_ID INTEGER)CREATE TABLE Parties (Party_ID INTEGER,Party_Detai... | SELECT Product_Name, COUNT(*) FROM Products AS T1 JOIN Products_in_Events AS T2 ON T1.Product_ID = T2.Product_ID GROUP BY T1.Product_Name ORDER BY COUNT(*) DESC |
What is the Series of the Filmography with Release date of 1946-01-05? | CREATE TABLE table_name_1 (series VARCHAR,release_date VARCHAR) | SELECT series FROM table_name_1 WHERE release_date = "1946-01-05" |
Which race resulted in 2nd place in the 1996 season on 20-Jan-1996? | CREATE TABLE table_68435 ("Season" real,"Date" text,"Location" text,"Race" text,"Place" text) | SELECT "Race" FROM table_68435 WHERE "Place" = '2nd' AND "Season" = '1996' AND "Date" = '20-jan-1996' |
What was the average game with a record of 4-4-0? | CREATE TABLE table_75611 ("Game" real,"October" real,"Opponent" text,"Score" text,"Record" text) | SELECT AVG("Game") FROM table_75611 WHERE "Record" = '4-4-0' |
what is the number of patients who have stayed in careunit ccu during the previous year? | 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,discharge_location text,insurance text,language text,marital_status text,ethnicity text,age number)CREATE TABL... | SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE admissions.hadm_id IN (SELECT transfers.hadm_id FROM transfers WHERE transfers.careunit = 'ccu' AND DATETIME(transfers.intime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year')) |
What is the number of each course name that have at least five enrollments? Show me a bar chart. | CREATE TABLE Faculty (FacID INTEGER,Lname VARCHAR(15),Fname VARCHAR(15),Rank VARCHAR(15),Sex VARCHAR(1),Phone INTEGER,Room VARCHAR(5),Building VARCHAR(13))CREATE TABLE Department (DNO INTEGER,Division VARCHAR(2),DName VARCHAR(25),Room VARCHAR(5),Building VARCHAR(13),DPhone INTEGER)CREATE TABLE Course (CID VARCHAR(7),CN... | SELECT T1.CName, COUNT(T1.CName) FROM Course AS T1 JOIN Enrolled_in AS T2 ON T1.CID = T2.CID GROUP BY T1.CName, T2.CID HAVING COUNT(*) >= 5 |
how many patients were admitted to the hospital before the year 2165 with an item id 50990? | 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 INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admityear < "2165" AND lab.itemid = "50990" |
Show the parties that have both representatives in New York state and representatives in Pennsylvania state. | CREATE TABLE election (election_id number,representative_id number,date text,votes number,vote_percent number,seats number,place number)CREATE TABLE representative (representative_id number,name text,state text,party text,lifespan text) | SELECT party FROM representative WHERE state = "New York" INTERSECT SELECT party FROM representative WHERE state = "Pennsylvania" |
How many patients whose married status is widowed have been diagnosed with obstructive chronic bronchitis with (acute) exacerbation? | 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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.marital_status = "WIDOWED" AND diagnoses.long_title = "Obstructive chronic bronchitis with (acute) exacerbation" |
Which team is located in missouri and was established in 1963? | CREATE TABLE table_49131 ("Team" text,"City" text,"State/Province" text,"League" text,"Est." text) | SELECT "Team" FROM table_49131 WHERE "State/Province" = 'missouri' AND "Est." = '1963' |
Show the name and number of employees for the departments managed by heads whose temporary acting value is 'Yes' by a bar chart. | CREATE TABLE management (department_ID int,head_ID int,temporary_acting text)CREATE TABLE department (Department_ID int,Name text,Creation text,Ranking int,Budget_in_Billions real,Num_Employees real)CREATE TABLE head (head_ID int,name text,born_state text,age real) | SELECT Name, AVG(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 |
Return a histogram on how many exhibitions has each artist had? | CREATE TABLE artist (Artist_ID int,Name text,Country text,Year_Join int,Age int)CREATE TABLE exhibition_record (Exhibition_ID int,Date text,Attendance int)CREATE TABLE exhibition (Exhibition_ID int,Year int,Theme text,Artist_ID int,Ticket_Price real) | SELECT Name, COUNT(*) FROM exhibition AS T1 JOIN artist AS T2 ON T1.Artist_ID = T2.Artist_ID GROUP BY T1.Artist_ID |
calculate the number of times until 3 years ago patient 19691 has received a mcv lab test. | CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE ... | SELECT COUNT(*) FROM labevents WHERE labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'mcv') AND labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 19691) AND DATETIME(labevents.charttime) <= DATETIME(CURRENT_TIME(), '-3 year') |
What place did the player from England come in? | CREATE TABLE table_79995 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text,"Money ($)" real) | SELECT "Place" FROM table_79995 WHERE "Country" = 'england' |
which nations won only bronze medals ? | CREATE TABLE table_204_800 (id number,"rank" number,"nation" text,"gold" number,"silver" number,"bronze" number,"total" number) | SELECT "nation" FROM table_204_800 WHERE "bronze" = "total" |
What is the distinguished service cross when the navy cross is Coast Guard commendation medal? | CREATE TABLE table_2104176_1 (distinguished_service_cross VARCHAR,navy_cross VARCHAR) | SELECT distinguished_service_cross FROM table_2104176_1 WHERE navy_cross = "Coast Guard Commendation Medal" |
What is the Type for l. publilius philo vulscus? | CREATE TABLE table_7462 ("Type" text,"Name" text,"Title" text,"Political group" text,"From" text) | SELECT "Type" FROM table_7462 WHERE "Name" = 'l. publilius philo vulscus' |
Name the kurdistan democratic party for kurdistan list being 10 | CREATE TABLE table_26847 ("Governorate" text,"Kurdistan Democratic Party" real,"Patriotic Union of Kurdistan" real,"Total Kurdistan List" real,"Total Governorate Seats" real) | SELECT MIN("Kurdistan Democratic Party") FROM table_26847 WHERE "Total Kurdistan List" = '10' |
What is the description of the color for most products? | CREATE TABLE ref_product_categories (product_category_code text,product_category_description text,unit_of_measure text)CREATE TABLE ref_colors (color_code text,color_description text)CREATE TABLE characteristics (characteristic_id number,characteristic_type_code text,characteristic_data_type text,characteristic_name te... | SELECT t2.color_description FROM products AS t1 JOIN ref_colors AS t2 ON t1.color_code = t2.color_code GROUP BY t2.color_description ORDER BY COUNT(*) DESC LIMIT 1 |
When the points scored was over 110.25%, what's the average amount lost? | CREATE TABLE table_name_69 (lost INTEGER,_percentage_pts INTEGER) | SELECT AVG(lost) FROM table_name_69 WHERE _percentage_pts > 110.25 |
Graph of popular questions by views. | CREATE TABLE PostNoticeTypes (Id number,ClassId number,Name text,Body text,IsHidden boolean,Predefined boolean,PostNoticeDurationId number)CREATE TABLE PostFeedback (Id number,PostId number,IsAnonymous boolean,VoteTypeId number,CreationDate time)CREATE TABLE PendingFlags (Id number,FlagTypeId number,PostId number,Creat... | COMMIT |
For those employees who was hired before 2002-06-21, show me the trend about salary over hire_date with a line chart. | CREATE TABLE departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_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_NUM... | SELECT HIRE_DATE, SALARY FROM employees WHERE HIRE_DATE < '2002-06-21' |
What is the lowest Apps with more than 1 level? | CREATE TABLE table_62309 ("Season" real,"Team" text,"Country" text,"League" text,"Level" real,"Apps" real,"Goals" real) | SELECT MIN("Apps") FROM table_62309 WHERE "Level" > '1' |
give me the number of patients whose primary disease is hypertension;rule out coronary artery disease\cardiac cath and lab test category is chemistry? | CREATE TABLE diagnoses (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 text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime tex... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.diagnosis = "HYPERTENSION;RULE OUT CORONARY ARTERY DISEASE\CARDIAC CATH" AND lab."CATEGORY" = "Chemistry" |
okay on monday may thirty first i'd like to go from SAN DIEGO to PHOENIX early in the morning | CREATE TABLE flight_fare (flight_id int,fare_id int)CREATE TABLE fare (fare_id int,from_airport varchar,to_airport varchar,fare_basis_code text,fare_airline text,restriction_code text,one_direction_cost int,round_trip_cost int,round_trip_required varchar)CREATE TABLE time_interval (period text,begin_time int,end_time i... | 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 = 'PHOENIX' AND date_day.day_number = 21 AND date_day.month_number = 2 AND ... |
how many division did not qualify for u.s. open cup in 2003 | CREATE TABLE table_1046170_5 (division VARCHAR,us_open_cup VARCHAR,year VARCHAR) | SELECT division FROM table_1046170_5 WHERE us_open_cup = "Did Not Qualify" AND year = 2003 |
what is the cheapest round trip flight from DENVER to ATLANTA | CREATE TABLE state (state_code text,state_name text,country_name text)CREATE TABLE code_description (code varchar,description text)CREATE TABLE airport_service (city_code varchar,airport_code varchar,miles_distant int,direction varchar,minutes_distant int)CREATE TABLE date_day (month_number int,day_number int,year int,... | 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, fare, flight, flight_fare 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.... |
Which number has 11 males? | CREATE TABLE table_68745 ("Language" text,"Number" text,"percentage (%)" text,"males" text,"females" text) | SELECT "Number" FROM table_68745 WHERE "males" = '11' |
tell me the name of an output that patient 53863 has last had until 03/15/2101? | 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_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE icustays (row_id number,subject_id number,hadm_id number,icustay... | SELECT d_items.label FROM d_items WHERE d_items.itemid IN (SELECT outputevents.itemid 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 = 53863)) AND STRFTIME('%y-%m-%d', outputeve... |
Give me a bar chart for team_id of each all neutral, show in descending by the names. | 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 All_Neutral, Team_ID FROM basketball_match ORDER BY All_Neutral DESC |
How much did the home team Hawthorn score? | CREATE TABLE table_name_5 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_5 WHERE home_team = "hawthorn" |
WHAT IS THE CARRIER FOR 4.7.0.208 VERSION? | CREATE TABLE table_name_25 (carrier VARCHAR,package_version VARCHAR) | SELECT carrier FROM table_name_25 WHERE package_version = "4.7.0.208" |
Which courses would be helpful to take before taking MILSCI 302 ? | CREATE TABLE jobs (job_id int,job_title varchar,description varchar,requirement varchar,city varchar,state varchar,country varchar,zip int)CREATE TABLE ta (campus_job_id int,student_id int,location varchar)CREATE TABLE course_prerequisite (pre_course_id int,course_id int)CREATE TABLE program_course (program_id int,cour... | SELECT DISTINCT advisory_requirement FROM course WHERE department = 'MILSCI' AND number = 302 |
A bar chart about how many students are affected by each allergy type?, rank bars in ascending order please. | CREATE TABLE Allergy_Type (Allergy VARCHAR(20),AllergyType VARCHAR(20))CREATE TABLE Student (StuID INTEGER,LName VARCHAR(12),Fname VARCHAR(12),Age INTEGER,Sex VARCHAR(1),Major INTEGER,Advisor INTEGER,city_code VARCHAR(3))CREATE TABLE Has_Allergy (StuID INTEGER,Allergy VARCHAR(20)) | SELECT AllergyType, COUNT(*) FROM Has_Allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy GROUP BY T2.AllergyType ORDER BY AllergyType |
What title had a remark of #21 us [riaa certified gold january 3, 1990]? | CREATE TABLE table_36552 ("Year" real,"Title" text,"Format" text,"Label" text,"Catalogno" text,"Remark" text) | SELECT "Title" FROM table_36552 WHERE "Remark" = '#21 us [riaa certified gold january 3, 1990]' |
what is the number of people in attendance on january 30 , 1968 ? | CREATE TABLE table_204_350 (id number,"date" text,"opponents" text,"venue" text,"result" text,"scorers" text,"attendance" number,"report 1" text,"report 2" text) | SELECT "attendance" FROM table_204_350 WHERE "date" = '30-jan-68' |
how many patients taking morphine sulfate sr medication have been hospitalized for more than 3 days? | 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.days_stay > "3" AND prescriptions.drug = "Morphine Sulfate SR" |
what is the number of patients whose admission type is newborn and ethnicity is black/cape verdean? | CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag text,admission_location text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.admission_type = "NEWBORN" AND demographic.ethnicity = "BLACK/CAPE VERDEAN" |
what are the flights from DENVER to BALTIMORE on UA | CREATE TABLE time_interval (period text,begin_time int,end_time int)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)CREATE TABLE days (days_code varchar,day_name varchar)CREATE TABLE flig... | 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 = 'BALTIMORE' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'DEN... |
Count the sum of Pop (2004) which has a Governorate of al mahrah with an Area km smaller than 78,073? | CREATE TABLE table_76267 ("Governorate" text,"Capital City" text,"Area km\u00b2" real,"Pop (2004)" real,"Map Key" real) | SELECT SUM("Pop (2004)") FROM table_76267 WHERE "Governorate" = 'al mahrah' AND "Area km\u00b2" < '78,073' |
Which Angle from center/ has a Taper/ft smaller than 0.6000000000000001? | CREATE TABLE table_name_97 (angle_from_center_ VARCHAR,taper VARCHAR,ft VARCHAR) | SELECT COUNT(angle_from_center_) AS ° FROM table_name_97 WHERE taper / ft < 0.6000000000000001 |
What is the sum of the FAC/LC G with a CL G less than 2, less than 5 total apps, and a UEFA YC greater than 0? | CREATE TABLE table_8284 ("Player" text,"PL Apps" real,"PL G" real,"CL Apps" real,"CL G" real,"FAC / LC Apps" real,"FAC / LC G" real,"Total Apps" real,"Total G" real,"FA YC" real,"UEFA YC" real) | SELECT SUM("FAC / LC G") FROM table_8284 WHERE "CL G" < '2' AND "Total Apps" < '5' AND "UEFA YC" > '0' |
What is the average and total capacity for all dorms who are of gender X? | CREATE TABLE has_amenity (dormid number,amenid number)CREATE TABLE student (stuid number,lname text,fname text,age number,sex text,major number,advisor number,city_code text)CREATE TABLE dorm_amenity (amenid number,amenity_name text)CREATE TABLE lives_in (stuid number,dormid number,room_number number)CREATE TABLE dorm ... | SELECT AVG(student_capacity), SUM(student_capacity) FROM dorm WHERE gender = 'X' |
What is Result, when Date is 19 August 1992? | CREATE TABLE table_name_40 (result VARCHAR,date VARCHAR) | SELECT result FROM table_name_40 WHERE date = "19 august 1992" |
Distribution of number of votes on questions. | CREATE TABLE ReviewTaskStates (Id number,Name text,Description text)CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE CloseReasonTypes (Id number,Name text,Description text)CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,... | WITH a AS (SELECT p.Id, COUNT(v.PostId) AS n_votes FROM Votes AS v FULL OUTER JOIN Posts AS p ON v.PostId = p.Id WHERE p.PostTypeId IN (1) AND v.VoteTypeId IN (2, 3) GROUP BY p.Id), b AS (SELECT pp.Id, n_votes FROM a FULL OUTER JOIN Posts AS pp ON a.Id = pp.Id WHERE pp.PostTypeId IN (1)) SELECT * FROM b ORDER BY Id DES... |
PUBPOL 456 is usually taught by who ? | CREATE TABLE semester (semester_id int,semester varchar,year int)CREATE TABLE course_tags_count (course_id int,clear_grading int,pop_quiz int,group_projects int,inspirational int,long_lectures int,extra_credit int,few_tests int,good_feedback int,tough_tests int,heavy_papers int,cares_for_students int,heavy_assignments ... | SELECT COUNT(instructor.name), instructor.name FROM course, course_offering, instructor, offering_instructor WHERE course.course_id = course_offering.course_id AND course.department = 'PUBPOL' AND course.number = 456 AND offering_instructor.instructor_id = instructor.instructor_id AND offering_instructor.offering_id = ... |
What is the up/down associated with the Subiaco Oval? | CREATE TABLE table_2472711_32 (up_down VARCHAR,venue VARCHAR) | SELECT up_down FROM table_2472711_32 WHERE venue = "Subiaco Oval" |
Who has a Construction of 1870, foochow navy yard, and a Name (Wade Giles) of fu-hsing? | CREATE TABLE table_64824 ("Name (pinyin)" text,"Name (Wade Giles)" text,"Characters" text,"Type" text,"Construction" text) | SELECT "Characters" FROM table_64824 WHERE "Construction" = '1870, foochow navy yard' AND "Name (Wade Giles)" = 'fu-hsing' |
what was the total number of loses ? | CREATE TABLE table_203_689 (id number,"date" text,"opponent" text,"score" text,"result" text,"record" text) | SELECT COUNT(*) FROM table_203_689 WHERE "result" = 'loss' |
Driving Force EX of no, and a Driving Force GT of yes, and a Driving Force Pro of yes has what feature? | CREATE TABLE table_name_64 (feature VARCHAR,driving_force_pro VARCHAR,driving_force_ex VARCHAR,driving_force_gt VARCHAR) | SELECT feature FROM table_name_64 WHERE driving_force_ex = "no" AND driving_force_gt = "yes" AND driving_force_pro = "yes" |
In next semester , is BE 502 being offered ? | CREATE TABLE gsi (course_offering_id int,student_id int)CREATE TABLE program_requirement (program_id int,category varchar,min_credit int,additional_req varchar)CREATE TABLE offering_instructor (offering_instructor_id int,offering_id int,instructor_id int)CREATE TABLE course_offering (offering_id int,course_id int,semes... | SELECT COUNT(*) > 0 FROM course, course_offering, semester WHERE course.course_id = course_offering.course_id AND course.department = 'BE' AND course.number = 502 AND semester.semester = 'FA' AND semester.semester_id = course_offering.semester AND semester.year = 2016 |
What was the final score when the attendance was 25598? | CREATE TABLE table_24606 ("Week" real,"Date" text,"Opponent" text,"Location" text,"Final Score" text,"Attendance" real,"Record" text) | SELECT "Final Score" FROM table_24606 WHERE "Attendance" = '25598' |
Name the average React of the Time smaller than 20.05 in jamaica with a Lane larger than 5? | CREATE TABLE table_name_53 (react INTEGER,lane VARCHAR,time VARCHAR,nationality VARCHAR) | SELECT AVG(react) FROM table_name_53 WHERE time < 20.05 AND nationality = "jamaica" AND lane > 5 |
Is ANTHRCUL 375 only offered in the Fall ? | CREATE TABLE area (course_id int,area varchar)CREATE TABLE instructor (instructor_id int,name varchar,uniqname varchar)CREATE TABLE jobs (job_id int,job_title varchar,description varchar,requirement varchar,city varchar,state varchar,country varchar,zip int)CREATE TABLE program (program_id int,name varchar,college varc... | SELECT COUNT(*) > 0 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 = 'ANTHRCUL' AND course.number = 375 AND semester.semester <> 'Fall' |
Give me the comparison about School_ID over the ACC_Road , and group by attribute All_Home, could you display from high to low by the Y-axis? | 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 ACC_Road, School_ID FROM basketball_match GROUP BY All_Home, ACC_Road ORDER BY School_ID DESC |
What country has sa/b as the notes, and a time of 5:51.30? | CREATE TABLE table_name_55 (country VARCHAR,notes VARCHAR,time VARCHAR) | SELECT country FROM table_name_55 WHERE notes = "sa/b" AND time = "5:51.30" |
how many goals does zolt n kiss have ? | CREATE TABLE table_204_978 (id number,"position" number,"nation" number,"number" number,"name" text,"soproni liga" number,"uefa cup" number,"hungarian cup" number,"league cup" number,"total" number) | SELECT "total" FROM table_204_978 WHERE "name" = 'zoltan kiss' |
how many times were they in tier 3 ? | CREATE TABLE table_204_974 (id number,"season" number,"level" text,"division" text,"section" text,"administration" text,"position" text,"movements" text) | SELECT COUNT(*) FROM table_204_974 WHERE "level" = 'tier 3' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.