instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
What is lab test abnormal status and lab test name of Roxana Weaver? | 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 diagnoses (subject_id text,hadm_id text,icd9_code text,sho... | SELECT lab.flag, lab.label FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.name = "Roxanna Weaver" |
how many arcade games were released before 1979 ? | CREATE TABLE table_204_480 (id number,"title" text,"alternate title(s)" text,"year" number,"manufacturer" text,"genre(s)" text,"max. players" number) | SELECT COUNT(*) FROM table_204_480 WHERE "year" < 1979 |
My unaccepted answers with non-zero probability of acceptance. | CREATE TABLE Posts (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score number,ViewCount number,Body text,OwnerUserId number,OwnerDisplayName text,LastEditorUserId number,LastEditorDisplayName text,LastEditDate time,LastActivityDate time,Title text,Tags text,Ans... | SELECT Q.Id AS "post_link" FROM Posts AS Q INNER JOIN Posts AS A ON (Q.Id = A.ParentId) INNER JOIN Users AS U ON (Q.OwnerUserId = U.Id) WHERE Q.PostTypeId = 1 AND A.PostTypeId = 2 AND A.OwnerUserId = @UserId AND Q.AcceptedAnswerId IS NULL AND Q.ClosedDate IS NULL AND NOT EXISTS(SELECT A2.Id FROM Posts AS A2 WHERE A2.Po... |
Which class is smaller than 5 and the GWR is 1322 1323? | CREATE TABLE table_name_33 (class VARCHAR,quantity VARCHAR,gwr_nos VARCHAR) | SELECT class FROM table_name_33 WHERE quantity < 5 AND gwr_nos = "1322–1323" |
Who is the prisoner that is older than 45 and has served less than 22 years on death row? | CREATE TABLE table_15193 ("Name" text,"Race" text,"Current age" real,"Age at offense" real,"Years on death row" real,"Location of offense" text) | SELECT "Name" FROM table_15193 WHERE "Current age" > '45' AND "Years on death row" < '22' |
What's the total of Water (sqmi) with a Land (sqmi) of 35.918 and has a Longitude that is smaller than -97.115459? | CREATE TABLE table_66155 ("Township" text,"County" text,"Pop. (2010)" real,"Land (sqmi)" real,"Water (sqmi)" real,"Latitude" real,"Longitude" real,"GEO ID" real,"ANSI code" real) | SELECT SUM("Water (sqmi)") FROM table_66155 WHERE "Land ( sqmi )" = '35.918' AND "Longitude" < '-97.115459' |
Find Deletable Questions I voted to close. | CREATE TABLE Posts (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score number,ViewCount number,Body text,OwnerUserId number,OwnerDisplayName text,LastEditorUserId number,LastEditorDisplayName text,LastEditDate time,LastActivityDate time,Title text,Tags text,Ans... | SELECT DISTINCT Q.Id AS "post_link", A.CreationDate FROM Posts AS Q INNER JOIN PostHistory AS PH ON Q.Id = PH.PostId INNER JOIN Posts AS A ON Q.Id = A.ParentId WHERE PH.CreationDate <= DATEADD(d, -2, GETDATE()) AND PH.PostHistoryTypeId = 10 AND PH.UserId = @UserId AND NOT Q.ClosedDate IS NULL AND A.Score > 0 |
What Rank points has an Event of wc beijing, and Score points of 11? | CREATE TABLE table_name_40 (rank_points VARCHAR,event VARCHAR,score_points VARCHAR) | SELECT rank_points FROM table_name_40 WHERE event = "wc beijing" AND score_points = "11" |
What is the finishes maximum number? | CREATE TABLE table_26010 ("Pos" real,"Constructor" text,"Chassis" text,"Starts" real,"Finishes" real,"Wins" real,"Podiums" real,"Stage wins" real,"Power stage wins" real,"Points" real) | SELECT MAX("Finishes") FROM table_26010 |
Which headphone models have a driver-matched DB of 0.1 and a US MSRP of $49? | CREATE TABLE table_1601027_1 (headphone_model VARCHAR,driver_matched_db VARCHAR,us_msrp VARCHAR) | SELECT headphone_model FROM table_1601027_1 WHERE driver_matched_db = "0.1" AND us_msrp = "$49" |
what is the average daily number of people diagnosed with cv dis nec-deliver w p/p until 2102? | CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime t... | SELECT AVG(t1.c1) FROM (SELECT COUNT(DISTINCT diagnoses_icd.hadm_id) AS c1 FROM diagnoses_icd WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'cv dis nec-deliver w p/p') AND STRFTIME('%y', diagnoses_icd.charttime) <= '2102' GROUP BY STRFTIME('%y... |
what is days of hospital stay and procedure short title of subject id 813? | 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 demographic.days_stay, procedures.short_title FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.subject_id = "813" |
What Lane has a 0.209 React entered with a Rank entry that is larger than 6? | CREATE TABLE table_name_84 (lane VARCHAR,react VARCHAR,rank VARCHAR) | SELECT lane FROM table_name_84 WHERE react > 0.209 AND rank > 6 |
What package offers cinema content and is n. 333? | CREATE TABLE table_20396 ("N\u00b0" text,"Television service" text,"Country" text,"Language" text,"Content" text,"DAR" text,"HDTV" text,"PPV" text,"Package/Option" text) | SELECT "Package/Option" FROM table_20396 WHERE "Content" = 'cinema' AND "N\u00b0" = '333' |
Which upper level CS courses are offered 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 INNER JOIN program_course ON program_course.course_id = course.course_id INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN semester ON semester.semester_id = course_offering.semester WHERE program_course.catego... |
did ibricic score more or less goals in his 3 seasons with hajduk split when compared to his 4 seasons with nk zagreb ? | CREATE TABLE table_203_767 (id number,"season" text,"club" text,"league" text,"apps" number,"goals" number) | SELECT (SELECT SUM("goals") FROM table_203_767 WHERE "club" = 'hajduk split') > (SELECT SUM("goals") FROM table_203_767 WHERE "club" = 'nk zagreb') |
What was the callback venue for the Phoenix, Arizona auditions? | CREATE TABLE table_name_15 (callback_venue VARCHAR,audition_city VARCHAR) | SELECT callback_venue FROM table_name_15 WHERE audition_city = "phoenix, arizona" |
A bar chart shows the distribution of date_address_from and the amount of date_address_from , and group by attribute other_details and bin date_address_from by time. | CREATE TABLE Behavior_Incident (incident_id INTEGER,incident_type_code VARCHAR(10),student_id INTEGER,date_incident_start DATETIME,date_incident_end DATETIME,incident_summary VARCHAR(255),recommendations VARCHAR(255),other_details VARCHAR(255))CREATE TABLE Ref_Incident_Type (incident_type_code VARCHAR(10),incident_type... | SELECT date_address_from, COUNT(date_address_from) FROM Student_Addresses GROUP BY other_details ORDER BY monthly_rental DESC |
What players finished 2nd? | CREATE TABLE table_72640 ("Date" text,"Tournament" text,"Player" text,"Country" text,"Rounds" text,"Score" real,"To par" text,"Finish" text) | SELECT "Player" FROM table_72640 WHERE "Finish" = '2nd' |
If the UK air date is February 18, 2013, who was the episode written by? | CREATE TABLE table_3358 ("Total" real,"#" real,"Title" text,"Directed by" text,"Written by" text,"Canadian air date" text,"UK air date" text,"Canadian Viewers (millions)" text) | SELECT "Written by" FROM table_3358 WHERE "UK air date" = 'February 18, 2013' |
Who did they play when the score was 95-118? | CREATE TABLE table_49851 ("Date" text,"H/A/N" text,"Opponent" text,"Score" text,"Record" text) | SELECT "Opponent" FROM table_49851 WHERE "Score" = '95-118' |
What kind of Obama that has a Source of rasmussen reports? | CREATE TABLE table_42109 ("Source" text,"Date" text,"Clinton" text,"Obama" text,"Undecided" text) | SELECT "Obama" FROM table_42109 WHERE "Source" = 'rasmussen reports' |
What is the Player that has a To standard of 1, and a Score of 71-68-76=215? | CREATE TABLE table_44462 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text) | SELECT "Player" FROM table_44462 WHERE "To par" = '–1' AND "Score" = '71-68-76=215' |
What is the ceremony year when Ganito Kami Noon, Paano Kayo Ngayon was the original title? | CREATE TABLE table_78757 ("Year (Ceremony)" text,"Film title used in nomination" text,"Original title" text,"Director" text,"Result" text) | SELECT "Year (Ceremony)" FROM table_78757 WHERE "Original title" = 'ganito kami noon, paano kayo ngayon' |
Return the city with the customer type code 'Good Credit Rating' that had the fewest customers. | CREATE TABLE complaints (complaint_id number,product_id number,customer_id number,complaint_outcome_code text,complaint_status_code text,complaint_type_code text,date_complaint_raised time,date_complaint_closed time,staff_id number)CREATE TABLE customers (customer_id number,customer_type_code text,address_line_1 text,a... | SELECT town_city FROM customers WHERE customer_type_code = "Good Credit Rating" GROUP BY town_city ORDER BY COUNT(*) LIMIT 1 |
What is the Format when Alfa records is the label, and there is a Catalog of alca-9016? | CREATE TABLE table_7664 ("Region" text,"Date" text,"Label" text,"Format" text,"Catalog" text) | SELECT "Format" FROM table_7664 WHERE "Label" = 'alfa records' AND "Catalog" = 'alca-9016' |
What start has a ford cosworth dfx as the engine, a year later than 1981, and kraco enterprises as the entrant? | CREATE TABLE table_42850 ("Year" real,"Chassis" text,"Engine" text,"Start" real,"Finish" real,"Entrant" text) | SELECT "Start" FROM table_42850 WHERE "Engine" = 'ford cosworth dfx' AND "Year" > '1981' AND "Entrant" = 'kraco enterprises' |
When was Windy Hill used as a venue? | CREATE TABLE table_54457 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Date" FROM table_54457 WHERE "Venue" = 'windy hill' |
when did patient 029-16431 have a base excess test for the last time when they came to the hospital last time? | 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 cost (costid number,uniquepid text,patienthealthsystemstayid number,eventt... | SELECT lab.labresulttime FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '029-16431' AND NOT patient.hospitaldischargetime IS NULL ORDER BY patient.hospitala... |
What is the title of the episode directed by Rodney Clouden? | CREATE TABLE table_25756 ("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 (millions)" text) | SELECT "Title" FROM table_25756 WHERE "Directed by" = 'Rodney Clouden' |
what is the rank when silver is less than 0? | CREATE TABLE table_name_6 (rank INTEGER,silver INTEGER) | SELECT SUM(rank) FROM table_name_6 WHERE silver < 0 |
On what Date was the Score of 3 6, 6 4, 3 6, 6 1, 6 2 | CREATE TABLE table_name_76 (date INTEGER,score VARCHAR) | SELECT SUM(date) FROM table_name_76 WHERE score = "3–6, 6–4, 3–6, 6–1, 6–2" |
what is the name of the disease that dawn cooper is primarily suffering from? also find his admission type. | 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 demographic.admission_type, demographic.diagnosis FROM demographic WHERE demographic.name = "Dawn Cooper" |
Bronze Badges for React in London, UK. | 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 "#", Users.Id AS "user_link", Reputation, Location, Name FROM Users, Badges WHERE Users.Id = Badges.UserId AND Badges.TagBased = 1 AND Users.Location LIKE '%United%' AND Badges.Name = 'knockout.js' AND Badges.Name = 'reactjs' ORDER BY Reputation DESC |
How much is the average score for New York state? | CREATE TABLE table_12338595_1 (average VARCHAR,state VARCHAR) | SELECT average FROM table_12338595_1 WHERE state = "New York" |
What is the average React, when Mark is less than 7.93? | CREATE TABLE table_name_53 (react INTEGER,mark INTEGER) | SELECT AVG(react) FROM table_name_53 WHERE mark < 7.93 |
What was the best finish for 206 on the money list? | CREATE TABLE table_4209 ("Player" text,"Starts" real,"Cuts made" real,"Best finish" text,"Money list rank" text,"Earnings ($)" real) | SELECT "Best finish" FROM table_4209 WHERE "Money list rank" = '206' |
Who was the team with the smallest crowd at the Princes Park venue? | CREATE TABLE table_name_73 (crowd INTEGER,venue VARCHAR) | SELECT MIN(crowd) FROM table_name_73 WHERE venue = "princes park" |
i'd like to know what flights UA has from DALLAS to SAN FRANCISCO | CREATE TABLE food_service (meal_code text,meal_number int,compartment text,meal_description varchar)CREATE TABLE time_interval (period text,begin_time int,end_time int)CREATE TABLE city (city_code varchar,city_name varchar,state_code varchar,country_name varchar,time_zone_code varchar)CREATE TABLE airport_service (city... | 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 = 'SAN FRANCISCO' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = ... |
had patient 021-114154 had any allergies until 56 months ago? | CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text... | SELECT COUNT(*) > 0 FROM allergy WHERE allergy.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '021-114154')) AND DATETIME(allergy.allergytime) <= DATETIME(CURRENT_TIME(), '-56... |
what is the minimum total cost of a hospital that includes laboratory testing for c-reactive protein since 2102? | CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,startdate time,enddate ... | SELECT MIN(t1.c1) FROM (SELECT SUM(cost.cost) AS c1 FROM cost WHERE cost.hadm_id IN (SELECT labevents.hadm_id FROM labevents WHERE labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'c-reactive protein')) AND STRFTIME('%y', cost.chargetime) >= '2102' GROUP BY cost.hadm_id) AS t1 |
What type is the race with the vicenza to marostica course? | CREATE TABLE table_69446 ("Date" text,"Course" text,"Distance" text,"Type" text,"Winner" text) | SELECT "Type" FROM table_69446 WHERE "Course" = 'vicenza to marostica' |
What is the average climb for Tenbosse? | CREATE TABLE table_16654785_2 (average_climb___percentage_ INTEGER,name VARCHAR) | SELECT MIN(average_climb___percentage_) FROM table_16654785_2 WHERE name = "Tenbosse" |
Name the least tied with games more than 70 and goals for less than 310 with points of 98 | CREATE TABLE table_name_94 (tied INTEGER,points VARCHAR,games VARCHAR,goals_for VARCHAR) | SELECT MIN(tied) FROM table_name_94 WHERE games > 70 AND goals_for < 310 AND points = 98 |
Name the left of the Lady Pilots. | CREATE TABLE table_10577579_3 (left VARCHAR,women’s_nickname VARCHAR) | SELECT left FROM table_10577579_3 WHERE women’s_nickname = "Lady Pilots" |
What is the most recent year with a finish in 2nd position? | CREATE TABLE table_name_22 (season INTEGER,position VARCHAR) | SELECT MAX(season) FROM table_name_22 WHERE position = "2nd" |
Name the latitude of laima tessera | CREATE TABLE table_21089 ("Name" text,"Latitude" text,"Longitude" text,"Diameter (km)" text,"Year named" real,"Name origin" text) | SELECT "Latitude" FROM table_21089 WHERE "Name" = 'Laima Tessera' |
For those records from the products and each product's manufacturer, return a bar chart about the distribution of name and code , and group by attribute founder, and order by the Code in desc. | CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER)CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL) | SELECT T1.Name, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Founder, T1.Name ORDER BY T1.Code DESC |
What is the number of countries in the artist table?, I want to order by the bars in asc. | 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)CREATE TABLE artist (Artist_ID int,Name text,Country text,Year_Join int,Age int) | SELECT Country, COUNT(Country) FROM artist GROUP BY Country ORDER BY Country |
What was part 4 when part 3 was *hleupun? | CREATE TABLE table_49394 ("Class" text,"Part 1" text,"Part 2" text,"Part 3" text,"Part 4" text) | SELECT "Part 4" FROM table_49394 WHERE "Part 3" = '*hleupun' |
Tell me the college for carl hagelin | CREATE TABLE table_57288 ("Round" real,"Player" text,"Position" text,"Nationality" text,"College/Junior/Club Team (League)" text) | SELECT "College/Junior/Club Team (League)" FROM table_57288 WHERE "Player" = 'carl hagelin' |
Name the population of maryborough when population of woocoo is 2700 | CREATE TABLE table_12576536_1 (population__maryborough_ VARCHAR,population__woocoo_ VARCHAR) | SELECT population__maryborough_ FROM table_12576536_1 WHERE population__woocoo_ = 2700 |
With events less than 0, what is the fewest Top-5? | CREATE TABLE table_name_12 (top_5 INTEGER,events INTEGER) | SELECT MIN(top_5) FROM table_name_12 WHERE events < 0 |
What is Incumbent, when Results is 'Re-Elected', when Party is 'Democratic', and when District is 'Minnesota 7'? | CREATE TABLE table_58743 ("District" text,"Incumbent" text,"Party" text,"First elected" real,"Results" text) | SELECT "Incumbent" FROM table_58743 WHERE "Results" = 're-elected' AND "Party" = 'democratic' AND "District" = 'minnesota 7' |
What week has December 19, 2004 as the date? | CREATE TABLE table_name_33 (week VARCHAR,date VARCHAR) | SELECT week FROM table_name_33 WHERE date = "december 19, 2004" |
Create a bar chart showing capacity across name | CREATE TABLE schedule (Cinema_ID int,Film_ID int,Date text,Show_times_per_day int,Price float)CREATE TABLE cinema (Cinema_ID int,Name text,Openning_year int,Capacity int,Location text)CREATE TABLE film (Film_ID int,Rank_in_series int,Number_in_season int,Title text,Directed_by text,Original_air_date text,Production_cod... | SELECT Name, Capacity FROM cinema |
Who served as an advisor for students who have treasurer votes in the spring election cycle? | CREATE TABLE student (stuid number,lname text,fname text,age number,sex text,major number,advisor number,city_code text)CREATE TABLE voting_record (stuid number,registration_date text,election_cycle text,president_vote number,vice_president_vote number,secretary_vote number,treasurer_vote number,class_president_vote nu... | SELECT DISTINCT T1.advisor FROM student AS T1 JOIN voting_record AS T2 ON T1.stuid = T2.treasurer_vote WHERE T2.election_cycle = "Spring" |
What was hayley ericksen's score? | CREATE TABLE table_45058 ("Outcome" text,"Date" text,"Tournament" text,"Surface" text,"Partner" text,"Opponents in the final" text,"Score" text) | SELECT "Score" FROM table_45058 WHERE "Partner" = 'hayley ericksen' |
What is the venue of the 1990 Asian games? | CREATE TABLE table_name_77 (venue VARCHAR,competition VARCHAR) | SELECT venue FROM table_name_77 WHERE competition = "1990 asian games" |
how long did roberto feliberti cintron serve before retirement ? | CREATE TABLE table_203_671 (id number,"name" text,"rank" text,"age" number,"years until mandatory retirement" text,"appointed by" text,"year appointed" number) | SELECT "years until mandatory retirement" FROM table_203_671 WHERE "name" = 'roberto feliberti cintron' |
What is the tier IV year for the tournament held in Tampa? | CREATE TABLE table_20630462_1 (tier_iv_in VARCHAR,tournament VARCHAR) | SELECT tier_iv_in FROM table_20630462_1 WHERE tournament = "Tampa" |
Which qualifying 1 time has a best under 58.669 and a qualifying 2 time under 57.897? | CREATE TABLE table_name_50 (qual_1 VARCHAR,best VARCHAR,qual_2 VARCHAR) | SELECT qual_1 FROM table_name_50 WHERE best < 58.669 AND qual_2 < 57.897 |
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, a line chart shows the trend of manager_id over hire_date . | CREATE TABLE regions (REGION_ID decimal(5,0),REGION_NAME varchar(25))CREATE TABLE jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN_SALARY decimal(6,0),MAX_SALARY decimal(6,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 ... | SELECT HIRE_DATE, MANAGER_ID FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40 |
When did the Cowboys score 13 points in 1966? | CREATE TABLE table_22801165_1 (date VARCHAR,cowboys_points VARCHAR) | SELECT date FROM table_22801165_1 WHERE cowboys_points = 13 |
What was the population density in km2 for 2011 in the division where area in km2 was 684.37 in 2011? | CREATE TABLE table_24027047_1 (population_density___km²_2011_ VARCHAR,area__km²__2011 VARCHAR) | SELECT population_density___km²_2011_ FROM table_24027047_1 WHERE area__km²__2011 * * = "684.37" |
what is the insurance of the patient name jerry deberry? | 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 prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd t... | SELECT demographic.insurance FROM demographic WHERE demographic.name = "Jerry Deberry" |
With the game that was less than 16 what was the high assists? | CREATE TABLE table_8590 ("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_8590 WHERE "Game" < '16' |
Accepted non-self-answers without accept-vote, where question owner exists. | CREATE TABLE Badges (Id number,UserId number,Name text,Date time,Class number,TagBased boolean)CREATE TABLE CloseReasonTypes (Id number,Name text,Description text)CREATE TABLE PostsWithDeleted (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score number,ViewCount... | SELECT p.AcceptedAnswerId AS "post_link", p.OwnerUserId AS "user_link" FROM Posts AS p WHERE NOT p.OwnerUserId IS NULL AND p.AcceptedAnswerId NOT IN (SELECT v.PostId FROM Votes AS v WHERE v.VoteTypeId = 1) AND p.AcceptedAnswerId NOT IN (SELECT q.Id FROM Posts AS q WHERE q.OwnerUserId = p.OwnerUserId) ORDER BY p.Accepte... |
Which player plays for the Winnipeg Blue Bombers? | CREATE TABLE table_21321804_3 (player VARCHAR,cfl_team VARCHAR) | SELECT player FROM table_21321804_3 WHERE cfl_team = "Winnipeg Blue Bombers" |
What is the largest average for the episode with 1.97 million Hong Kong viewers? | CREATE TABLE table_24856090_1 (average INTEGER,hk_viewers VARCHAR) | SELECT MAX(average) FROM table_24856090_1 WHERE hk_viewers = "1.97 million" |
What was the record at the game that had a loss of Lemanczyk (0 1)? | CREATE TABLE table_name_34 (record VARCHAR,loss VARCHAR) | SELECT record FROM table_name_34 WHERE loss = "lemanczyk (0–1)" |
Nation of total has what sum of gold? | CREATE TABLE table_35261 ("Nation" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real) | SELECT SUM("Gold") FROM table_35261 WHERE "Nation" = 'total' |
How many points and bonuses did Kurt Busch get? | CREATE TABLE table_27940569_1 (pts_bns VARCHAR,driver VARCHAR) | SELECT pts_bns FROM table_27940569_1 WHERE driver = "Kurt Busch" |
what is the natural change (per 1000) when the crude death rate (per 1000) is 10? | CREATE TABLE table_name_61 (natural_change__per_1000_ VARCHAR,crude_death_rate__per_1000_ VARCHAR) | SELECT natural_change__per_1000_ FROM table_name_61 WHERE crude_death_rate__per_1000_ = 10 |
Get Users by Location and Tag. | CREATE TABLE CloseReasonTypes (Id number,Name text,Description text)CREATE TABLE Comments (Id number,PostId number,Score number,Text text,CreationDate time,UserDisplayName text,UserId number,ContentLicense text)CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPostId number,LinkTypeId number)CREA... | SELECT u.DisplayName, 'http://stackoverflow.com/users/' + CAST(u.Id AS TEXT(255)) AS "httplink", u.Reputation, COUNT(p.Title) AS "questions_answered" FROM Users AS u INNER JOIN Posts AS p ON p.OwnerUserId = u.Id INNER JOIN Posts AS ans ON p.Id = ans.ParentId INNER JOIN PostTags AS pt ON p.Id = pt.PostId INNER JOIN Tags... |
what is the number of patients whose age is less than 49 and diagnoses icd9 code is 29590? | 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 demographic.age < "49" AND diagnoses.icd9_code = "29590" |
i mean how many hours has it been since the first time patient 15794 had a gastric meds intake on the current icu visit? | CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE cost (row_id number,subject_id number,hadm_i... | SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', inputevents_cv.charttime)) FROM inputevents_cv WHERE inputevents_cv.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 15794) AND icustays.outtime IS NULL)... |
Bar chart of how many headquarters from each headquarters, order from high to low by the bars. | CREATE TABLE gas_station (Station_ID int,Open_Year int,Location text,Manager_Name text,Vice_Manager_Name text,Representative_Name text)CREATE TABLE station_company (Station_ID int,Company_ID int,Rank_of_the_Year int)CREATE TABLE company (Company_ID int,Rank int,Company text,Headquarters text,Main_Industry text,Sales_bi... | SELECT Headquarters, COUNT(Headquarters) FROM company GROUP BY Headquarters ORDER BY Headquarters DESC |
what was the name of the first competition according to this chart ? | CREATE TABLE table_203_513 (id number,"no." number,"date" text,"home team" text,"visiting team" text,"goals" text,"score" text,"result" text,"venue" text,"competition" text) | SELECT "competition" FROM table_203_513 WHERE id = 1 |
What is the total number of passengers of the airport ranked 15? | CREATE TABLE table_13836704_7 (international_passengers VARCHAR,rank VARCHAR) | SELECT international_passengers FROM table_13836704_7 WHERE rank = 15 |
What is the possibility of being able to take ACC 990 in Winter of 2014 ? | CREATE TABLE gsi (course_offering_id int,student_id int)CREATE TABLE ta (campus_job_id int,student_id int,location varchar)CREATE TABLE offering_instructor (offering_instructor_id int,offering_id int,instructor_id int)CREATE TABLE instructor (instructor_id int,name varchar,uniqname varchar)CREATE TABLE semester (semest... | SELECT COUNT(*) > 0 FROM course, course_offering, semester WHERE course.course_id = course_offering.course_id AND course.department = 'ACC' AND course.number = 990 AND semester.semester = 'Winter' AND semester.semester_id = course_offering.semester AND semester.year = 2014 |
what film was released before devakanya ? | CREATE TABLE table_204_961 (id number,"title" text,"director" text,"production" text,"music" text,"cast" text,"release date" text) | SELECT "title" FROM table_204_961 WHERE id = (SELECT id FROM table_204_961 WHERE "title" = 'devakanya') - 1 |
Show me a bar chart about the number of races held in each year after 2014, and order X-axis from high to low order please. | CREATE TABLE races (raceId INTEGER,year INTEGER,round INTEGER,circuitId INTEGER,name TEXT,date TEXT,time TEXT,url TEXT)CREATE TABLE driverStandings (driverStandingsId INTEGER,raceId INTEGER,driverId INTEGER,points REAL,position INTEGER,positionText TEXT,wins INTEGER)CREATE TABLE constructorStandings (constructorStandin... | SELECT year, COUNT(year) FROM races AS T1 JOIN results AS T2 ON T1.raceId = T2.raceId WHERE T1.year > 2014 GROUP BY year ORDER BY year DESC |
What is the Result where Goal is 9? | CREATE TABLE table_name_68 (result VARCHAR,goal VARCHAR) | SELECT result FROM table_name_68 WHERE goal = 9 |
What is H/A/N, when Date is October 31? | CREATE TABLE table_name_50 (h_a_n VARCHAR,date VARCHAR) | SELECT h_a_n FROM table_name_50 WHERE date = "october 31" |
When can I take EECS 574 ? | CREATE TABLE area (course_id int,area varchar)CREATE TABLE program (program_id int,name varchar,college varchar,introduction varchar)CREATE TABLE ta (campus_job_id int,student_id int,location varchar)CREATE TABLE course (course_id int,name varchar,department varchar,number varchar,credits varchar,advisory_requirement v... | SELECT DISTINCT semester.semester, semester.year FROM course, course_offering, semester WHERE course.course_id = course_offering.course_id AND course.department = 'EECS' AND course.number = 574 AND course_offering.semester = semester.semester_id AND semester.semester_id > (SELECT SEMESTERalias1.semester_id FROM semeste... |
The Maserati 4cl's minimum no was? | CREATE TABLE table_24682 ("No" real,"Driver" text,"Entrant" text,"Constructor" text,"Chassis" text,"Engine" text) | SELECT MIN("No") FROM table_24682 WHERE "Chassis" = 'Maserati 4CL' |
How many camera lenses have a focal length longer than 15 mm? | CREATE TABLE camera_lens (focal_length_mm INTEGER) | SELECT COUNT(*) FROM camera_lens WHERE focal_length_mm > 15 |
what was patient 030-42006's last intake time on 12/29/this year. | CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE diagnosis (diagnosisid number,patientunitstayi... | 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 = '030-42006')) AND intakeoutput.cellpath LIKE '%intake%... |
Performer 2 of compilation 1 had what performer 1? | CREATE TABLE table_name_55 (performer_1 VARCHAR,performer_2 VARCHAR) | SELECT performer_1 FROM table_name_55 WHERE performer_2 = "compilation 1" |
Give me a bar chart for how many date of transaction of each date of transaction, and display by the the number of date of transaction in ascending. | CREATE TABLE Sales (sales_transaction_id INTEGER,sales_details VARCHAR(255))CREATE TABLE Transactions_Lots (transaction_id INTEGER,lot_id INTEGER)CREATE TABLE Transactions (transaction_id INTEGER,investor_id INTEGER,transaction_type_code VARCHAR(10),date_of_transaction DATETIME,amount_of_transaction DECIMAL(19,4),share... | SELECT date_of_transaction, COUNT(date_of_transaction) FROM Transactions ORDER BY COUNT(date_of_transaction) |
What is the lowest 1971 number of the Macedonian population with a 2002 value greater than 133 and a 1991 value less than 171? | CREATE TABLE table_45668 ("Macedonian population in Vojvodina" text,"1961" real,"Number 1971" real,"1981" real,"1991" real,"2002" real) | SELECT MIN("Number 1971") FROM table_45668 WHERE "2002" > '133' AND "1991" < '171' |
WHAT DATE HAD 6 RANK? | CREATE TABLE table_60981 ("Date" text,"Opponent#" text,"Rank #" text,"Site" text,"Result" text,"Attendance" text) | SELECT "Date" FROM table_60981 WHERE "Rank #" = '6' |
What was the torque@rpm of the sl 65 amg? | CREATE TABLE table_name_75 (torque VARCHAR,model VARCHAR) | SELECT torque AS @rpm FROM table_name_75 WHERE model = "sl 65 amg" |
How many 5th venue cities were there when Doha was the 1st venue city? | CREATE TABLE table_25020 ("Year" real,"1st Venue" text,"2nd Venue" text,"3rd Venue" text,"4th Venue" text,"5th Venue" text) | SELECT COUNT("5th Venue") FROM table_25020 WHERE "1st Venue" = 'Doha' |
Name the position for stanley havili | CREATE TABLE table_26533354_8 (position VARCHAR,player VARCHAR) | SELECT position FROM table_26533354_8 WHERE player = "Stanley Havili" |
What is the sum of silver values that have bronze values under 4, golds over 2, and a rank of 3? | CREATE TABLE table_36790 ("Rank" text,"Nation" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real) | SELECT SUM("Silver") FROM table_36790 WHERE "Bronze" < '4' AND "Rank" = '3' AND "Gold" > '2' |
who is the runner-up where location is ellenton, fl and year is 2004 | CREATE TABLE table_16529 ("Year" text,"Champion" text,"Score" text,"Runner-Up" text,"Location" text,"Semi-Finalist #1" text,"Semi-Finalist #2" text) | SELECT "Runner-Up" FROM table_16529 WHERE "Location" = 'Ellenton, FL' AND "Year" = '2004' |
Which Game has an Attendance smaller than 18,277, and Points of 64? | CREATE TABLE table_48714 ("Game" real,"Date" text,"Opponent" text,"Score" text,"Location" text,"Attendance" real,"Record" text,"Points" real) | SELECT MAX("Game") FROM table_48714 WHERE "Attendance" < '18,277' AND "Points" = '64' |
What is the highest number of Seats 2006 held by the communities of B rger F r Gro -Rohrheim Party/Voter Community, with a %2006 less than 21.3? | CREATE TABLE table_name_5 (seats_2006 INTEGER,parties_and_voter_communities VARCHAR,_percentage_2006 VARCHAR) | SELECT MAX(seats_2006) FROM table_name_5 WHERE parties_and_voter_communities = "bürger für groß-rohrheim" AND _percentage_2006 < 21.3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.