instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
How many gold medals does the Choctawhatchee High School have? | CREATE TABLE table_618 ("Ensemble" text,"Gold Medals" real,"Silver Medals" real,"Bronze Medals" real,"Total Medals" real) | SELECT MAX("Gold Medals") FROM table_618 WHERE "Ensemble" = 'Choctawhatchee High School' |
If the Home team is carlton, what's the lowest Crowd found? | CREATE TABLE table_55058 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT MIN("Crowd") FROM table_55058 WHERE "Home team" = 'carlton' |
Which game had a record of 45-16? | CREATE TABLE table_name_12 (game INTEGER,record VARCHAR) | SELECT AVG(game) FROM table_name_12 WHERE record = "45-16" |
Find the number of dorms for each gender in a bar chart, list in ascending by the bars. | CREATE TABLE Dorm (dormid INTEGER,dorm_name VARCHAR(20),student_capacity INTEGER,gender VARCHAR(1))CREATE TABLE Student (StuID INTEGER,LName VARCHAR(12),Fname VARCHAR(12),Age INTEGER,Sex VARCHAR(1),Major INTEGER,Advisor INTEGER,city_code VARCHAR(3))CREATE TABLE Lives_in (stuid INTEGER,dormid INTEGER,room_number INTEGER... | SELECT gender, COUNT(*) FROM Dorm GROUP BY gender ORDER BY gender |
What Assembled has Elected of 1562/63? | CREATE TABLE table_13112 ("Elected" text,"Assembled" text,"Dissolved" text,"1st member" text,"2nd member" text) | SELECT "Assembled" FROM table_13112 WHERE "Elected" = '1562/63' |
what are patient 77177 hospital admission times in 2101? | CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)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 d_icd_procedures (... | SELECT admissions.admittime FROM admissions WHERE admissions.subject_id = 77177 AND STRFTIME('%y', admissions.admittime) = '2101' |
Which Home team has an Away team score of 6.9 (45)? | CREATE TABLE table_52417 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Home team" FROM table_52417 WHERE "Away team score" = '6.9 (45)' |
What is the release date of part 80525py500512bx80525u500512bx80525u500512e? | CREATE TABLE table_16400024_1 (release_date VARCHAR,part_number_s_ VARCHAR) | SELECT release_date FROM table_16400024_1 WHERE part_number_s_ = "80525PY500512BX80525U500512BX80525U500512E" |
How many patients admitted before the year 2158 had a procedure titled radical neck dissection, unilateral? | CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag text,admission_location text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admityear < "2158" AND procedures.long_title = "Radical neck dissection, unilateral" |
What driver was the winner when Joakim Bonnier was in the Pole Position? | CREATE TABLE table_53104 ("Race" text,"Circuit" text,"Date" text,"Pole position" text,"Fastest lap" text,"Winning driver" text,"Constructor" text,"Tyre" text,"Report" text) | SELECT "Winning driver" FROM table_53104 WHERE "Pole position" = 'joakim bonnier' |
Who has a Jersey number of 31? | CREATE TABLE table_name_84 (player VARCHAR,jersey_number_s_ VARCHAR) | SELECT player FROM table_name_84 WHERE jersey_number_s_ = "31" |
WHAT YEAR WAS AT GIANTS STADIUM, WITH WINNER OF NEW YORK GIANTS? | CREATE TABLE table_name_54 (year INTEGER,location VARCHAR,winner VARCHAR) | SELECT MIN(year) FROM table_name_54 WHERE location = "giants stadium" AND winner = "new york giants" |
Downvoted, closed or deleted questions. | CREATE TABLE Users (Id number,Reputation number,CreationDate time,DisplayName text,LastAccessDate time,WebsiteUrl text,Location text,AboutMe text,Views number,UpVotes number,DownVotes number,ProfileImageUrl text,EmailHash text,AccountId number)CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,Po... | SELECT * FROM Posts WHERE PostTypeId = 1 AND (Score < -1 OR NOT ClosedDate IS NULL OR NOT DeletionDate IS NULL) |
Name the months in the malayalam era for | CREATE TABLE table_169955_1 (months_in_malayalam_era VARCHAR,in_malayalam VARCHAR) | SELECT months_in_malayalam_era FROM table_169955_1 WHERE in_malayalam = "കുംഭം" |
Which customers use 'Cash' for payment method? Return the customer names. | CREATE TABLE customer_orders (order_id number,customer_id number,order_status text,order_date time,order_details text)CREATE TABLE order_items (order_id number,product_id number,order_quantity text)CREATE TABLE customer_addresses (customer_id number,address_id number,date_address_from time,address_type text,date_addres... | SELECT customer_name FROM customers WHERE payment_method = "Cash" |
Which CFL team did the player from British Columbia get drafted to | CREATE TABLE table_16441561_5 (cfl_team VARCHAR,college VARCHAR) | SELECT cfl_team FROM table_16441561_5 WHERE college = "British Columbia" |
what was the nebraska cornhuskers highest rank of 2007 | CREATE TABLE table_204_294 (id number,"date" text,"time" text,"opponent#" text,"rank#" text,"site" text,"tv" text,"result" text,"attendance" number) | SELECT MIN("rank#") FROM table_204_294 |
What years had players who scored 36 goals? | CREATE TABLE table_name_51 (years VARCHAR,goals VARCHAR) | SELECT years FROM table_name_51 WHERE goals = "36" |
Which conference is Belmont in? | CREATE TABLE table_16295365_1 (conference VARCHAR,school VARCHAR) | SELECT conference FROM table_16295365_1 WHERE school = "Belmont" |
Who is the s color commentator when the pregame host is jon sciambi? | CREATE TABLE table_74385 ("Year" real,"Network" text,"Play-by-play announcers" text,"s Color commentator" text,"Pregame hosts" text,"Pregame analysts" text) | SELECT "s Color commentator" FROM table_74385 WHERE "Pregame hosts" = 'Jon Sciambi' |
Who is the home side when north melbourne is the away side? | CREATE TABLE table_name_51 (home_team VARCHAR,away_team VARCHAR) | SELECT home_team FROM table_name_51 WHERE away_team = "north melbourne" |
According to W3Counter, what percentage of browsers used Firefox? | CREATE TABLE table_65882 ("Source" text,"Chrome" text,"Internet Explorer" text,"Firefox" text,"Safari" text,"Opera" text,"Other" text) | SELECT "Firefox" FROM table_65882 WHERE "Source" = 'w3counter' |
Name the cfl team for robert beveridge | CREATE TABLE table_3976 ("Pick #" real,"CFL Team" text,"Player" text,"Position" text,"College" text) | SELECT "CFL Team" FROM table_3976 WHERE "Player" = 'Robert Beveridge' |
Name the won for try bonus of 10 | CREATE TABLE table_18940 ("Club" text,"Played" text,"Won" 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 "Won" FROM table_18940 WHERE "Try bonus" = '10' |
Which rank is 40 for s Wicket with a player of Daniel Marsh? | CREATE TABLE table_name_63 (rank VARCHAR,s_wicket VARCHAR,player VARCHAR) | SELECT rank FROM table_name_63 WHERE s_wicket = "40" AND player = "daniel marsh" |
In what tournament was there an extra of 400 m hurdles? | CREATE TABLE table_name_31 (tournament VARCHAR,extra VARCHAR) | SELECT tournament FROM table_name_31 WHERE extra = "400 m hurdles" |
What is the average year for a merzario a2 chassis? | CREATE TABLE table_name_91 (year INTEGER,chassis VARCHAR) | SELECT AVG(year) FROM table_name_91 WHERE chassis = "merzario a2" |
how many patients born before year 2085 had s/p fall as their primary disease? | CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,do... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "S/P FALL" AND demographic.dob_year < "2085" |
What place does Fred Funk, who has a score of 69-69=138, have? | CREATE TABLE table_67162 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text) | SELECT "Place" FROM table_67162 WHERE "Score" = '69-69=138' AND "Player" = 'fred funk' |
What was the original air date of 'The Boss'? | CREATE TABLE table_3113 ("No. in series" real,"No. in season" real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Production code" real) | SELECT "Original air date" FROM table_3113 WHERE "Title" = 'The Boss' |
A visualization to show the headquarter and revenue of all manufacturers sorted by their revenue in the descending 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 Headquarter, Revenue FROM Manufacturers ORDER BY Revenue DESC |
What is the highest number of wins that has a top-25 of 13 and events less than 32? | CREATE TABLE table_12072 ("Tournament" text,"Wins" real,"Top-5" real,"Top-10" real,"Top-25" real,"Events" real,"Cuts made" real) | SELECT MAX("Wins") FROM table_12072 WHERE "Top-25" = '13' AND "Events" < '32' |
patricia velasquez and ron vawter both had what career ? | CREATE TABLE table_204_698 (id number,"name" text,"lifetime" text,"nationality" text,"notable as" text,"notes" text) | SELECT "notable as" FROM table_204_698 WHERE "name" = 'patricia velasquez' INTERSECT SELECT "notable as" FROM table_204_698 WHERE "name" = 'ron vawter' |
For each record in schedule, show sum of price for each day in a bar chart, and I want to order from low to high by the X-axis. | 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 Date, SUM(Price) FROM schedule AS T1 JOIN film AS T2 ON T1.Film_ID = T2.Film_ID JOIN cinema AS T3 ON T1.Cinema_ID = T3.Cinema_ID GROUP BY Date ORDER BY Date |
What are the details of the three most expensive hotels? | CREATE TABLE tourist_attraction_features (tourist_attraction_id number,feature_id number)CREATE TABLE visits (visit_id number,tourist_attraction_id number,tourist_id number,visit_date time,visit_details text)CREATE TABLE shops (shop_id number,shop_details text)CREATE TABLE theme_parks (theme_park_id number,theme_park_d... | SELECT other_hotel_details FROM hotels ORDER BY price_range DESC LIMIT 3 |
How many grids have a Constructor of talbot-lago - talbot, a Laps under 83, and a driver of johnny claes? | CREATE TABLE table_56470 ("Driver" text,"Constructor" text,"Laps" real,"Time/retired" text,"Grid" real) | SELECT COUNT("Grid") FROM table_56470 WHERE "Constructor" = 'talbot-lago - talbot' AND "Laps" < '83' AND "Driver" = 'johnny claes' |
What is the race with a 10f distance and mollison as the winner or 2nd? | CREATE TABLE table_name_12 (race VARCHAR,distance VARCHAR,winner_or_2nd VARCHAR) | SELECT race FROM table_name_12 WHERE distance = "10f" AND winner_or_2nd = "mollison" |
What date has w 20-17 as the result, and 1-0 as the record? | CREATE TABLE table_name_32 (date VARCHAR,result VARCHAR,record VARCHAR) | SELECT date FROM table_name_32 WHERE result = "w 20-17" AND record = "1-0" |
Who was the entrant before 1988? | CREATE TABLE table_name_41 (entrant VARCHAR,year INTEGER) | SELECT entrant FROM table_name_41 WHERE year < 1988 |
who was the top goalscorer on this team ? | CREATE TABLE table_204_784 (id number,"player" text,"league" number,"cup" number,"europa league" number,"total" number) | SELECT "player" FROM table_204_784 WHERE id = 1 |
What label is from the Region of Spain? | CREATE TABLE table_8575 ("Region" text,"Date" text,"Label" text,"Format" text,"Catalog" text) | SELECT "Label" FROM table_8575 WHERE "Region" = 'spain' |
During the PGA Championship, what's the lowest amount of events with wins greater than 0? | CREATE TABLE table_69999 ("Tournament" text,"Wins" real,"Top-25" real,"Events" real,"Cuts made" real) | SELECT MIN("Events") FROM table_69999 WHERE "Tournament" = 'pga championship' AND "Wins" > '0' |
was the magnesium value of patient 028-62326 last measured on the last hospital visit less than it was first measured on the last hospital visit? | CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,tempe... | 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 = '028-62326' AND NOT patient.hospitaldischargetime IS NULL ORDER BY patient.hospi... |
When has Score of 4 5 and quebec nordiques as Visitor? | CREATE TABLE table_36124 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Record" text) | SELECT "Date" FROM table_36124 WHERE "Score" = '4–5' AND "Visitor" = 'quebec nordiques' |
What was the original air-date that had 4.77 million viewers? | CREATE TABLE table_27927185_1 (originalairdate VARCHAR,viewers__millions_ VARCHAR) | SELECT originalairdate FROM table_27927185_1 WHERE viewers__millions_ = "4.77" |
WHAT IS THE POINTS PERCENTAGE WITH A TOTAL OF 1-2-2 RECORD? | CREATE TABLE table_name_29 (points__percentage VARCHAR,total_w_l_h VARCHAR) | SELECT points__percentage FROM table_name_29 WHERE total_w_l_h = "1-2-2" |
Minhas Perguntas fechadas como Ampla Demais. People keep closing old questions I answered that obviously I think are good questions, or at least salvageable. Since I get no notification of such closing, I created this query. | CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE ReviewTaskStates (Id number,Name text,Description text)CREATE TABLE ReviewTaskTypes (Id number,Name text,Description text)CREATE TABLE Comments (Id number,PostId number,Score number,Text text,CreationDate time,UserD... | SELECT answer.Id AS "post_link", * FROM Posts AS answer JOIN Posts AS p ON answer.ParentId = p.Id JOIN PostHistory AS ph ON ph.PostId = p.Id JOIN PostTypes AS pt ON p.PostTypeId = pt.Id WHERE ph.CreationDate = (SELECT MAX(ph.CreationDate) FROM PostHistory AS ph JOIN CloseReasonTypes AS crt ON crt.Id = ph.Comment JOIN P... |
Can you tell me the total number of Total that has the B Score of 9.15? | CREATE TABLE table_13919 ("Position" text,"Gymnast" text,"A Score" real,"B Score" real,"Total" real) | SELECT COUNT("Total") FROM table_13919 WHERE "B Score" = '9.15' |
What is the total 60 to 64 when the Oblast\Age is Nenets in Yamal AO, and the 45 to 49 is bigger than 3,883? | CREATE TABLE table_77335 ("C/W 15+" real,"Oblast\\Age" text,"15 to 17" real,"18 to 19" real,"20 to 24" real,"25 to 29" real,"30 to 34" real,"35 to 39" real,"40 to 44" real,"45 to 49" real,"50 to 54" real,"55 to 59" real,"60 to 64" real,"65 to 69" real) | SELECT SUM("60 to 64") FROM table_77335 WHERE "Oblast\\Age" = 'nenets in yamal ao' AND "45 to 49" > '3,883' |
Name the ship for oakland home port and NVR page of aor-3 | CREATE TABLE table_37190 ("Ship" text,"Hull No." text,"Builder" text,"Home Port" text,"Commissioned\u2013 Decommissioned" text,"NVR page" text) | SELECT "Ship" FROM table_37190 WHERE "Home Port" = 'oakland' AND "NVR page" = 'aor-3' |
which Film has a Category of best actress musical or comedy, and a Lost to of nicole kidman ( moulin rouge! )? | CREATE TABLE table_64079 ("Year" real,"Category" text,"Film" text,"Result" text,"Lost to" text) | SELECT "Film" FROM table_64079 WHERE "Category" = 'best actress – musical or comedy' AND "Lost to" = 'nicole kidman ( moulin rouge! )' |
What power plant was commissioned in 2008? | CREATE TABLE table_62398 ("S.no." real,"Power Plant" text,"State" text,"Commissioned Capacity (MW)" real,"year of commission" real) | SELECT "Power Plant" FROM table_62398 WHERE "year of commission" = '2008' |
List of databases on the StackExchange network. | CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE ReviewTaskResultTypes (Id number,Name text,Description text)CREATE TABLE PendingFlags (Id number,FlagTypeId number,PostId number,CreationDate time,CloseReasonTypeId number,CloseAsOffTopicReasonTypeId number,DuplicateOfQuestionId number,BelongsOnBaseHostAdd... | SELECT name FROM sysdatabases WHERE name NOT IN ('master', 'tempdb', 'model', 'msdb', 'Data.StackExchange') |
how many patients are diagnosed with acute subdural hematoma under age 74? | CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag text,admission_location text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "ACUTE SUBDURAL HEMATOMA" AND demographic.age < "74" |
Show the total number of platforms of locations in each location in a bar chart, could you order by the names from high to low? | CREATE TABLE train (Train_ID int,Name text,Time text,Service text)CREATE TABLE station (Station_ID int,Name text,Annual_entry_exit real,Annual_interchanges real,Total_Passengers real,Location text,Main_Services text,Number_of_Platforms int)CREATE TABLE train_station (Train_ID int,Station_ID int) | SELECT Location, SUM(Number_of_Platforms) FROM station GROUP BY Location ORDER BY Location DESC |
Which manager was replaced by Thomas Thomasberg? | CREATE TABLE table_27782699_3 (outgoing_manager VARCHAR,replaced_by VARCHAR) | SELECT outgoing_manager FROM table_27782699_3 WHERE replaced_by = "Thomas Thomasberg" |
How many tries against were there with points of 150? | CREATE TABLE table_17941032_2 (tries_against VARCHAR,points_for VARCHAR) | SELECT tries_against FROM table_17941032_2 WHERE points_for = "150" |
Users from Moscow with QPosts with mscrm Tags *better performance*. | CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE Users (Id number,Reputation number,CreationDate time,DisplayName text,LastAccessDate time,WebsiteUrl text,Location text,AboutMe text,Views number,UpVotes number,DownVotes number,ProfileImageUrl text,EmailHash text,AccountId number)CREATE TABLE PostTags (PostId nu... | SELECT DISTINCT u.DisplayName, CONCAT('https://stackoverflow.com/users/', p.OwnerUserId) AS profile_link FROM Tags AS t INNER JOIN PostTags AS pt ON pt.TagId = t.Id INNER JOIN Posts AS p ON pt.PostId = p.Id INNER JOIN Users AS u ON p.OwnerUserId = u.Id AND LOWER(u.Location) LIKE '%moscow%' WHERE t.TagName IN ('dynamics... |
Minimum, Maximum, and Average Number of Answers Per Post. The minimum, maximum, and average number of answers per post on Stack Overflow. | CREATE TABLE FlagTypes (Id number,Name text,Description text)CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)CREATE TABLE ReviewTaskStates (Id number,Name text,Description text)CREATE TABLE PostNoticeTypes (Id number,ClassId number,Name text,Body text,Is... | SELECT MIN(Posts.AnswerCount) AS "minimum_#_of_answers", AVG(CAST(Posts.AnswerCount AS FLOAT)) AS "average_#_of_answers", MAX(Posts.AnswerCount) AS "maximum_#_of_answers" FROM Posts WHERE Posts.PostTypeId = 1 |
What is the decision when the opponents are atlanta thrashers? | CREATE TABLE table_27501030_7 (decision VARCHAR,opponent VARCHAR) | SELECT decision FROM table_27501030_7 WHERE opponent = "Atlanta Thrashers" |
What is the name of the series with the unknown host? | CREATE TABLE table_29551 ("Country" text,"Name" text,"Host(s)" text,"Judges" text,"Network" text,"Air dates" text) | SELECT "Name" FROM table_29551 WHERE "Host(s)" = 'unknown' |
What is the sum of November, when Game is greater than 23? | CREATE TABLE table_49804 ("Game" real,"November" real,"Opponent" text,"Score" text,"Record" text) | SELECT SUM("November") FROM table_49804 WHERE "Game" > '23' |
What was the result of the 1978 Atlanta Falcons season when the record was 1-2? | CREATE TABLE table_20979 ("Game" real,"Date" text,"Opponent" text,"Result" text,"Falcons points" real,"Opponents" real,"Record" text,"Attendance" real) | SELECT "Result" FROM table_20979 WHERE "Record" = '1-2' |
I want to see trend of day_number by calendar date | CREATE TABLE Document_Locations (Document_ID INTEGER,Location_Code CHAR(15),Date_in_Location_From DATETIME,Date_in_Locaton_To DATETIME)CREATE TABLE Documents_to_be_Destroyed (Document_ID INTEGER,Destruction_Authorised_by_Employee_ID INTEGER,Destroyed_by_Employee_ID INTEGER,Planned_Destruction_Date DATETIME,Actual_Destr... | SELECT Calendar_Date, Day_Number FROM Ref_Calendar |
what was the engine used before 1996 with 5 points? | CREATE TABLE table_11196 ("Year" real,"Entrant" text,"Chassis" text,"Engine" text,"Points" real) | SELECT "Engine" FROM table_11196 WHERE "Year" < '1996' AND "Points" = '5' |
What is the enrollment associated with a capacity greater then 35,650? | CREATE TABLE table_name_46 (enrollment INTEGER,capacity INTEGER) | SELECT MIN(enrollment) FROM table_name_46 WHERE capacity > 35 OFFSET 650 |
Who is the lowest ranked player from the United States that has less than 3 Wins? | CREATE TABLE table_58372 ("Rank" real,"Player" text,"Country" text,"Earnings ($)" real,"Events" real,"Wins" real) | SELECT MIN("Rank") FROM table_58372 WHERE "Country" = 'united states' AND "Wins" < '3' |
For those employees who did not have any job in the past, visualize a bar chart about the distribution of hire_date and the average of department_id bin hire_date by time, could you order by the the average of department id from low to high? | CREATE TABLE job_history (EMPLOYEE_ID decimal(6,0),START_DATE date,END_DATE date,JOB_ID varchar(10),DEPARTMENT_ID decimal(4,0))CREATE TABLE regions (REGION_ID decimal(5,0),REGION_NAME varchar(25))CREATE TABLE jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN_SALARY decimal(6,0),MAX_SALARY decimal(6,0))CREATE TABLE emp... | SELECT HIRE_DATE, AVG(DEPARTMENT_ID) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history) ORDER BY AVG(DEPARTMENT_ID) |
What is the rural population percentage in 1979? | CREATE TABLE table_16645_1 (__percentage VARCHAR,rural INTEGER,year__january_ VARCHAR) | SELECT MIN(rural), __percentage FROM table_16645_1 WHERE year__january_ = 1979 |
What team played before game 71 and had a score w 91 86 (ot)? | CREATE TABLE table_name_36 (team VARCHAR,game VARCHAR,score VARCHAR) | SELECT team FROM table_name_36 WHERE game < 71 AND score = "w 91–86 (ot)" |
how many female patients followed the procedure icd9 code 5783? | CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag text,admission_location text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.gender = "F" AND procedures.icd9_code = "5783" |
What is the average number of silvers for nations with over 1 bronze medal? | CREATE TABLE table_name_62 (silver INTEGER,bronze INTEGER) | SELECT AVG(silver) FROM table_name_62 WHERE bronze > 1 |
Was the round where they were in 6th at home or away? | CREATE TABLE table_30912 ("Round" real,"Date" text,"Opponent" text,"Home/Away" text,"Score (Collingwoods score is in bold)" text,"Result (includes margin)" text,"Venue" text,"Position on Ladder" text) | SELECT "Home/Away" FROM table_30912 WHERE "Position on Ladder" = '6th' |
What losses have points for less than 1175, wins greater than 2, points against greater than 894, and 24 as the points? | CREATE TABLE table_40059 ("Club" text,"Wins" real,"Loses" real,"Points For" real,"Points Against" real,"Percentage" text,"Points" real) | SELECT "Loses" FROM table_40059 WHERE "Points For" < '1175' AND "Wins" > '2' AND "Points Against" > '894' AND "Points" = '24' |
What record has a decision of parent, Philadelphia as the home, with december 12 as the date? | CREATE TABLE table_name_81 (record VARCHAR,date VARCHAR,decision VARCHAR,home VARCHAR) | SELECT record FROM table_name_81 WHERE decision = "parent" AND home = "philadelphia" AND date = "december 12" |
Find out the long title of procedure for the patient with patient id 3343. | CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_fla... | SELECT procedures.long_title FROM procedures WHERE procedures.subject_id = "3343" |
Show 10 most viewed posts with links. | CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)CREATE TABLE PostNoticeTypes (Id number,ClassId number,Name text,Body text,IsHidden boolean,Predefined boolean,PostNoticeDurationId number)CREATE TABLE Sug... | SELECT TOP(10) AS ViewCount, Id AS "post_link" FROM Posts ORDER BY ViewCount DESC |
What's the highest division number through the years? | CREATE TABLE table_2185 ("Year" real,"Division" real,"League" text,"Regular Season" text,"Playoffs" text,"Open Cup" text) | SELECT MAX("Division") FROM table_2185 |
Show the number of names of phones in a bar chart, display by the y-axis in asc. | CREATE TABLE phone (Name text,Phone_ID int,Memory_in_G int,Carrier text,Price real)CREATE TABLE phone_market (Market_ID int,Phone_ID text,Num_of_stock int)CREATE TABLE market (Market_ID int,District text,Num_of_employees int,Num_of_shops real,Ranking int) | SELECT Name, COUNT(Name) FROM phone_market AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID JOIN phone AS T3 ON T1.Phone_ID = T3.Phone_ID GROUP BY Name ORDER BY COUNT(Name) |
HOW MANY YEARS DID MENS DOUBLES PLAYER HEIKI SORGE MEELIS MAISTE PLAY? | CREATE TABLE table_19671 ("Year" real,"Mens singles" text,"Womens singles" text,"Mens doubles" text,"Womens doubles" text,"Mixed doubles" text) | SELECT COUNT("Year") FROM table_19671 WHERE "Mens doubles" = 'Heiki Sorge Meelis Maiste' |
What year did the term end for those elected in 1990 | CREATE TABLE table_1602620_1 (term_ended VARCHAR,elected VARCHAR) | SELECT term_ended FROM table_1602620_1 WHERE elected = 1990 |
What is the highest Total Foreign-born (1000) from a non EU state (1000) of 685 and a population (1000) smaller than 10,666? | CREATE TABLE table_14532 ("Country" text,"Total population (1000)" real,"Total Foreign-born (1000)" real,"Born in other EU state (1000)" real,"Born in a non EU state (1000)" real) | SELECT MAX("Total Foreign-born (1000)") FROM table_14532 WHERE "Born in a non EU state (1000)" = '685' AND "Total population (1000)" > '10,666' |
What is the average pick # of the player from round 11? | CREATE TABLE table_6685 ("Round" real,"Pick #" real,"Overall" real,"Name" text,"Position" text,"College" text) | SELECT AVG("Pick #") FROM table_6685 WHERE "Round" = '11' |
What is the least value for average attendance when average on previous season is +644? | CREATE TABLE table_2970978_1 (ave_attendance INTEGER,___ave_on_prev_season VARCHAR) | SELECT MIN(ave_attendance) FROM table_2970978_1 WHERE ___ave_on_prev_season = "+644" |
give me the number of patients with diagnoses icd9 code 28522 who were discharged dead/expired. | 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 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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.discharge_location = "DEAD/EXPIRED" AND diagnoses.icd9_code = "28522" |
Who is the monarch with the heir thado minsaw? | CREATE TABLE table_26460435_8 (monarch VARCHAR,heir VARCHAR) | SELECT monarch FROM table_26460435_8 WHERE heir = "Thado Minsaw" |
what were the four most frequent output events until 2101? | CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type text,event_id number,chargetime time,cost number)CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREA... | SELECT d_items.label FROM d_items WHERE d_items.itemid IN (SELECT t1.itemid FROM (SELECT outputevents.itemid, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM outputevents WHERE STRFTIME('%y', outputevents.charttime) <= '2101' GROUP BY outputevents.itemid) AS t1 WHERE t1.c1 <= 4) |
What was the result for the total of 12? | CREATE TABLE table_26375386_23 (result VARCHAR,total VARCHAR) | SELECT result FROM table_26375386_23 WHERE total = 12 |
how many patients whose ethnicity is hispanic/latino - puerto rican and diagnoses long title is orthostatic hypotension? | 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 text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.ethnicity = "HISPANIC/LATINO - PUERTO RICAN" AND diagnoses.long_title = "Orthostatic hypotension" |
What class is assigned to frequencies lower than 90.5? | CREATE TABLE table_name_49 (class VARCHAR,frequency_mhz INTEGER) | SELECT class FROM table_name_49 WHERE frequency_mhz < 90.5 |
What Japanese prefecture has Ibaraki, Tsukuba? | CREATE TABLE table_7237 ("Name" text,"Japanese" text,"Population (2012)" real,"Date of designation" text,"Region" text,"Prefecture" text) | SELECT "Japanese" FROM table_7237 WHERE "Prefecture" = 'ibaraki' AND "Name" = 'tsukuba' |
Show me about the distribution of date_address_to and the sum of monthly_rental bin date_address_to by weekday in a bar chart. | CREATE TABLE Assessment_Notes (notes_id INTEGER,student_id INTEGER,teacher_id INTEGER,date_of_notes DATETIME,text_of_notes VARCHAR(255),other_details VARCHAR(255))CREATE TABLE Ref_Incident_Type (incident_type_code VARCHAR(10),incident_type_description VARCHAR(80))CREATE TABLE Students (student_id INTEGER,address_id INT... | SELECT date_address_to, SUM(monthly_rental) FROM Student_Addresses ORDER BY monthly_rental DESC |
what is primary disease of subject name hector blair? | 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 demographic.diagnosis FROM demographic WHERE demographic.name = "Hector Blair" |
What is the smallest round to have a record of 4-0? | CREATE TABLE table_name_95 (round INTEGER,record VARCHAR) | SELECT MIN(round) FROM table_name_95 WHERE record = "4-0" |
Which coach works with Robert Harvey? | CREATE TABLE table_name_1 (coach VARCHAR,captain VARCHAR) | SELECT coach FROM table_name_1 WHERE captain = "robert harvey" |
how many riders were faster than massimo ottobre ? | CREATE TABLE table_203_35 (id number,"pos" text,"rider" text,"manufacturer" text,"time/retired" text,"points" number) | SELECT COUNT("rider") FROM table_203_35 WHERE "points" > (SELECT "points" FROM table_203_35 WHERE "rider" = 'massimo ottobre') |
Who played on clay on 3 march 2012? | CREATE TABLE table_name_16 (opponent VARCHAR,surface VARCHAR,date VARCHAR) | SELECT opponent FROM table_name_16 WHERE surface = "clay" AND date = "3 march 2012" |
How many different jockeys ran on 17 Feb 2007? | CREATE TABLE table_19753 ("Result" text,"Date" text,"Race" text,"Venue" text,"Group" text,"Distance" text,"Weight (kg)" text,"Jockey" text,"Winner/2nd" text) | SELECT COUNT("Jockey") FROM table_19753 WHERE "Date" = '17 Feb 2007' |
What is the name of the project with the most hours? | CREATE TABLE assignedto (scientist number,project text)CREATE TABLE scientists (ssn number,name text)CREATE TABLE projects (code text,name text,hours number) | SELECT name FROM projects ORDER BY hours DESC LIMIT 1 |
How many people watch an away team score 6.9 (45)? | CREATE TABLE table_4898 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT AVG("Crowd") FROM table_4898 WHERE "Away team score" = '6.9 (45)' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.