instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
What is the score of the Home team of geelong? | CREATE TABLE table_52319 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Home team score" FROM table_52319 WHERE "Home team" = 'geelong' |
What number has 2002-2003 as the season? | CREATE TABLE table_name_32 (number VARCHAR,season VARCHAR) | SELECT number FROM table_name_32 WHERE season = "2002-2003" |
give me the number of patients whose diagnoses short title is routine circumcision and drug type is additive? | CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_fla... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE diagnoses.short_title = "Routine circumcision" AND prescriptions.drug_type = "ADDITIVE" |
What is the first party with second member Hon. Rowland Hill, in the 1857 election? | CREATE TABLE table_59996 ("Election" text,"First member" text,"First party" text,"Second member" text,"Second party" text) | SELECT "First party" FROM table_59996 WHERE "Second member" = 'hon. rowland hill' AND "Election" = '1857' |
What is the interview score when the preliminaries score is 8.400? | CREATE TABLE table_12094300_1 (interview VARCHAR,preliminaries VARCHAR) | SELECT interview FROM table_12094300_1 WHERE preliminaries = "8.400" |
How many height entries are there for players from lagos, nigeria? | CREATE TABLE table_25061 ("Name" text,"#" real,"Position" text,"Height" text,"Weight" real,"Year" text,"Home Town" text,"High School" text) | SELECT COUNT("Height") FROM table_25061 WHERE "Home Town" = 'Lagos, Nigeria' |
TOP golang users in Denver. | CREATE TABLE ReviewTasks (Id number,ReviewTaskTypeId number,CreationDate time,DeletionDate time,ReviewTaskStateId number,PostId number,SuggestedEditId number,CompletedByReviewTaskId number)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPostId number,... | WITH USER_BY_TAG AS (SELECT ROW_NUMBER() OVER (ORDER BY COUNT(*) DESC) AS Rank, u.Id AS "user_link", COUNT(*) AS UpVotes FROM Tags AS t INNER JOIN PostTags AS pt ON pt.TagId = t.Id INNER JOIN Posts AS p ON p.ParentId = pt.PostId INNER JOIN Votes AS v ON v.PostId = p.Id AND VoteTypeId = 2 INNER JOIN Users AS u ON u.Id =... |
On what date is Hawthorn the home team? | CREATE TABLE table_name_10 (date VARCHAR,home_team VARCHAR) | SELECT date FROM table_name_10 WHERE home_team = "hawthorn" |
What is the lowest attendance that East End Park has ever had? | CREATE TABLE table_16519 ("Team" text,"Stadium" text,"Capacity" real,"Highest" real,"Lowest" real,"Average" real) | SELECT MIN("Lowest") FROM table_16519 WHERE "Stadium" = 'East End Park' |
How many days was the away team's score 11.8 (74)? | CREATE TABLE table_20730 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Ground" text,"Crowd" real,"Date" text,"Time" text) | SELECT COUNT("Date") FROM table_20730 WHERE "Away team score" = '11.8 (74)' |
What's jim colbert's highest rank? | CREATE TABLE table_name_60 (rank INTEGER,player VARCHAR) | SELECT MAX(rank) FROM table_name_60 WHERE player = "jim colbert" |
What is the number of airports per country, ordered from most to least? | CREATE TABLE airports (apid number,name text,city text,country text,x number,y number,elevation number,iata text,icao text)CREATE TABLE airlines (alid number,name text,iata text,icao text,callsign text,country text,active text)CREATE TABLE routes (rid number,dst_apid number,dst_ap text,src_apid number,src_ap text,alid ... | SELECT COUNT(*), country FROM airports GROUP BY country ORDER BY COUNT(*) DESC |
Which Partner has a Score in Final of 6 1, 6 2? | CREATE TABLE table_name_94 (partner VARCHAR,score_in_final VARCHAR) | SELECT partner FROM table_name_94 WHERE score_in_final = "6–1, 6–2" |
count the number of patients whose language is cape and admission location is phys referral/normal deli? | 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 WHERE demographic.language = "CAPE" AND demographic.admission_location = "PHYS REFERRAL/NORMAL DELI" |
What is the average number of golds for teams with 1 bronze, less than 3 silver, and a total over 2? | CREATE TABLE table_64018 ("Rank" text,"Nation" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real) | SELECT AVG("Gold") FROM table_64018 WHERE "Bronze" = '1' AND "Total" > '2' AND "Silver" < '3' |
What ga date do the models with 1.0, 1.2, 1.4ghz processor frequencies have? | CREATE TABLE table_16341 ("Model" text,"RU" real,"Max processors" text,"Processor frequency" text,"Max memory" text,"Max disk capacity" text,"GA Date" text) | SELECT "GA Date" FROM table_16341 WHERE "Processor frequency" = '1.0, 1.2, 1.4GHz' |
What was the result in the game broadcast on the Big East Network? | CREATE TABLE table_29046 ("Date" text,"Time" text,"Visiting team" text,"Home team" text,"Site" text,"Broadcast" text,"Result" text,"Attendance" real) | SELECT "Result" FROM table_29046 WHERE "Broadcast" = 'Big East Network' |
Which tournament had a 2009 result of 1R? | CREATE TABLE table_38173 ("Tournament" text,"2009" text,"2010" text,"2011" text,"2012" text) | SELECT "Tournament" FROM table_38173 WHERE "2009" = '1r' |
what is the only year that did not qualify appears under the playoffs column ? | CREATE TABLE table_203_521 (id number,"year" number,"division" number,"league" text,"regular season" text,"playoffs" text,"open cup" text) | SELECT "year" FROM table_203_521 WHERE "playoffs" = 'did not qualify' |
What competition took place in a year later than 2009 with team notes? | CREATE TABLE table_7779 ("Year" real,"Competition" text,"Venue" text,"Position" text,"Notes" text) | SELECT "Competition" FROM table_7779 WHERE "Year" > '2009' AND "Notes" = 'team' |
How many races had 4 podiums, 5 poles and more than 3 Flaps? | CREATE TABLE table_name_64 (race INTEGER,flap VARCHAR,podium VARCHAR,pole VARCHAR) | SELECT SUM(race) FROM table_name_64 WHERE podium = 4 AND pole = 5 AND flap > 3 |
What is the lowest overall amount of shutouts? | CREATE TABLE table_74416 ("Name" text,"Country" text,"Years" text,"Games" real,"Minutes" real,"Conceded" real,"Shutouts" real,"Int. caps" real) | SELECT MIN("Shutouts") FROM table_74416 |
The school of Portage was in what conference previous? | CREATE TABLE table_name_41 (previous_conference VARCHAR,school VARCHAR) | SELECT previous_conference FROM table_name_41 WHERE school = "portage" |
Name the highest Channel with an Aspect of 4:3, and a PSIP Short Name of ibc-tv? | CREATE TABLE table_name_12 (channel INTEGER,aspect VARCHAR,psip_short_name VARCHAR) | SELECT MAX(channel) FROM table_name_12 WHERE aspect = "4:3" AND psip_short_name = "ibc-tv" |
What year did Coenraad Breytenbach have their Int'l Debut? | CREATE TABLE table_65125 ("Player" text,"Int'l Debut" text,"Year" text,"Cross Code Debut" text,"Date" text,"Position" text) | SELECT "Year" FROM table_65125 WHERE "Player" = 'coenraad breytenbach' |
Where did X rant the most?. | CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)CREATE TABLE ReviewTaskTypes (Id number,Name text,Description text)CREATE TABLE PostsWithDeleted (Id number,PostTypeId number,AcceptedAnswerId number,Paren... | SELECT p.Id AS "post_link", LENGTH(p.Body) AS "length", p.Score AS "score" FROM Users AS u JOIN Posts AS p ON p.OwnerUserId = u.Id WHERE u.Id = '##UserId##' ORDER BY 'score', 'length' DESC |
How many Car numbers have a Driver of erik darnell, and a Pos smaller than 2? | CREATE TABLE table_38292 ("Pos." real,"Car #" real,"Driver" text,"Make" text,"Team" text) | SELECT COUNT("Car #") FROM table_38292 WHERE "Driver" = 'erik darnell' AND "Pos." < '2' |
Show the number of accounts for different statement details in a bar chart, and could you show y-axis in ascending order? | CREATE TABLE Accounts (Account_ID INTEGER,Statement_ID INTEGER,Account_Details VARCHAR(255))CREATE TABLE Statements (Statement_ID INTEGER,Statement_Details VARCHAR(255))CREATE TABLE Ref_Document_Types (Document_Type_Code CHAR(15),Document_Type_Name VARCHAR(255),Document_Type_Description VARCHAR(255))CREATE TABLE Projec... | SELECT Statement_Details, COUNT(Statement_Details) FROM Accounts AS T1 JOIN Statements AS T2 ON T1.Statement_ID = T2.Statement_ID GROUP BY Statement_Details ORDER BY COUNT(Statement_Details) |
Where accepted answer does not have the highest score. | CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,CreationDate time,RejectionReasonId number,Comment text)CREATE TABLE Comments (Id number,PostId number,Score number,Text text,CreationDate time,UserDisplayName text,UserId numbe... | SELECT COUNT(P2.Id) AS "numquestions" FROM Posts AS P JOIN Posts AS P2 ON (P2.Id = P.ParentId) JOIN Posts AS P3 ON (P3.ParentId = P2.Id) WHERE P.Score > 1 AND P.PostTypeId = 2 AND P2.PostTypeId = 1 AND P3.PostTypeId = 2 AND P.Score > P3.Score AND P2.AcceptedAnswerId = P3.Id AND P2.CreationDate BETWEEN '2012-10-01' AND ... |
What models have an a2 barrel profile? | CREATE TABLE table_12834315_5 (name VARCHAR,barrel_profile VARCHAR) | SELECT name FROM table_12834315_5 WHERE barrel_profile = "A2" |
Give the number of patients whose primary disease is overdose and died in or before year 2168. | 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 = "OVERDOSE" AND demographic.dod_year <= "2168.0" |
What catalogno was in 1971 and had a remark of #27 us? | CREATE TABLE table_36553 ("Year" real,"Title" text,"Format" text,"Label" text,"Catalogno" text,"Remark" text) | SELECT "Catalogno" FROM table_36553 WHERE "Year" = '1971' AND "Remark" = '#27 us' |
Comments that are 600 characters long. | 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 c.Id AS "comment_link", u.Id AS "user_link" FROM Comments AS c JOIN Users AS u ON (u.Id = UserId) WHERE LENGTH(Text) = 600 |
what is x when faisaly is 0-0? | CREATE TABLE table_26173063_2 (× VARCHAR,faisaly VARCHAR) | SELECT × FROM table_26173063_2 WHERE faisaly = "0-0" |
what is the name of the intake that patient 19428 first had the previous day? | CREATE TABLE transfers (row_id number,subject_id number,hadm_id number,icustay_id number,eventtype text,careunit text,wardid number,intime time,outtime 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 d_items (row_... | SELECT d_items.label FROM d_items WHERE d_items.itemid IN (SELECT inputevents_cv.itemid 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 = 19428)) AND DATETIME(inputevents_cv.... |
How many people attended the game at Jahn-sportpark? | CREATE TABLE table_24786958_2 (attendance INTEGER,game_site VARCHAR) | SELECT MIN(attendance) FROM table_24786958_2 WHERE game_site = "Jahn-Sportpark" |
provide the number of patients whose year of birth is less than 2182 and drug route is inhalation? | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marita... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.dob_year < "2182" AND prescriptions.route = "INHALATION" |
What was the place in season 8 with a rank by average at 139? | CREATE TABLE table_40464 ("Rank by average" text,"Place" text,"Perfect 40s" text,"Total" text,"Number of dances" text,"Season" text,"Average" text) | SELECT "Place" FROM table_40464 WHERE "Season" = '8' AND "Rank by average" = '139' |
When was there 8.9% Green-Communist? | CREATE TABLE table_19475 ("Date Released" text,"Polling institute" text,"Socialist" text,"Social Democratic" text,"Peoples Party" text,"Green-Communist" text,"Left Bloc" text,"Lead" text) | SELECT "Date Released" FROM table_19475 WHERE "Green-Communist" = '8.9%' |
When George H.W. Bush had 81%, and Pat Robertson had 9%, what did Bob Dole have? | CREATE TABLE table_name_67 (bob_dole VARCHAR,george_hw_bush VARCHAR,pat_robertson VARCHAR) | SELECT bob_dole FROM table_name_67 WHERE george_hw_bush = "81%" AND pat_robertson = "9%" |
I want the score for 30 april 1977 | CREATE TABLE table_31873 ("Date" text,"Venue" text,"Score" text,"Result" text,"Competition" text) | SELECT "Score" FROM table_31873 WHERE "Date" = '30 april 1977' |
which was released in 2011 , undefeated or freakonomics ? | CREATE TABLE table_204_228 (id number,"year" number,"title" text,"credit" text,"role" text,"notes" text) | SELECT "title" FROM table_204_228 WHERE "title" IN ('undefeated', 'freakonomics') AND "year" = 2011 |
what team played against zimbabwe in 1999? | CREATE TABLE table_name_11 (team VARCHAR,year VARCHAR,versus VARCHAR) | SELECT team FROM table_name_11 WHERE year = 1999 AND versus = "zimbabwe" |
What was the Skip for Germany? | CREATE TABLE table_43402 ("Nation" text,"Skip" text,"Third" text,"Second" text,"Lead" text,"Alternate" text,"Club" text) | SELECT "Skip" FROM table_43402 WHERE "Nation" = 'germany' |
What is the sum of Gold, when Total is less than 1? | CREATE TABLE table_7750 ("Rank" text,"Nation" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real) | SELECT SUM("Gold") FROM table_7750 WHERE "Total" < '1' |
What is the highest total with a t12 finish? | CREATE TABLE table_69574 ("Player" text,"Country" text,"Year(s) Won" text,"Total" real,"To par" text,"Finish" text) | SELECT MAX("Total") FROM table_69574 WHERE "Finish" = 't12' |
What is the result week 1? | CREATE TABLE table_12454 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Game site" text,"Record" text,"Attendance" real) | SELECT "Result" FROM table_12454 WHERE "Week" = '1' |
what h ii flight took place last ? | CREATE TABLE table_203_538 (id number,"flight" text,"date" text,"payload nickname" text,"payload" text,"orbit" text,"result" text) | SELECT "flight" FROM table_203_538 ORDER BY "date" DESC LIMIT 1 |
Which main developer made their first release in 1991 and created the Mega Drive/Genesis console? | CREATE TABLE table_12887260_1 (main_developer VARCHAR,first_release VARCHAR,console VARCHAR) | SELECT main_developer FROM table_12887260_1 WHERE first_release = 1991 AND console = "Mega Drive/Genesis" |
Who is the opponent with 16 points? | CREATE TABLE table_8055 ("Game" real,"Date" text,"Opponent" text,"Result" text,"Falcons points" real,"Opponents" real,"Record" text) | SELECT "Opponent" FROM table_8055 WHERE "Opponents" = '16' |
Jack Loell had how many extra points? | CREATE TABLE table_25724294_2 (extra_points VARCHAR,player VARCHAR) | SELECT extra_points FROM table_25724294_2 WHERE player = "Jack Loell" |
What is the total number of semi-final losses for the Kitchener Rangers? | CREATE TABLE table_17751942_4 (final_losses VARCHAR,Semi INTEGER,team VARCHAR) | SELECT MAX(Semi) - final_losses FROM table_17751942_4 WHERE team = "Kitchener Rangers" |
who won the senate seat in arkansas | CREATE TABLE table_1133844_4 (senator VARCHAR,state__linked_to_summaries_below_ VARCHAR) | SELECT senator FROM table_1133844_4 WHERE state__linked_to_summaries_below_ = "Arkansas" |
give me the number of patients whose age is less than 41 and lab test fluid is pleural? | 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.age < "41" AND lab.fluid = "Pleural" |
What place result was the 1996 season at Lake Louise, Canada? | CREATE TABLE table_68437 ("Season" real,"Date" text,"Location" text,"Race" text,"Place" text) | SELECT "Place" FROM table_68437 WHERE "Season" = '1996' AND "Location" = 'lake louise, canada' |
What years had players who scored 36 goals? | CREATE TABLE table_33869 ("Rank" text,"Player" text,"Goals" text,"Assists" text,"Points" text,"Years" text) | SELECT "Years" FROM table_33869 WHERE "Goals" = '36' |
What source has a race winner of ben adriaenssen / ben van den bogaart, and the gp winner of ben adriaenssen / ben van den bogaart, for the date of 1 april? | CREATE TABLE table_name_8 (source VARCHAR,date VARCHAR,race_winners VARCHAR,gp_winner VARCHAR) | SELECT source FROM table_name_8 WHERE race_winners = "ben adriaenssen / ben van den bogaart" AND gp_winner = "ben adriaenssen / ben van den bogaart" AND date = "1 april" |
what is the total days held on # 1st ? | CREATE TABLE table_204_23 (id number,"#" number,"wrestlers" text,"reign" number,"date" text,"days held" number,"location" text,"event" text,"notes" text) | SELECT "days held" FROM table_204_23 WHERE "#" = 1 |
What is the lengtho f track 16? | CREATE TABLE table_name_88 (length VARCHAR,track VARCHAR) | SELECT length FROM table_name_88 WHERE track = "16" |
What is Category, when Result is 'Nominated', when Award is 'Drama Desk Award', and when Nominee is 'Nathan Lane'? | CREATE TABLE table_62276 ("Year" real,"Award" text,"Category" text,"Nominee" text,"Result" text) | SELECT "Category" FROM table_62276 WHERE "Result" = 'nominated' AND "Award" = 'drama desk award' AND "Nominee" = 'nathan lane' |
Questions which are closed and favorited. | CREATE TABLE PostHistory (Id number,PostHistoryTypeId number,PostId number,RevisionGUID other,CreationDate time,UserId number,UserDisplayName text,Comment text,Text text,ContentLicense text)CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPostId number... | SELECT Id AS "post_link", FavoriteCount, Score, CreationDate FROM Posts WHERE (PostTypeId = 1) AND (NOT ClosedDate IS NULL) AND (FavoriteCount > 0) ORDER BY CreationDate DESC |
Which Rank is the lowest one that has a Gross of $54,215,416? | CREATE TABLE table_name_24 (rank INTEGER,gross VARCHAR) | SELECT MIN(rank) FROM table_name_24 WHERE gross = "$54,215,416" |
which opponent had the lowest amount of points in one game ? | CREATE TABLE table_204_123 (id number,"week" number,"date" text,"kickoff" text,"opponent" text,"results\nfinal score" text,"results\nteam record" text,"game site" text,"attendance" number) | SELECT "opponent" FROM table_204_123 ORDER BY "results\nfinal score" LIMIT 1 |
give me the flights from PHOENIX to MILWAUKEE on wednesday | CREATE TABLE flight_leg (flight_id int,leg_number int,leg_flight int)CREATE TABLE flight_stop (flight_id int,stop_number int,stop_days text,stop_airport text,arrival_time int,arrival_airline text,arrival_flight_number int,departure_time int,departure_airline text,departure_flight_number int,stop_time int)CREATE TABLE e... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE (CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'MILWAUKEE' AND date_day.day_number = 23 AND date_day.month_number = 4 AND... |
Name the district for newtown square | CREATE TABLE table_23331 ("District" real,"Representative" text,"Party" text,"Residence" text,"Counties represented" text,"Term ends" real,"First Elected" real) | SELECT MIN("District") FROM table_23331 WHERE "Residence" = 'Newtown Square' |
WHat in 2005 has a Win % of 82.61? | CREATE TABLE table_name_59 (win__percentage VARCHAR) | SELECT 2005 FROM table_name_59 WHERE win__percentage = "82.61" |
Which courses are offered in the next 6 semesters ? | CREATE TABLE student (student_id int,lastname varchar,firstname varchar,program_id int,declare_major varchar,total_credit int,total_gpa float,entered_as varchar,admit_term int,predicted_graduation_semester int,degree varchar,minor varchar,internship varchar)CREATE TABLE ta (campus_job_id int,student_id int,location var... | SELECT DISTINCT course.name, course.number, semester.semester, semester.year FROM course, course_offering, semester WHERE ((semester.semester = 'FA' AND semester.year = 2016) OR (semester.semester = 'FA' AND semester.year = 2017) OR (semester.semester = 'FA' AND semester.year = 2018) OR (semester.semester = 'WN' AND se... |
Which 2 or 3 lectures a week usually are there in 353 ? | CREATE TABLE program (program_id int,name varchar,college varchar,introduction varchar)CREATE TABLE program_requirement (program_id int,category varchar,min_credit int,additional_req varchar)CREATE TABLE area (course_id int,area varchar)CREATE TABLE gsi (course_offering_id int,student_id int)CREATE TABLE course (course... | SELECT DISTINCT course_offering.friday, course_offering.monday, course_offering.saturday, course_offering.sunday, course_offering.thursday, course_offering.tuesday, course_offering.wednesday, semester.semester, semester.year FROM course, course_offering, semester WHERE course.course_id = course_offering.course_id AND c... |
Name the last title for cuenca | CREATE TABLE table_73674 ("Club" text,"Home city" text,"Stadium" text,"First season in the Serie A" real,"First season in current spell" real,"Last title" text) | SELECT "Last title" FROM table_73674 WHERE "Home city" = 'Cuenca' |
Find the name of dorms which have both TV Lounge and Study Room as amenities. | CREATE TABLE has_amenity (dormid VARCHAR,amenid VARCHAR)CREATE TABLE dorm_amenity (amenid VARCHAR,amenity_name VARCHAR)CREATE TABLE dorm (dorm_name VARCHAR,dormid VARCHAR) | SELECT T1.dorm_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid WHERE T3.amenity_name = 'TV Lounge' INTERSECT SELECT T1.dorm_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid WHERE T3... |
What is the lowest height for Parent grasmoor when it has a Prom larger than 117? | CREATE TABLE table_78228 ("Peak" text,"Height (m)" real,"Prom. (m)" real,"Class" text,"Parent" text) | SELECT MIN("Height (m)") FROM table_78228 WHERE "Parent" = 'grasmoor' AND "Prom. (m)" > '117' |
When Collingwood was the home team who was the opposing away team? | CREATE TABLE table_name_52 (away_team VARCHAR,home_team VARCHAR) | SELECT away_team FROM table_name_52 WHERE home_team = "collingwood" |
what are the five most frequently prescribed drugs for patients who have a previous diagnosis of dmii neuro nt st uncntrl during the same hospital encounter, in 2104? | CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE inputevents_... | SELECT t3.drug FROM (SELECT t2.drug, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, diagnoses_icd.charttime, admissions.hadm_id FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions.hadm_id WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_... |
What was the attendance for july 18? | CREATE TABLE table_38815 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" real,"Record" text) | SELECT COUNT("Attendance") FROM table_38815 WHERE "Date" = 'july 18' |
What is the Original Title, when Director is 'Ting Shan-Si', and when Film Title Used In Nomination is 'The 800 Heroes'? | CREATE TABLE table_name_73 (original_title VARCHAR,director VARCHAR,film_title_used_in_nomination VARCHAR) | SELECT original_title FROM table_name_73 WHERE director = "ting shan-si" AND film_title_used_in_nomination = "the 800 heroes" |
What is the highest number of maidens when the bowling best was 1/13? | CREATE TABLE table_20400 ("Player" text,"Matches" real,"Overs" text,"Maidens" real,"Runs" real,"Wickets" real,"Average" text,"Economy" text,"5w" real,"10w" real,"Best Bowling" text) | SELECT MAX("Maidens") FROM table_20400 WHERE "Best Bowling" = '1/13' |
what is the number of male patients with drug code bag? | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.gender = "M" AND prescriptions.formulary_drug_cd = "BAG" |
Which of these classes can be taken as Other next semester ? | CREATE TABLE instructor (instructor_id int,name varchar,uniqname varchar)CREATE TABLE gsi (course_offering_id int,student_id int)CREATE TABLE requirement (requirement_id int,requirement varchar,college varchar)CREATE TABLE program (program_id int,name varchar,college varchar,introduction varchar)CREATE TABLE course_pre... | SELECT DISTINCT course.department, course.name, course.number FROM course, course_offering, program, program_course, semester WHERE course.course_id = course_offering.course_id AND program_course.category LIKE '%Other%' AND program_course.course_id = course.course_id AND program.name LIKE '%CS-LSA%' AND program.program... |
Who was awarded after 1947 in the category of, the best actor in a leading role? | CREATE TABLE table_40305 ("Year" real,"Award" text,"Result" text,"Category" text,"Film" text) | SELECT "Award" FROM table_40305 WHERE "Year" > '1947' AND "Category" = 'best actor in a leading role' |
For all employees who have the letters D or S in their first name, give me the comparison about the sum of department_id over the job_id , and group by attribute job_id, show total number in ascending order. | 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 jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN_SALARY decimal(6,0),MAX_SALARY decimal(6,0))CREATE TABLE regions (REGION_ID decimal(5,0),REGION_NAME varchar(25))CREATE TABLE emp... | SELECT JOB_ID, SUM(DEPARTMENT_ID) FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' GROUP BY JOB_ID ORDER BY SUM(DEPARTMENT_ID) |
Who was the incumbent in Virginia 3? | CREATE TABLE table_2668374_18 (incumbent VARCHAR,district VARCHAR) | SELECT incumbent FROM table_2668374_18 WHERE district = "Virginia 3" |
For those records from the products and each product's manufacturer, find name and the average of manufacturer , and group by attribute name, and visualize them by a bar chart. | 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 T2.Name, T1.Manufacturer FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T2.Name |
When did they play at Candlestick Park? | CREATE TABLE table_name_25 (date VARCHAR,game_site VARCHAR) | SELECT date FROM table_name_25 WHERE game_site = "candlestick park" |
What is the lowest number of million viewers for an episode before episode 5 with a rating/share of 1.1/3? | CREATE TABLE table_name_74 (viewers__millions_ INTEGER,episode__number VARCHAR,rating VARCHAR) | SELECT MIN(viewers__millions_) FROM table_name_74 WHERE rating / SHARE(18 AS –49) = 1.1 / 3 AND episode__number < 5 |
i want a nonstop flight from INDIANAPOLIS to TORONTO that leaves thursday morning | CREATE TABLE month (month_number int,month_name text)CREATE TABLE airport_service (city_code varchar,airport_code varchar,miles_distant int,direction varchar,minutes_distant int)CREATE TABLE aircraft (aircraft_code varchar,aircraft_description varchar,manufacturer varchar,basic_type varchar,engines int,propulsion varch... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE (((CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'TORONTO' AND date_day.day_number = 24 AND date_day.month_number = 5 AND... |
Can you tell me the Date that has the Week smaller than 13, and the Opponent of green bay packers? | CREATE TABLE table_49340 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Attendance" real) | SELECT "Date" FROM table_49340 WHERE "Week" < '13' AND "Opponent" = 'green bay packers' |
What was the score on October 24, 2005? | CREATE TABLE table_name_55 (score VARCHAR,date VARCHAR) | SELECT score FROM table_name_55 WHERE date = "october 24, 2005" |
How many different play-by-play announcers also had pregame analysis by Darren Flutie, Eric Tillman and Greg Frers? | CREATE TABLE table_21830 ("Year" real,"Network" text,"Play-by-play" text,"Colour commentator(s)" text,"Sideline reporters" text,"Pregame host" text,"Pregame analysts" text) | SELECT COUNT("Play-by-play") FROM table_21830 WHERE "Pregame analysts" = 'Darren Flutie, Eric Tillman and Greg Frers' |
what is the lowest qualifying rank? | CREATE TABLE table_17994 ("Year" real,"Competition" text,"Location" text,"Event" text,"Final-Rank" text,"Final-Score" text,"Qualifying Rank" real,"Qualifying Score" text) | SELECT MIN("Qualifying Rank") FROM table_17994 |
When hittite middle kingdom , new kingdom of egypt is the ubaid period in mesopotamia how many early chalcolithics are there? | CREATE TABLE table_26150 ("Copper Age" text,"Chalcolithic (4500 BC - 3300 BC)" text,"Early Chalcolithic" text,"4500 BC - 4000 BC" text,"Ubaid period in Mesopotamia" text) | SELECT COUNT("Early Chalcolithic") FROM table_26150 WHERE "Ubaid period in Mesopotamia" = 'Hittite Middle Kingdom , New Kingdom of Egypt' |
since 2105, did patient 010-16627 get antibiotics - quinolone in other hospitals? | CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature number,sao2 number,heartrate number,respiration number,systemicsystolic number,systemicdiastolic number,systemicmean number,observationtime time)CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dos... | SELECT COUNT(*) > 0 FROM treatment WHERE treatment.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.uniquepid = '010-16627' AND patient.hospitalid <> (SELECT DISTINCT patient.hospitalid FROM patient WHERE patient.uniquepid = '010-16627' AND patient.hospitaldischargetime IS NULL)) AND tr... |
What are the number of goals conceded that has a played greater than 18? | CREATE TABLE table_79832 ("Place" real,"Team" text,"Played" real,"Draw" real,"Lost" real,"Goals Scored" real,"Goals Conceded" real,"Points" real) | SELECT COUNT("Goals Conceded") FROM table_79832 WHERE "Played" > '18' |
For all employees who have the letters D or S in their first name, visualize a bar chart about the distribution of hire_date and the average of department_id bin hire_date by time, and rank mean department id in descending order. | CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAIL varchar(25),PHONE_NUMBER varchar(20),HIRE_DATE date,JOB_ID varchar(10),SALARY decimal(8,2),COMMISSION_PCT decimal(2,2),MANAGER_ID decimal(6,0),DEPARTMENT_ID decimal(4,0))CREATE TABLE countries (COUNTRY_ID varchar(2),COUN... | SELECT HIRE_DATE, AVG(DEPARTMENT_ID) FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' ORDER BY AVG(DEPARTMENT_ID) DESC |
What are the losses where the award is Mike Miller (Smoy)? | CREATE TABLE table_name_34 (losses VARCHAR,awards VARCHAR) | SELECT losses FROM table_name_34 WHERE awards = "mike miller (smoy)" |
renal failure | CREATE TABLE table_train_258 ("id" int,"gender" string,"autoimmune_disease" bool,"renal_disease" bool,"hepatic_disease" bool,"immune_deficiency_disorder" bool,"active_hepatitis" bool,"body_mass_index_bmi" float,"NOUSE" float) | SELECT * FROM table_train_258 WHERE renal_disease = 1 |
How many regions have 0.5% solar panels? | CREATE TABLE table_27330 ("Region" text,"Public network" text,"Own/community generator" text,"Solar panel" text,"Other source" text,"None" text) | SELECT COUNT("Public network") FROM table_27330 WHERE "Solar panel" = '0.5%' |
What rank is the airport in Fortaleza? | CREATE TABLE table_name_19 (rank VARCHAR,location VARCHAR) | SELECT rank FROM table_name_19 WHERE location = "fortaleza" |
What is the name of the race when Lineth Chepkurui is the athlete? | CREATE TABLE table_name_17 (race VARCHAR,athlete VARCHAR) | SELECT race FROM table_name_17 WHERE athlete = "lineth chepkurui" |
Which socket goes with the item with release price of $378 and turbo of 6/6/8/9? | CREATE TABLE table_64272 ("Model number" text,"sSpec number" text,"Cores" text,"Frequency" text,"Turbo" text,"L2 cache" text,"L3 cache" text,"GPU model" text,"GPU frequency" text,"Socket" text,"I/O bus" text,"Release date" text,"Part number(s)" text,"Release price (USD)" text) | SELECT "Socket" FROM table_64272 WHERE "Release price ( USD )" = '$378' AND "Turbo" = '6/6/8/9' |
What is the largest round number for Dan Connor, the player? | CREATE TABLE table_37749 ("Round" real,"Pick" real,"Player" text,"Position" text,"School/Club Team" text) | SELECT MAX("Round") FROM table_37749 WHERE "Player" = 'dan connor' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.