instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
What was the result of the game that was played on february 27, 2000? | CREATE TABLE table_name_38 (result VARCHAR,date VARCHAR) | SELECT result FROM table_name_38 WHERE date = "february 27, 2000" |
Who is the visitor when the record is 2-1? | CREATE TABLE table_41820 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Leading scorer" text,"Attendance" text,"Record" text) | SELECT "Visitor" FROM table_41820 WHERE "Record" = '2-1' |
what number of patients given the drug ciprofloxacin were male? | 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.gender = "M" AND prescriptions.drug = "Ciprofloxacin" |
Of questions that have upvoted answers, how many have accepted answers?. | CREATE TABLE CloseReasonTypes (Id number,Name text,Description text)CREATE TABLE PostTags (PostId number,TagId number)CREATE TABLE ReviewTaskStates (Id number,Name text,Description text)CREATE TABLE PostFeedback (Id number,PostId number,IsAnonymous boolean,VoteTypeId number,CreationDate time)CREATE TABLE ReviewTaskType... | SELECT a.Id AS "Answer ID", p.Id AS "Question ID", p.Title AS "Title" FROM Posts AS p JOIN Posts AS a ON p.Id = a.ParentId WHERE p.PostTypeId = 1 AND a.OwnerUserId = '##UserId:int##' AND a.Score >= '##MinAnswerScore:int##' AND a.Id != p.AcceptedAnswerId |
How many climbers are from each country, and sort by the Y in ascending. | CREATE TABLE mountain (Mountain_ID int,Name text,Height real,Prominence real,Range text,Country text)CREATE TABLE climber (Climber_ID int,Name text,Country text,Time text,Points real,Mountain_ID int) | SELECT Country, COUNT(*) FROM climber GROUP BY Country ORDER BY COUNT(*) |
What is the total number of points where there were 3 losses and a played number bigger than 12? | CREATE TABLE table_7216 ("Position" real,"Team" text,"Points" real,"Played" real,"Drawn" real,"Lost" real,"Against" real,"Difference" text) | SELECT SUM("Points") FROM table_7216 WHERE "Lost" = '3' AND "Played" > '12' |
What is the cost of 972 Min Press caused 52 death? | CREATE TABLE table_name_36 (damage__millions_usd__ VARCHAR,min_press___mbar__ VARCHAR,deaths VARCHAR) | SELECT damage__millions_usd__ FROM table_name_36 WHERE min_press___mbar__ = "972" AND deaths = "52" |
what is marital status and admission type of subject id 15898? | CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag text,admission_location text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ... | SELECT demographic.marital_status, demographic.admission_type FROM demographic WHERE demographic.subject_id = "15898" |
Which railway has a class of 250 and year 1936? | CREATE TABLE table_5682 ("Gauge" text,"Railway" text,"Class" text,"Works no." text,"Year" text,"Builder" text) | SELECT "Railway" FROM table_5682 WHERE "Class" = '250' AND "Year" = '1936' |
Who are all the writers of episodes in season 24? | CREATE TABLE table_25800134_2 (writer_s_ VARCHAR,season__number VARCHAR) | SELECT writer_s_ FROM table_25800134_2 WHERE season__number = 24 |
How many 'series' were in the 12th 'position? | CREATE TABLE table_26473176_1 (series VARCHAR,position VARCHAR) | SELECT COUNT(series) FROM table_26473176_1 WHERE position = "12th" |
What is the ratings for the original air date may 25, 2010 22.00 - 22.54? | CREATE TABLE table_26591434_1 (ratings__kansai_ VARCHAR,original_airdate VARCHAR) | SELECT ratings__kansai_ FROM table_26591434_1 WHERE original_airdate = "May 25, 2010 22.00 - 22.54" |
who guest starred on the episode with a 1.44m rating | CREATE TABLE table_29135051_3 (guest_s_ VARCHAR,ratings VARCHAR) | SELECT guest_s_ FROM table_29135051_3 WHERE ratings = "1.44m" |
How many years did Paul Griffin play for the Jazz? | CREATE TABLE table_11545282_7 (years_for_jazz VARCHAR,player VARCHAR) | SELECT COUNT(years_for_jazz) FROM table_11545282_7 WHERE player = "Paul Griffin" |
What type of 3D game did Valve Corporation release? | CREATE TABLE table_name_4 (genre VARCHAR,type VARCHAR,developer_s_ VARCHAR) | SELECT genre FROM table_name_4 WHERE type = "3d" AND developer_s_ = "valve corporation" |
In what year was the feature at a 33.3S latitude named? | CREATE TABLE table_16799784_8 (year_named INTEGER,latitude VARCHAR) | SELECT MAX(year_named) FROM table_16799784_8 WHERE latitude = "33.3S" |
total number of attendees at the two games against the new england patriots during the season | CREATE TABLE table_204_443 (id number,"week" number,"date" text,"opponent" text,"result" text,"game site" text,"attendance" number,"bye" text) | SELECT SUM("attendance") FROM table_204_443 WHERE "opponent" = 'new england patriots' |
what is the type when the position is ambassador and the location is rabat? | CREATE TABLE table_name_62 (type VARCHAR,position VARCHAR,location VARCHAR) | SELECT type FROM table_name_62 WHERE position = "ambassador" AND location = "rabat" |
provide the number of patients whose death status is 0 and diagnoses icd9 code is 4260? | 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 COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.expire_flag = "0" AND diagnoses.icd9_code = "4260" |
Which country in the 2008 summer olympics is vadim devyatovskiy from? | CREATE TABLE table_name_16 (country VARCHAR,olympics VARCHAR,name VARCHAR) | SELECT country FROM table_name_16 WHERE olympics = "2008 summer olympics" AND name = "vadim devyatovskiy" |
what is the difference in tonnage between the heaviest and the lightest ships ? | CREATE TABLE table_204_100 (id number,"date" text,"name of ship" text,"nationality" text,"tonnage" number,"fate" text) | SELECT MAX("tonnage") - MIN("tonnage") FROM table_204_100 |
Tell me the opponents for mashona washington november 21, 2009 | CREATE TABLE table_name_43 (opponents VARCHAR,partner VARCHAR,date VARCHAR) | SELECT opponents FROM table_name_43 WHERE partner = "mashona washington" AND date = "november 21, 2009" |
who is the away team when the home team is sydney spirit? | CREATE TABLE table_name_28 (away_team VARCHAR,home_team VARCHAR) | SELECT away_team FROM table_name_28 WHERE home_team = "sydney spirit" |
What power has A as the class, and 93.7 as the frequency? | CREATE TABLE table_66474 ("City of license" text,"Identifier" text,"Frequency" text,"Power" text,"Class" text,"RECNet" text) | SELECT "Power" FROM table_66474 WHERE "Class" = 'a' AND "Frequency" = '93.7' |
What Australian Marquee team is Michael Beauchamp a captain of? | CREATE TABLE table_name_13 (australian_marquee VARCHAR,captain VARCHAR) | SELECT australian_marquee FROM table_name_13 WHERE captain = "michael beauchamp" |
What is the total number of population in the year 2005 where the population density 35.9 (/km 2)? | CREATE TABLE table_1480455_1 (population__2005_ VARCHAR,population_density___km_2__ VARCHAR) | SELECT COUNT(population__2005_) FROM table_1480455_1 WHERE population_density___km_2__ = "35.9" |
which location has the best time other than brussels ? | CREATE TABLE table_204_576 (id number,"year" number,"best" text,"location" text,"date" text,"world rank" text) | SELECT "location" FROM table_204_576 WHERE "location" <> 'brussels' ORDER BY "best" LIMIT 1 |
find the drug name of drug code nalo4i. | 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 prescriptions.drug FROM prescriptions WHERE prescriptions.formulary_drug_cd = "NALO4I" |
What date did the episode air when guy grossi won? | CREATE TABLE table_31057 ("Episode" real,"Airdate" text,"Iron Chef" text,"Challenger" text,"Theme Ingredient" text,"Winner" text) | SELECT "Airdate" FROM table_31057 WHERE "Winner" = 'Guy Grossi' |
what is b - bishop where ab - angry boar is vw - vertical wolf? | CREATE TABLE table_28262 ("AB - Angry boar" text,"B - Bishop" text,"BA - Running Bear" text,"BB - Blind Bear" text,"BC - Beast Cadet" text) | SELECT "B - Bishop" FROM table_28262 WHERE "AB - Angry boar" = 'VW - Vertical Wolf' |
How many movie directors are there? | CREATE TABLE culture_company (company_name text,type text,incorporated_in text,group_equity_shareholding number,book_club_id text,movie_id text)CREATE TABLE movie (movie_id number,title text,year number,director text,budget_million number,gross_worldwide number)CREATE TABLE book_club (book_club_id number,year number,au... | SELECT COUNT(DISTINCT director) FROM movie |
Plot the number of payment method code by grouped by payment method code as a bar graph, and list by the total number from high to low. | CREATE TABLE Claims (Claim_ID INTEGER,Policy_ID INTEGER,Date_Claim_Made DATE,Date_Claim_Settled DATE,Amount_Claimed INTEGER,Amount_Settled INTEGER)CREATE TABLE Customer_Policies (Policy_ID INTEGER,Customer_ID INTEGER,Policy_Type_Code CHAR(15),Start_Date DATE,End_Date DATE)CREATE TABLE Settlements (Settlement_ID INTEGER... | SELECT Payment_Method_Code, COUNT(Payment_Method_Code) FROM Payments GROUP BY Payment_Method_Code ORDER BY COUNT(Payment_Method_Code) DESC |
Return a bar chart about the distribution of Nationality and the sum of meter_100 , and group by attribute Nationality, sort by the X-axis from high to low. | CREATE TABLE event (ID int,Name text,Stadium_ID int,Year text)CREATE TABLE swimmer (ID int,name text,Nationality text,meter_100 real,meter_200 text,meter_300 text,meter_400 text,meter_500 text,meter_600 text,meter_700 text,Time text)CREATE TABLE record (ID int,Result text,Swimmer_ID int,Event_ID int)CREATE TABLE stadiu... | SELECT Nationality, SUM(meter_100) FROM swimmer GROUP BY Nationality ORDER BY Nationality DESC |
at what location is the last flew on 11 june 2000 | CREATE TABLE table_1997759_1 (location VARCHAR,last_flew VARCHAR) | SELECT location FROM table_1997759_1 WHERE last_flew = "11 June 2000" |
When buffalo narrows is the name how many measurements of population density per kilometer squared are there? | CREATE TABLE table_189598_7 (population_density__per_km²_ VARCHAR,name VARCHAR) | SELECT COUNT(population_density__per_km²_) FROM table_189598_7 WHERE name = "Buffalo Narrows" |
Name the season for position 4th | CREATE TABLE table_25375093_1 (season VARCHAR,position VARCHAR) | SELECT COUNT(season) FROM table_25375093_1 WHERE position = "4th" |
what is the number of patients who died in or before 2122 and lab test is prot.electrophoresis urine? | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE diagnoses (subject_id text,hadm_id 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... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.dod_year <= "2122.0" AND lab.label = "Prot. Electrophoresis, Urine" |
What is the score of the game with 1,125 people in attendance? | CREATE TABLE table_name_37 (score VARCHAR,attendance VARCHAR) | SELECT score FROM table_name_37 WHERE attendance = "1,125" |
Which nominees won before year 2005? | CREATE TABLE table_name_69 (nominee_s_ VARCHAR,year VARCHAR,result VARCHAR) | SELECT nominee_s_ FROM table_name_69 WHERE year < 2005 AND result = "won" |
What is Opponent, when Date is 8 April 1999? | CREATE TABLE table_name_18 (opponent VARCHAR,date VARCHAR) | SELECT opponent FROM table_name_18 WHERE date = "8 april 1999" |
Who is the player from Spain that has a +2 to par? | CREATE TABLE table_name_44 (player VARCHAR,to_par VARCHAR,country VARCHAR) | SELECT player FROM table_name_44 WHERE to_par = "+2" AND country = "spain" |
What is the total for guests with a ship name of rv indochina, and a crew smaller than 28? | CREATE TABLE table_65764 ("Ship name" text,"Year built" real,"Length" text,"Crew" real,"Guests" real,"Staterooms" real,"Comments" text) | SELECT COUNT("Guests") FROM table_65764 WHERE "Ship name" = 'rv indochina' AND "Crew" < '28' |
During runs 332, what was the venue? | CREATE TABLE table_name_60 (venue VARCHAR,runs VARCHAR) | SELECT venue FROM table_name_60 WHERE runs = "332" |
Give me the comparison about the average of meter_100 over the Nationality , and group by attribute Nationality by a bar chart, and sort by the names from high to low. | CREATE TABLE stadium (ID int,name text,Capacity int,City text,Country text,Opening_year int)CREATE TABLE record (ID int,Result text,Swimmer_ID int,Event_ID int)CREATE TABLE event (ID int,Name text,Stadium_ID int,Year text)CREATE TABLE swimmer (ID int,name text,Nationality text,meter_100 real,meter_200 text,meter_300 te... | SELECT Nationality, AVG(meter_100) FROM swimmer GROUP BY Nationality ORDER BY Nationality DESC |
since 2104, what are the top three most frequent lab tests ordered for patients in the same hospital encounter after having received 1 int mam-cor art bypass? | CREATE TABLE procedures_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,startdate time,enddate time,drug text,dose_val_rx text,dose_unit_rx text,route text)CREATE TABLE patients (row_id number,subject_id number,... | SELECT d_labitems.label FROM d_labitems WHERE d_labitems.itemid IN (SELECT t3.itemid FROM (SELECT t2.itemid, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, procedures_icd.charttime, admissions.hadm_id FROM procedures_icd JOIN admissions ON procedures_icd.hadm_id = admissions.hadm_i... |
Which Zone 2008 has Services of greater anglia, and a Station of cheshunt? | CREATE TABLE table_name_17 (zone_2008 VARCHAR,services VARCHAR,station VARCHAR) | SELECT zone_2008 FROM table_name_17 WHERE services = "greater anglia" AND station = "cheshunt" |
Calculate the average age of unmarried patients born after the year 2097 | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE diagnoses (subject_id text,hadm_id 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... | SELECT AVG(demographic.age) FROM demographic WHERE demographic.marital_status = "SINGLE" AND demographic.dob_year > "2097" |
Which boys' school wears Royal Blue and Gold and entered the competition in 1929? | CREATE TABLE table_40166 ("School" text,"Location" text,"Enrolment" real,"Founded" real,"Denomination" text,"Boys/Girls" text,"Day/Boarding" text,"Year Entered Competition" real,"School Colors" text) | SELECT "School" FROM table_40166 WHERE "Boys/Girls" = 'boys' AND "Year Entered Competition" = '1929' AND "School Colors" = 'royal blue and gold' |
What is the minimum weights for people of each sex? Show a bar chart, sort from low to high by the x-axis. | CREATE TABLE candidate (Candidate_ID int,People_ID int,Poll_Source text,Date text,Support_rate real,Consider_rate real,Oppose_rate real,Unsure_rate real)CREATE TABLE people (People_ID int,Sex text,Name text,Date_of_Birth text,Height real,Weight real) | SELECT Sex, MIN(Weight) FROM people GROUP BY Sex ORDER BY Sex |
What theme is associated with a year before 2006 and Issue Price of $25.22? | CREATE TABLE table_name_14 (theme VARCHAR,year VARCHAR,issue_price VARCHAR) | SELECT theme FROM table_name_14 WHERE year < 2006 AND issue_price = "$25.22" |
What is Venue, when Status is 'Test Match', and when Against is '12'? | CREATE TABLE table_79078 ("Opposing Teams" text,"Against" real,"Date" text,"Venue" text,"Status" text) | SELECT "Venue" FROM table_79078 WHERE "Status" = 'test match' AND "Against" = '12' |
What player attended Loyola Marymount? | CREATE TABLE table_328 ("Player" text,"No.(s)" text,"Height in Ft." text,"Position" text,"Years for Rockets" text,"School/Club Team/Country" text) | SELECT "Player" FROM table_328 WHERE "School/Club Team/Country" = 'Loyola Marymount' |
What 2002 tournament has 2008 career statistics? | CREATE TABLE table_43253 ("Tournament" text,"2000" text,"2001" text,"2002" text,"2003" text,"2004" text,"2005" text,"2006" text,"2007" text,"2008" text,"2009" text,"2010" text,"2011" text,"2012" text) | SELECT "2002" FROM table_43253 WHERE "2008" = 'career statistics' |
What is the Location Attendance when the Date was February 27? | CREATE TABLE table_35312 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text) | SELECT "Location Attendance" FROM table_35312 WHERE "Date" = 'february 27' |
What was the rating of the season that had 18.17 million household viewers? | CREATE TABLE table_name_23 (rating VARCHAR,viewers__households_in_millions_ VARCHAR) | SELECT rating FROM table_name_23 WHERE viewers__households_in_millions_ = "18.17" |
what is the length of stay of patient 002-56583 for the last intensive care unit stay? | CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature number... | SELECT STRFTIME('%j', patient.unitdischargetime) - STRFTIME('%j', patient.unitadmittime) FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '002-56583') AND NOT patient.unitadmittime IS NULL ORDER BY patient.unitadmittime DESC LIMIT 1 |
How many high rebound catagories are listed for game number 5? | CREATE TABLE table_22871239_5 (high_rebounds VARCHAR,_number VARCHAR) | SELECT COUNT(high_rebounds) FROM table_22871239_5 WHERE _number = 5 |
all votes and accepts users have cast for all your posts. | 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 TotalUpVotes = SUM(CASE WHEN VoteTypeId = 2 THEN 1 ELSE 0 END), TotalDownVotes = SUM(CASE WHEN VoteTypeId = 3 THEN 1 ELSE 0 END), Accepts = SUM(CASE WHEN VoteTypeId = 1 THEN 1 ELSE 0 END) FROM Posts AS p INNER JOIN Votes AS v ON p.Id = v.PostId WHERE p.OwnerUserId = '##UserId##' |
What was 2011, when 2005 was 2R, and when 2003 was 2R? | CREATE TABLE table_42284 ("Tournament" text,"1998" text,"1999" text,"2000" text,"2001" text,"2002" text,"2003" text,"2004" text,"2005" text,"2006" text,"2007" text,"2008" text,"2009" text,"2010" text,"2011" text,"2012" text) | SELECT "2011" FROM table_42284 WHERE "2005" = '2r' AND "2003" = '2r' |
how many days has it been since the last time patient 011-55642's procedure during the current hospital encounter? | CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,c... | SELECT 1 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', treatment.treatmenttime)) FROM treatment WHERE treatment.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '011-55642'... |
Return a bar chart about the distribution of name and ID , display from low to high by the x axis. | CREATE TABLE stadium (ID int,name text,Capacity int,City text,Country text,Opening_year int)CREATE TABLE record (ID int,Result text,Swimmer_ID int,Event_ID int)CREATE TABLE event (ID int,Name text,Stadium_ID int,Year text)CREATE TABLE swimmer (ID int,name text,Nationality text,meter_100 real,meter_200 text,meter_300 te... | SELECT name, ID FROM swimmer ORDER BY name |
What is the season year where the rank is 39? | CREATE TABLE table_15941 ("Season" real,"Timeslot (ET)" text,"Season premiere" text,"Season finale" text,"TV season" text,"Rank" text,"Viewers (millions)" text) | SELECT "TV season" FROM table_15941 WHERE "Rank" = '39' |
What is the average Fiscal Year of the firm Headquartered in noida, with less than 85,335 employees? | CREATE TABLE table_name_55 (fiscal_year INTEGER,headquarters VARCHAR,employees VARCHAR) | SELECT AVG(fiscal_year) FROM table_name_55 WHERE headquarters = "noida" AND employees < 85 OFFSET 335 |
Create a pie chart showing how many country across country. | 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 |
Who is the main contestant with scores by each individual judge of 8 + 7 + 7 = 21? | CREATE TABLE table_78850 ("Main contestant" text,"Co-contestant (Yaar vs. Pyaar)" text,"Date performed" text,"Scores by each individual judge" text,"Total score/week" text,"Position" text,"Status" text) | SELECT "Main contestant" FROM table_78850 WHERE "Scores by each individual judge" = '8 + 7 + 7 = 21' |
show me the number of white ethnic background patients who have the diagnoses of portal hypertension. | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,sho... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.ethnicity = "WHITE" AND diagnoses.short_title = "Portal hypertension" |
Group and count the years played to draw a bar chart, list y axis in descending order. | CREATE TABLE team (Team_id int,Name text)CREATE TABLE match_season (Season real,Player text,Position text,Country int,Team int,Draft_Pick_Number int,Draft_Class text,College text)CREATE TABLE player (Player_ID int,Player text,Years_Played text,Total_WL text,Singles_WL text,Doubles_WL text,Team int)CREATE TABLE country ... | SELECT Years_Played, COUNT(Years_Played) FROM player GROUP BY Years_Played ORDER BY COUNT(Years_Played) DESC |
Who was the loser at Municipal Stadium after 1970? | CREATE TABLE table_54229 ("Year" real,"Date" text,"Winner" text,"Result" text,"Loser" text,"Location" text) | SELECT "Loser" FROM table_54229 WHERE "Location" = 'municipal stadium' AND "Year" > '1970' |
For those records from the products and each product's manufacturer, return a bar chart about the distribution of name and manufacturer , and group by attribute headquarter, show y-axis from high to low order. | 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.Manufacturer FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Headquarter, T1.Name ORDER BY T1.Manufacturer DESC |
get me the number of patients with procedure icd9 code 8854 who were admitted before the year 2170. | CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,la... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admityear < "2170" AND procedures.icd9_code = "8854" |
Name the total number in attendance for when the bulls visited | CREATE TABLE table_name_50 (attendance VARCHAR,visitor VARCHAR) | SELECT COUNT(attendance) FROM table_name_50 WHERE visitor = "bulls" |
What is the date for Watford and player Lionel Ainsworth? | CREATE TABLE table_61692 ("Date From" text,"Date To" text,"Position" text,"Name" text,"From" text) | SELECT "Date To" FROM table_61692 WHERE "From" = 'watford' AND "Name" = 'lionel ainsworth' |
known allergy or contraindication to fibrinolytics or aspirin or heparin or clopidogrel | CREATE TABLE table_dev_60 ("id" int,"systolic_blood_pressure_sbp" int,"body_weight" float,"renal_disease" bool,"allergy_to_aspirin" bool,"creatinine_clearance_cl" float,"allergy_to_clopidogrel" bool,"allergy_to_heparin" bool,"platelet_count" float,"thrombocytopenia" float,"diastolic_blood_pressure_dbp" int,"allergy_to_... | SELECT * FROM table_dev_60 WHERE allergy_to_fibrinolytics = 1 OR allergy_to_aspirin = 1 OR allergy_to_heparin = 1 OR allergy_to_clopidogrel = 1 |
Which Record has a Visitor of pittsburgh, and a Score of 4 0? | CREATE TABLE table_44387 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Attendance" real,"Record" text,"Points" real) | SELECT "Record" FROM table_44387 WHERE "Visitor" = 'pittsburgh' AND "Score" = '4–0' |
What is the home team where the San Jose state is the visiting team? | CREATE TABLE table_29067 ("Date" text,"Time" text,"Visiting team" text,"Home team" text,"Site" text,"Broadcast" text,"Result" text,"Attendance" real) | SELECT "Home team" FROM table_29067 WHERE "Visiting team" = 'San Jose State' |
which round has a margin of 178? | CREATE TABLE table_name_24 (round VARCHAR,margin VARCHAR) | SELECT round FROM table_name_24 WHERE margin = "178" |
what is the giro wins when jerseys is 2, country is portugal and young rider is more than 0? | CREATE TABLE table_65195 ("Rank" text,"Country" text,"Jerseys" real,"Giro wins" real,"Points" real,"Young rider" real,"Most recent cyclist" text,"Most recent date" text,"Different holders" real) | SELECT SUM("Giro wins") FROM table_65195 WHERE "Jerseys" = '2' AND "Country" = 'portugal' AND "Young rider" > '0' |
For those products with a price between 60 and 120, return a scatter chart about the correlation between price and manufacturer . | CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL)CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER) | SELECT Price, Manufacturer FROM Products WHERE Price BETWEEN 60 AND 120 |
What is the 1914 NER class with a d17/2 LNER class? | CREATE TABLE table_name_78 (lner_class VARCHAR) | SELECT 1914 AS _ner_class FROM table_name_78 WHERE lner_class = "d17/2" |
In the venue Corio Oval, who was the away team? | CREATE TABLE table_10815 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Away team" FROM table_10815 WHERE "Venue" = 'corio oval' |
What is the average Pick for the Pasco, Wa school? | CREATE TABLE table_37583 ("Pick" real,"Player" text,"Team" text,"Position" text,"School" text) | SELECT AVG("Pick") FROM table_37583 WHERE "School" = 'pasco, wa' |
For those records from the products and each product's manufacturer, draw a bar chart about the distribution of headquarter and the average of price , and group by attribute headquarter, list by the y-axis from high to low please. | 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 Headquarter, AVG(Price) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Headquarter ORDER BY AVG(Price) DESC |
What is the result of the game where the opponent is Innsbrucker Kilmarnock CSK VVS Samara? | CREATE TABLE table_3826 ("Season" text,"Competition" text,"Stage" text,"Result" text,"Opponent" text,"Scorers" text) | SELECT "Result" FROM table_3826 WHERE "Opponent" = 'Innsbrucker Kilmarnock CSK VVS Samara' |
On what date did they have a record of 12-17? | CREATE TABLE table_15731 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" real,"Record" text) | SELECT "Date" FROM table_15731 WHERE "Record" = '12-17' |
What was the total number of Laps for the rider whose time was +7.951? | CREATE TABLE table_name_2 (laps VARCHAR,time VARCHAR) | SELECT COUNT(laps) FROM table_name_2 WHERE time = "+7.951" |
Which player has the fewest assists and played 2 games or fewer? | CREATE TABLE table_41565 ("Rank" real,"Name" text,"Team" text,"Games" real,"Assists" real) | SELECT MIN("Assists") FROM table_41565 WHERE "Games" < '2' |
what exactly does the periph t cell lym abdom stand for? | CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type text,event_id number,chargetime time,cost number)CREATE TABLE chartevents (row_id number,subject_id number,hadm_id number,icustay_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE patients (row_id number,subject... | SELECT d_icd_diagnoses.long_title FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'periph t cell lym abdom' UNION SELECT d_icd_procedures.long_title FROM d_icd_procedures WHERE d_icd_procedures.short_title = 'periph t cell lym abdom' |
Top 100 StackOverflow users from Nigeria. | 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 Id, DisplayName AS "display_name", Reputation, WebsiteUrl AS Website, Location FROM Users WHERE Location LIKE '%Nigeria%' ORDER BY Reputation DESC LIMIT 100 |
What was the score of the game that led to a 7-5 record? | CREATE TABLE table_5833 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" text,"Record" text) | SELECT "Score" FROM table_5833 WHERE "Record" = '7-5' |
Which chassis is more recent than 1972 and has more than 0 Pts. ? | CREATE TABLE table_name_53 (chassis VARCHAR,year VARCHAR,pts VARCHAR) | SELECT chassis FROM table_name_53 WHERE year > 1972 AND pts > 0 |
Which venue has a neutral H/A/N, lower than position 3 and a score of 141? | CREATE TABLE table_name_85 (venue VARCHAR,score VARCHAR,h_a_n VARCHAR,pos VARCHAR) | SELECT venue FROM table_name_85 WHERE h_a_n = "neutral" AND pos < 3 AND score = "141" |
What is Born-Died, when Term End is 19 January 1943? | CREATE TABLE table_46082 ("Name" text,"Born-Died" text,"Term start" text,"Term end" text,"Political Party" text) | SELECT "Born-Died" FROM table_46082 WHERE "Term end" = '19 january 1943' |
ANAT 403 is taught when in the week ? | CREATE TABLE comment_instructor (instructor_id int,student_id int,score int,comment_text varchar)CREATE TABLE offering_instructor (offering_instructor_id int,offering_id int,instructor_id int)CREATE TABLE student_record (student_id int,course_id int,semester int,grade varchar,how varchar,transfer_source varchar,earn_cr... | SELECT DISTINCT course_offering.friday, course_offering.monday, course_offering.saturday, course_offering.sunday, course_offering.thursday, course_offering.tuesday, course_offering.wednesday FROM course INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN semester ON semester.semester_i... |
What is the total Points for the Opponent of @ New Jersey Devils and a Game bigger than 7? | CREATE TABLE table_5577 ("Game" real,"October" real,"Opponent" text,"Score" text,"Record" text,"Points" real) | SELECT SUM("Points") FROM table_5577 WHERE "Opponent" = '@ new jersey devils' AND "Game" > '7' |
Name the result for north carolina 7 | CREATE TABLE table_19753079_36 (result VARCHAR,district VARCHAR) | SELECT result FROM table_19753079_36 WHERE district = "North Carolina 7" |
What is the number of tries for when the try bonus is 0? | CREATE TABLE table_41684 ("Club" text,"Played" text,"Drawn" text,"Lost" text,"Points for" text,"Points against" text,"Tries For" text,"Tries Against" text,"Try Bonus" text,"Losing Bonus" text,"Points" text) | SELECT "Tries For" FROM table_41684 WHERE "Try Bonus" = '0' |
Which classrooms are used by grade 4? | CREATE TABLE list (classroom VARCHAR,grade VARCHAR) | SELECT DISTINCT classroom FROM list WHERE grade = 4 |
what is the number of patients whose primary disease is coronary artery disease\coronary artery bypass graft /sda and year of death is less than or equal to 2115? | 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 COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "CORONARY ARTERY DISEASE\CORONARY ARTERY BYPASS GRAFT /SDA" AND demographic.dod_year <= "2115.0" |
Which year's rank was #4 when the country was the US? | CREATE TABLE table_76011 ("Publication" text,"Country" text,"Accolade" text,"Year" real,"Rank" text) | SELECT "Year" FROM table_76011 WHERE "Rank" = '#4' AND "Country" = 'us' |
what is the score on 22 february 1993? | CREATE TABLE table_43604 ("Outcome" text,"Date" text,"Championship" text,"Surface" text,"Opponent" text,"Score" text) | SELECT "Score" FROM table_43604 WHERE "Date" = '22 february 1993' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.