instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
Who are the opponents of Mike Byron and partner in matches where the score was 6 4, 4 6, 7 6 (7 4)? | CREATE TABLE table_1964010_2 (opponents VARCHAR,score VARCHAR) | SELECT opponents FROM table_1964010_2 WHERE score = "6–4, 4–6, 7–6 (7–4)" |
Which men's singles had a women's doubles team of irena ferencov / yweta trminkov ? | CREATE TABLE table_43145 ("Year" real,"Men's singles" text,"Women's singles" text,"Men's doubles" text,"Women's doubles" text,"Mixed doubles" text) | SELECT "Men's singles" FROM table_43145 WHERE "Women's doubles" = 'irena ferencová / yweta trminková' |
Name the team for copa conmebol 1992 is round of 16 | CREATE TABLE table_15013825_8 (team VARCHAR,copa_conmebol_1992 VARCHAR) | SELECT team FROM table_15013825_8 WHERE copa_conmebol_1992 = "Round of 16" |
what is the most tonnage grt of any ship sunk or captured on 16 jan 16? | CREATE TABLE table_77989 ("Date" text,"Ship" text,"Type" text,"Nationality" text,"Tonnage GRT" real) | SELECT MAX("Tonnage GRT") FROM table_77989 WHERE "Date" = '16 jan 16' |
How tall is the person born on 1976-12-27? | CREATE TABLE table_name_2 (height VARCHAR,date_of_birth VARCHAR) | SELECT height FROM table_name_2 WHERE date_of_birth = "1976-12-27" |
Display a bar chart for what is the code of each location and the number of documents in that location? | CREATE TABLE Ref_Locations (Location_Code CHAR(15),Location_Name VARCHAR(255),Location_Description VARCHAR(255))CREATE TABLE Ref_Calendar (Calendar_Date DATETIME,Day_Number INTEGER)CREATE TABLE Roles (Role_Code CHAR(15),Role_Name VARCHAR(255),Role_Description VARCHAR(255))CREATE TABLE Document_Locations (Document_ID IN... | SELECT Location_Code, COUNT(*) FROM Document_Locations GROUP BY Location_Code |
In which round did Paul McDonald have an overall greater than 109? | CREATE TABLE table_name_22 (round INTEGER,player VARCHAR,overall VARCHAR) | SELECT MAX(round) FROM table_name_22 WHERE player = "paul mcdonald" AND overall > 109 |
For all employees who have the letters D or S in their first name, draw a bar chart about the distribution of hire_date and the average of salary bin hire_date by time, I want to sort in asc by the Y-axis. | CREATE TABLE countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,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 locations (LOCATION_ID decimal(4,0),STREET_ADDRESS varchar(40),POSTAL_CODE varchar(12... | SELECT HIRE_DATE, AVG(SALARY) FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' ORDER BY AVG(SALARY) |
What municipality had 26839 people living in it in 2010? | CREATE TABLE table_216776_2 (municipality VARCHAR,population__2010_ VARCHAR) | SELECT municipality FROM table_216776_2 WHERE population__2010_ = 26839 |
For those employees who was hired before 2002-06-21, give me the comparison about the average of manager_id over the job_id , and group by attribute job_id by a bar chart. | CREATE TABLE countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))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 dec... | SELECT JOB_ID, AVG(MANAGER_ID) FROM employees WHERE HIRE_DATE < '2002-06-21' GROUP BY JOB_ID |
For the Spring or Summer term , are there any 500 -level classes ? | 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 int,respected int,participation int,heavy_reading int,tough_grade... | 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 500 AND 500 + 100 AND semester.semester IN ('SP', 'SS', 'SU') AND semester.semester_id = cou... |
how many times has galaxy won the derby ? | CREATE TABLE table_204_801 (id number,"year" number,"derby\nwinner" text,"galaxy" number,"draw" number,"chivas" number) | SELECT COUNT(*) FROM table_204_801 WHERE "derby\nwinner" = 'galaxy' |
What tournament was played on May 29, 2010? | CREATE TABLE table_name_8 (tournament VARCHAR,date VARCHAR) | SELECT tournament FROM table_name_8 WHERE date = "may 29, 2010" |
how many patients are diagnosed for atherosclerosis of native arteries of the extremities with intermittent claudication and had lab test abnormal status as abnormal? | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE diagnoses (subject_id text,hadm_id tex... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.long_title = "Atherosclerosis of native arteries of the extremities with intermittent claudication" AND lab.flag = "abnormal" |
Which visitor lives in Minnesota? | CREATE TABLE table_49275 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Record" text,"Points" real) | SELECT "Visitor" FROM table_49275 WHERE "Home" = 'minnesota' |
What are the offerings of upper level electives for CS majors ? | CREATE TABLE comment_instructor (instructor_id int,student_id int,score int,comment_text varchar)CREATE TABLE course_prerequisite (pre_course_id int,course_id int)CREATE TABLE jobs (job_id int,job_title varchar,description varchar,requirement varchar,city varchar,state varchar,country varchar,zip int)CREATE TABLE stude... | SELECT DISTINCT course.department, course.name, course.number FROM course, program_course WHERE program_course.category LIKE '%ULCS%' AND program_course.course_id = course.course_id |
had a peep lab test patient 017-13959 received since 06/2104? | 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(*) > 0 FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '017-13959')) AND lab.labname = 'peep' AND STRFTIME('%y-%m', lab.labresulttime) >= '2104-... |
Show different teams of technicians and the number of technicians in each team in a pie chart. | CREATE TABLE repair_assignment (technician_id int,repair_ID int,Machine_ID int)CREATE TABLE technician (technician_id real,Name text,Team text,Starting_Year real,Age int)CREATE TABLE machine (Machine_ID int,Making_Year int,Class text,Team text,Machine_series text,value_points real,quality_rank int)CREATE TABLE repair (... | SELECT Team, COUNT(*) FROM technician GROUP BY Team |
what was the medication patient 26398 had been prescribed two or more times in the previous month? | CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE icustays (row_id number,subject_id number... | 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 = 26398) AND DATETIME(prescriptions.startdate, 'start of month') = DATETIME(CURRENT_TIME(), 'start of month', '-1 ... |
how many hours has it passed since the last time that patient 5828 stayed in ward 57 during their current hospital visit? | CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_... | SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', transfers.intime)) FROM transfers WHERE transfers.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 5828 AND admissions.dischtime IS NULL)) AND transfers.... |
What is the success rate for the year 2012? | CREATE TABLE table_name_52 (success_rate VARCHAR,year VARCHAR) | SELECT success_rate FROM table_name_52 WHERE year = "2012" |
Where is the Venue that has an away team score of 13.16 (94) points? | CREATE TABLE table_54151 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Venue" FROM table_54151 WHERE "Away team score" = '13.16 (94)' |
How many countries were sampled for the Prosperity Index (2008)? | CREATE TABLE table_2202 ("Index (Year)" text,"Author / Editor / Source" text,"Year of publication" text,"Countries sampled" real,"World Ranking (1)" text,"Ranking L.A. (2)" text) | SELECT MAX("Countries sampled") FROM table_2202 WHERE "Index (Year)" = 'Prosperity Index (2008)' |
What is the 2009 estimate population of the region with Manaus as the largest city? | CREATE TABLE table_name_79 (population__2009_estimate_ VARCHAR,largest_city VARCHAR) | SELECT population__2009_estimate_ FROM table_name_79 WHERE largest_city = "manaus" |
What is the main legion base that disbanded 70 xx? | CREATE TABLE table_26713 ("Legion no and title" text,"Main legion base" text,"Emblem" text,"Date founded/ founder" text,"Date disband" text,"Castra legionaria (legion bases) * = main base. Start date 31 BC if unspecified" text,"Notes" text) | SELECT "Main legion base" FROM table_26713 WHERE "Date disband" = '70 XX' |
Which department does The Good Life Fall under ? | 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 department FROM course WHERE name LIKE '%The Good Life%' |
List all the log ids and their descriptions from the problem logs. | CREATE TABLE problem_log (problem_log_id VARCHAR,log_entry_description VARCHAR) | SELECT problem_log_id, log_entry_description FROM problem_log |
What is the highest frequency from uncionfeypoder.com? | CREATE TABLE table_name_79 (frequency INTEGER,website VARCHAR) | SELECT MAX(frequency) FROM table_name_79 WHERE website = "uncionfeypoder.com" |
provide the number of patients whose gender is f and days of hospital stay is greater than 16? | 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 WHERE demographic.gender = "F" AND demographic.days_stay > "16" |
what is procedure icd9 code and procedure long title of subject name jonathan wiggins? | CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ... | SELECT procedures.icd9_code, procedures.long_title FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.name = "Jonathan Wiggins" |
What's the zodiac sign for the month with Thai name ? | CREATE TABLE table_20354_5 (zodiac_sign VARCHAR,thai_name VARCHAR) | SELECT zodiac_sign FROM table_20354_5 WHERE thai_name = "มกราคม" |
What is the largest inflation % annual in 2012 of the country with a public debt % of GDP in 2013 Q1 greater than 88.2 and a GDP % of EU in 2012 of 2.9%? | CREATE TABLE table_75811 ("Member State sorted by GDP" text,"GDP in s billion of USD (2012)" real,"GDP % of EU (2012)" text,"Annual change % of GDP (2012)" text,"GDP per capita in PPP US$ (2012)" real,"Public Debt % of GDP (2013 Q1)" real,"Deficit (-)/ Surplus (+) % of GDP (2012)" text,"Inflation % Annual (2012)" real,... | SELECT MAX("Inflation % Annual (2012)") FROM table_75811 WHERE "Public Debt % of GDP (2013 Q1)" > '88.2' AND "GDP % of EU (2012)" = '2.9%' |
what is the home team when the opposition is east coast? | CREATE TABLE table_26847237_3 (home_team VARCHAR,opposition VARCHAR) | SELECT home_team FROM table_26847237_3 WHERE opposition = "East Coast" |
which player has the highest number of career home runs ? | CREATE TABLE table_203_611 (id number,"player" text,"hr" number,"date reached 500 hr" text,"team" text,"seasons played" text) | SELECT "player" FROM table_203_611 ORDER BY "hr" DESC LIMIT 1 |
what are the changes in patient 016-29746's direct bilirubin values measured at 2104-07-19 19:27:36 compared to the value measured at 2104-04-05 07:18:00? | CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweigh... | SELECT (SELECT lab.labresult FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '016-29746')) AND lab.labname = 'direct bilirubin' AND lab.labresulttime = '2104... |
What is the title of the episode that aired on September 25, 2005? | CREATE TABLE table_name_23 (title VARCHAR,podcast_date VARCHAR) | SELECT title FROM table_name_23 WHERE podcast_date = "september 25, 2005" |
Name the parishes for beira baixa province | CREATE TABLE table_24798 ("District" text,"Municipalities" real,"Parishes" real,"Province of 1936" text,"Region" text) | SELECT COUNT("Parishes") FROM table_24798 WHERE "Province of 1936" = 'Beira Baixa Province' |
count the number of patients whose admission type is newborn and days of hospital stay is greater than 8? | 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 WHERE demographic.admission_type = "NEWBORN" AND demographic.days_stay > "8" |
Greece 1000 with Row Number. | CREATE TABLE Comments (Id number,PostId number,Score number,Text text,CreationDate time,UserDisplayName text,UserId number,ContentLicense text)CREATE TABLE CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance text,MarkdownPostOwnerGuidance text,MarkdownPrivilegedUserGuidance t... | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS Place, Id AS "user_link", Reputation, WebsiteUrl, Location FROM Users WHERE Location LIKE '%Thess%' OR Location LIKE '%Greece%' OR Location LIKE N'%Gr' OR (Location LIKE N'%Athens%' AND NOT Location LIKE N'%GA%') ORDER BY Reputation DESC LIMIT 1000 |
how many patients whose admission location is trsf within this facility and procedure icd9 code is 8857? | 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 demographic (subject_id text,hadm_id text,name text,marita... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admission_location = "TRSF WITHIN THIS FACILITY" AND procedures.icd9_code = "8857" |
Line chart, the X is the hire date of employees and the Y-axis is the corresponding salary, and I want to list X-axis from high to low order. | CREATE TABLE departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_ID decimal(4,0))CREATE TABLE 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 ... | SELECT HIRE_DATE, SALARY FROM employees ORDER BY HIRE_DATE DESC |
What's the transit connection in Columbia City, Seattle? | CREATE TABLE table_25302 ("Station" text,"Line(s)" text,"City/Neighborhood" text,"Year opened" real,"Transit Connections" text,"Park and ride?" text) | SELECT "Transit Connections" FROM table_25302 WHERE "City/Neighborhood" = 'Columbia City, Seattle' |
What are the Points when the Place is 9? | CREATE TABLE table_34649 ("Draw" real,"Singer" text,"Song" text,"Points" real,"Place" real) | SELECT "Points" FROM table_34649 WHERE "Place" = '9' |
What is the lowest number of bronze medals for nations with over 6 total and 2 golds? | CREATE TABLE table_name_71 (bronze INTEGER,gold VARCHAR,total VARCHAR) | SELECT MIN(bronze) FROM table_name_71 WHERE gold = 2 AND total > 6 |
among patients who were prescribed fentanyl citrate 0.05 mg/ml ij soln after they had been diagnosed with pleural effusion - right show me the four year survival rate. | CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd... | SELECT SUM(CASE WHEN patient.hospitaldischargestatus = 'alive' THEN 1 WHEN STRFTIME('%j', patient.hospitaldischargetime) - STRFTIME('%j', t4.diagnosistime) > 4 * 365 THEN 1 ELSE 0 END) * 100 / COUNT(*) FROM (SELECT t2.uniquepid, t2.diagnosistime FROM (SELECT t1.uniquepid, t1.diagnosistime FROM (SELECT patient.uniquepid... |
How many games were on May 20? | CREATE TABLE table_17441 ("Date" text,"Winning Team" text,"Score" text,"Winning Pitcher" text,"Losing Pitcher" text,"Attendance" real,"Location" text) | SELECT COUNT("Attendance") FROM table_17441 WHERE "Date" = 'May 20' |
top 10 users from Bengaluru India. | CREATE TABLE CloseReasonTypes (Id number,Name text,Description text)CREATE TABLE PostNoticeTypes (Id number,ClassId number,Name text,Body text,IsHidden boolean,Predefined boolean,PostNoticeDurationId number)CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number... | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation, Location FROM Users WHERE LOWER(Location) LIKE '%Bengaluru%' OR UPPER(Location) LIKE '%Bengaluru%' OR Location LIKE '%Bengaluru%' OR LOWER(Location) LIKE '%Bangalore%' OR UPPER(Location) LIKE '%Bangalore%' OR Location LIKE '%Bang... |
When do all the researcher role staff stop working? Bin the time into weekday interval and count them with a bar chart. | CREATE TABLE Documents (document_id INTEGER,document_type_code VARCHAR(10),grant_id INTEGER,sent_date DATETIME,response_received_date DATETIME,other_details VARCHAR(255))CREATE TABLE Tasks (task_id INTEGER,project_id INTEGER,task_details VARCHAR(255),"eg Agree Objectives" VARCHAR(1))CREATE TABLE Staff_Roles (role_code ... | SELECT date_to, COUNT(date_to) FROM Project_Staff |
What College/junior/club team has a Position of centre, and pick is #22? | CREATE TABLE table_name_31 (college_junior_club_team VARCHAR,position VARCHAR,pick__number VARCHAR) | SELECT college_junior_club_team FROM table_name_31 WHERE position = "centre" AND pick__number = "22" |
what did patient 016-17669 first have as an intake on the first icu visit? | CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE microlab (microlabid number,patientunitstayid number,... | SELECT intakeoutput.celllabel FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '016-17669') AND NOT patient.unitdischargetime IS NULL ORDER ... |
select dateadd(dd, datediff(dd, 0, getdate()), 0). | CREATE TABLE Comments (Id number,PostId number,Score number,Text text,CreationDate time,UserDisplayName text,UserId number,ContentLicense text)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE ReviewTaskTypes (Id number,Name text,Description text)CREATE TABLE PostNoticeTypes (Id number,ClassId number,Name text,B... | SELECT DATEADD(dd, 0, DATEDIFF(dd, 0, GETDATE())) |
Questions per day for a specific tag. all time count of questions of a specific tag per day, with rollup | 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 YEAR(p.CreationDate) AS "year", MONTH(p.CreationDate) AS "month", DAY(p.CreationDate) AS "day", COUNT(*) AS "questionsaskedtoday" FROM Posts AS p INNER JOIN PostTags AS pt ON p.Id = pt.PostId INNER JOIN Tags AS t ON t.Id = pt.TagId WHERE t.TagName = @tagName GROUP BY YEAR(p.CreationDate), MONTH(p.CreationDate), ... |
which flights are between BOSTON and BALTIMORE WASHINGTON | CREATE TABLE city (city_code varchar,city_name varchar,state_code varchar,country_name varchar,time_zone_code varchar)CREATE TABLE food_service (meal_code text,meal_number int,compartment text,meal_description varchar)CREATE TABLE date_day (month_number int,day_number int,year int,day_name varchar)CREATE TABLE flight_s... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, airport_service AS AIRPORT_SERVICE_2, city AS CITY_0, city AS CITY_1, city AS CITY_2, flight WHERE ((flight.to_airport = AIRPORT_SERVICE_1.airport_code AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND... |
tell me the number of french people on the list . | CREATE TABLE table_204_748 (id number,"composer" text,"born" number,"died" number,"nationality" text,"notable works for piano" text,"remarks" text) | SELECT COUNT("composer") FROM table_204_748 WHERE "nationality" = 'french' |
Which complex used the Soyuz (r) launcher to facilitate 14 orbital flights? | CREATE TABLE table_59941 ("Spaceport" text,"Launch complex" text,"Launcher" text,"Spacecraft" text,"Flights" text,"Years" text) | SELECT "Launch complex" FROM table_59941 WHERE "Launcher" = 'soyuz (r)' AND "Flights" = '14 orbital' |
Which character has a French voice actor of Marc Saez and a German voice actor of Dirk Fenselau? | CREATE TABLE table_5919 ("Character" text,"French voice actor" text,"Italian voice actor" text,"German voice actor" text,"Spanish voice actor" text) | SELECT "Character" FROM table_5919 WHERE "French voice actor" = 'marc saez' AND "German voice actor" = 'dirk fenselau' |
Which Emission (in nanometers) that has a molar mass of 1078 g/mol? | CREATE TABLE table_name_86 (emit__nm_ VARCHAR,mass__g_mol_ VARCHAR) | SELECT emit__nm_ FROM table_name_86 WHERE mass__g_mol_ = "1078" |
What is the effective exhaust velocity in a Space Shuttle Vacuum? | CREATE TABLE table_15944_5 (effective_exhaust_velocity__m_s_ VARCHAR,scenario VARCHAR) | SELECT COUNT(effective_exhaust_velocity__m_s_) FROM table_15944_5 WHERE scenario = "Space shuttle vacuum" |
Which country contains the Shanghai Pudong International airport? | CREATE TABLE table_name_41 (country VARCHAR,airport VARCHAR) | SELECT country FROM table_name_41 WHERE airport = "shanghai pudong international airport" |
Tell me the date for bugatti fpr stanislas czaykowski | CREATE TABLE table_31560 ("Name" text,"Circuit" text,"Date" text,"Winning driver" text,"Winning constructor" text,"Report" text) | SELECT "Date" FROM table_31560 WHERE "Winning constructor" = 'bugatti' AND "Winning driver" = 'stanislas czaykowski' |
what are the two year survival probability of a patient diagnosed with do not resusctate status? | CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE procedures_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,admissi... | SELECT SUM(CASE WHEN patients.dod IS NULL THEN 1 WHEN STRFTIME('%j', patients.dod) - STRFTIME('%j', t2.charttime) > 2 * 365 THEN 1 ELSE 0 END) * 100 / COUNT(*) FROM (SELECT t1.subject_id, t1.charttime FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id... |
What is the release date of the CD by EG Records in the UK? | CREATE TABLE table_57026 ("Country" text,"Release Date" real,"Music Label" text,"Media" text,"Catalogue Number" text) | SELECT SUM("Release Date") FROM table_57026 WHERE "Media" = 'cd' AND "Country" = 'uk' AND "Music Label" = 'eg records' |
On what type of land (public or private) do more wildfires occur? | CREATE TABLE fires (fire_year number,discovery_date number,discovery_doy number,discovery_time text,stat_cause_code number,stat_cause_descr text,cont_date text,cont_doy text,cont_time text,fire_size number,fire_size_class text,latitude number,longitude number,owner_code number,owner_descr text,state text,county text,fi... | SELECT owner_descr FROM fires GROUP BY owner_descr ORDER BY COUNT(*) DESC LIMIT 1 |
how many singles were released in 2010 ? | CREATE TABLE table_204_365 (id number,"year" number,"single" text,"chart positions\nusa billboard hot dance club play" number,"chart positions\npolish charts" number,"album" text) | SELECT COUNT("single") FROM table_204_365 WHERE "year" = 2010 |
Which Venue has a Against larger than 13? | CREATE TABLE table_59567 ("Opposing Teams" text,"Against" real,"Date" text,"Venue" text,"Status" text) | SELECT "Venue" FROM table_59567 WHERE "Against" > '13' |
What is the lowest Goals Agains, when Played is greater than 34? | CREATE TABLE table_name_38 (goals_against INTEGER,played INTEGER) | SELECT MIN(goals_against) FROM table_name_38 WHERE played > 34 |
What is the location of the tallahassee open, with a Score of 269 ( 19)? | CREATE TABLE table_name_83 (location VARCHAR,score VARCHAR,tournament VARCHAR) | SELECT location FROM table_name_83 WHERE score = "269 (–19)" AND tournament = "tallahassee open" |
How many U.S. viewers were there for the number 4 episode in season? | CREATE TABLE table_25246990_5 (us_viewers__millions_ VARCHAR,no_in_season VARCHAR) | SELECT us_viewers__millions_ FROM table_25246990_5 WHERE no_in_season = 4 |
Available in 2-CD format, what is the title of story number 026? | CREATE TABLE table_8020 ("Story #" text,"Title" text,"Doctor" text,"Narrator" text,"Format" text,"release date" text) | SELECT "Title" FROM table_8020 WHERE "Format" = '2-cd' AND "Story #" = '026' |
What is the current status for GM Advanced Design with more than 41 seats? | CREATE TABLE table_name_64 (current_status VARCHAR,make VARCHAR,number_of_seats VARCHAR) | SELECT current_status FROM table_name_64 WHERE make = "gm advanced design" AND number_of_seats > 41 |
For those employees whose salary is in the range of 8000 and 12000 and commission is not null or department number does not equal to 40, find hire_date and the average of department_id bin hire_date by time, and visualize them by a bar chart, could you rank from high to low by the total number? | 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 departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_ID decimal(4,0))CREATE TABLE job_history (... | SELECT HIRE_DATE, AVG(DEPARTMENT_ID) FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40 ORDER BY AVG(DEPARTMENT_ID) DESC |
give the number of patients diagnosed under icd9 code 7245 whose lab test status is delta. | 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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.icd9_code = "7245" AND lab.flag = "delta" |
People with Jesus in their about me section. Yeah, what the name says | CREATE TABLE SuggestedEdits (Id number,PostId number,CreationDate time,ApprovalDate time,RejectionDate time,OwnerUserId number,Comment text,Text text,Title text,Tags text,RevisionGUID other)CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)CREATE TABLE Pos... | SELECT Id AS "user_link", Location, Reputation FROM Users WHERE AboutMe LIKE '%jesus%' OR AboutMe LIKE '%Jesus%' ORDER BY Reputation DESC |
Which reign is the most common among wrestlers? | CREATE TABLE elimination (elimination_id text,wrestler_id text,team text,eliminated_by text,elimination_move text,time text)CREATE TABLE wrestler (wrestler_id number,name text,reign text,days_held text,location text,event text) | SELECT reign FROM wrestler GROUP BY reign ORDER BY COUNT(*) DESC LIMIT 1 |
was the systemicsystolic of patient 027-210868 in 08/this year normal? | CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,... | SELECT COUNT(*) > 0 FROM vitalperiodic WHERE vitalperiodic.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '027-210868')) AND vitalperiodic.systemicsystolic BETWEEN systolic_bp... |
What is the date of the First Performance of Rhys Kosakowski as Billy Elliot in the Original Cast? | CREATE TABLE table_14502 ("Status" text,"Name" text,"First Performance" text,"Last Performance" text,"Style" text) | SELECT "First Performance" FROM table_14502 WHERE "Status" = 'original cast' AND "Name" = 'rhys kosakowski' |
What is the total number of passengers of the airport ranked 15? | CREATE TABLE table_19007 ("Rank" real,"Airport" text,"Total Passengers" real,"% Change 2007/2008" text,"International Passengers" real,"Domestic Passengers" real,"Transit Passengers" real,"Aircraft Movements" real,"Freight (Metric Tonnes)" real) | SELECT "International Passengers" FROM table_19007 WHERE "Rank" = '15' |
What is the sum of Bronze when the rank is more than 11 and gold is less than 0? | CREATE TABLE table_name_47 (bronze INTEGER,rank VARCHAR,gold VARCHAR) | SELECT SUM(bronze) FROM table_name_47 WHERE rank > 11 AND gold < 0 |
Number of posts with a tag name grouped by day. | CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,CreationDate time,RejectionReasonId number,Comment text)CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE ReviewTaskResultTypes (Id number,Name text,Description text)CREATE TABLE Comments (Id number,PostId number,Score nu... | SELECT DATE(CreationDate), COUNT(PostId) FROM Tags, PostTags, Posts WHERE Tags.Id = PostTags.TagId AND Posts.Id = PostId AND Tags.TagName = '##TagName:string##' GROUP BY DATE(CreationDate) ORDER BY DATE(CreationDate) |
How many Laps have Grid larger than 14, and a Rider of sylvain guintoli? | CREATE TABLE table_name_51 (laps VARCHAR,grid VARCHAR,rider VARCHAR) | SELECT COUNT(laps) FROM table_name_51 WHERE grid > 14 AND rider = "sylvain guintoli" |
Which school has a website of http://www.sjfisher.herts.sch.uk/? | CREATE TABLE table_4042 ("School" text,"Gender" text,"Age Range" text,"Religious Affiliation" text,"Location" text,"School website" text) | SELECT "School" FROM table_4042 WHERE "School website" = 'http://www.sjfisher.herts.sch.uk/' |
What was the attendance when they played the New Orleans Saints? | CREATE TABLE table_8321 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Attendance" real) | SELECT "Attendance" FROM table_8321 WHERE "Opponent" = 'new orleans saints' |
What are the results of those matches where the championship is French Open? | CREATE TABLE table_30991 ("Outcome" text,"Year" real,"Championship" text,"Surface" text,"Partner" text,"Opponents" text,"Score" text) | SELECT "Score" FROM table_30991 WHERE "Championship" = 'French Open' |
What was the year when the diameter was 729 km? | CREATE TABLE table_46705 ("Name" text,"Latitude" text,"Longitude" text,"Diameter (km)" real,"Year named" real,"Name origin" text) | SELECT "Year named" FROM table_46705 WHERE "Diameter (km)" = '729' |
Sort the list of names and costs of all procedures in the descending order of cost. | CREATE TABLE procedures (code number,name text,cost number)CREATE TABLE affiliated_with (physician number,department number,primaryaffiliation boolean)CREATE TABLE room (roomnumber number,roomtype text,blockfloor number,blockcode number,unavailable boolean)CREATE TABLE medication (code number,name text,brand text,descr... | SELECT name, cost FROM procedures ORDER BY cost DESC |
Name the samurai for stampede of t. mask | CREATE TABLE table_name_97 (samurai VARCHAR,stampede VARCHAR) | SELECT samurai FROM table_name_97 WHERE stampede = "t. mask" |
When the percentage is 0.34900000000000003 with more than 13 solo blocks and less than 4713 total attempts, what is the greatest assists? | CREATE TABLE table_12687 ("Season" text,"GP/MP" text,"Kills" real,"K/Game" real,"Errors" real,"Total Attempts" real,"Percentage" real,"Assists" real,"Service Aces" real,"Digs" real,"Solo Blocks" real,"Block Assists" real,"Total Blocks" real) | SELECT MAX("Assists") FROM table_12687 WHERE "Percentage" < '0.34900000000000003' AND "Solo Blocks" > '13' AND "Total Attempts" < '4713' |
What team raced with a Foyt engine in the Texas Grand Prix? | CREATE TABLE table_1405704_1 (team VARCHAR,race_name VARCHAR,engine VARCHAR) | SELECT team FROM table_1405704_1 WHERE race_name = "Texas Grand Prix" AND engine = "Foyt" |
Show different parties of people along with the number of people in each party with a bar chart, and I want to order by the X in ascending please. | CREATE TABLE debate (Debate_ID int,Date text,Venue text,Num_of_Audience int)CREATE TABLE debate_people (Debate_ID int,Affirmative int,Negative int,If_Affirmative_Win bool)CREATE TABLE people (People_ID int,District text,Name text,Party text,Age int) | SELECT Party, COUNT(*) FROM people GROUP BY Party ORDER BY Party |
What is the score for the United States in place T1 for David Duval? | CREATE TABLE table_name_80 (score VARCHAR,player VARCHAR,country VARCHAR,place VARCHAR) | SELECT score FROM table_name_80 WHERE country = "united states" AND place = "t1" AND player = "david duval" |
what is patient 55281's first urine out foley output time on the current intensive care unit visit? | CREATE TABLE procedures_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum ... | SELECT outputevents.charttime 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 = 55281) AND icustays.outtime IS NULL) AND outputevents.itemid IN (SELECT d_items.itemid FROM d_item... |
what is the drug route for drug ciprobase? | 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 text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime te... | SELECT prescriptions.route FROM prescriptions WHERE prescriptions.formulary_drug_cd = "CIPROBASE" |
give me the number of patients whose procedure long title is radical neck dissection, unilateral and lab test category is blood gas? | 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 INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE procedures.long_title = "Radical neck dissection, unilateral" AND lab."CATEGORY" = "Blood Gas" |
What is the result when the score is 0-2? | CREATE TABLE table_name_20 (result VARCHAR,score VARCHAR) | SELECT result FROM table_name_20 WHERE score = "0-2" |
How many people were pick #30? | CREATE TABLE table_10812403_4 (position VARCHAR,pick__number VARCHAR) | SELECT COUNT(position) FROM table_10812403_4 WHERE pick__number = 30 |
Who was the opponent in the game held on February 4? | CREATE TABLE table_2732 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text) | SELECT "Team" FROM table_2732 WHERE "Date" = 'February 4' |
Which Type has an Incorporated in of netherlands, a Principal activities of airline, and a Company of transavia.com? | CREATE TABLE table_47146 ("Company" text,"Type" text,"Principal activities" text,"Incorporated in" text,"Group's Equity Shareholding" text) | SELECT "Type" FROM table_47146 WHERE "Incorporated in" = 'netherlands' AND "Principal activities" = 'airline' AND "Company" = 'transavia.com' |
What lane number was Hungary and had a heat of 4? | CREATE TABLE table_name_22 (lane VARCHAR,heat VARCHAR,nationality VARCHAR) | SELECT COUNT(lane) FROM table_name_22 WHERE heat = 4 AND nationality = "hungary" |
What kind of the Winning driver has a Circuit of saint-rapha l? | CREATE TABLE table_62007 ("Name" text,"Circuit" text,"Date" text,"Winning driver" text,"Winning constructor" text,"Report" text) | SELECT "Winning driver" FROM table_62007 WHERE "Circuit" = 'saint-raphaël' |
Who was the centerfold model when a pictorial was done on marilyn monroe? | CREATE TABLE table_1566850_8 (centerfold_model VARCHAR,pictorials VARCHAR) | SELECT centerfold_model FROM table_1566850_8 WHERE pictorials = "Marilyn Monroe" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.