instruction
stringlengths
0
1.06k
input
stringlengths
11
5.3k
response
stringlengths
2
4.44k
What is the type of the player whose transfer fee was 20m?
CREATE TABLE table_13770460_3 (type VARCHAR,transfer_fee VARCHAR)
SELECT type FROM table_13770460_3 WHERE transfer_fee = "€20M"
What 's the easiest way to fulfill the MDE requirement ?
CREATE TABLE course_prerequisite (pre_course_id int,course_id int)CREATE TABLE jobs (job_id int,job_title varchar,description varchar,requirement varchar,city varchar,state varchar,country varchar,zip int)CREATE TABLE comment_instructor (instructor_id int,student_id int,score int,comment_text varchar)CREATE TABLE ta (c...
SELECT DISTINCT course.department, course.name, course.number, program_course.workload, program_course.workload FROM course, program_course WHERE program_course.category LIKE '%MDE%' AND program_course.course_id = course.course_id AND program_course.workload = (SELECT MIN(PROGRAM_COURSEalias1.workload) FROM program_cou...
Which game number did they play the Chicago team?
CREATE TABLE table_name_15 (game VARCHAR,team VARCHAR)
SELECT game FROM table_name_15 WHERE team = "chicago"
what was patient 030-10559's first output time of the urine on 11/16/this year?
CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE allergy (allergyid number,patientunitst...
SELECT intakeoutput.intakeoutputtime FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '030-10559')) AND intakeoutput.cellpath LIKE '%output%...
Incumbent John Sullivan has what as biggest first elected?
CREATE TABLE table_61824 ("District" text,"Incumbent" text,"Party" text,"First elected" real,"Results" text)
SELECT MAX("First elected") FROM table_61824 WHERE "Incumbent" = 'john sullivan'
What is the opponent after round number 1 with a method of decision (unanimous)?
CREATE TABLE table_45136 ("Res." text,"Record" text,"Opponent" text,"Method" text,"Event" text,"Round" real,"Location" text)
SELECT "Opponent" FROM table_45136 WHERE "Round" > '1' AND "Method" = 'decision (unanimous)'
How many votes did Yvetta Kadakas & Ivo Linna, who had less than 4 draws, have?
CREATE TABLE table_name_93 (votes INTEGER,draw VARCHAR,artist VARCHAR)
SELECT SUM(votes) FROM table_name_93 WHERE draw < 4 AND artist = "yvetta kadakas & ivo linna"
What are the points against with a points difference?
CREATE TABLE table_51028 ("Club" text,"Played" text,"Drawn" text,"Lost" text,"Points for" text,"Points against" text,"Points difference" text,"Bonus Points" text,"Points" text)
SELECT "Points against" FROM table_51028 WHERE "Points difference" = 'points difference'
Which home team had an away team of the Brisbane Lions?
CREATE TABLE table_37519 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Ground" text,"Crowd" real,"Date" text,"Report" text)
SELECT "Home team" FROM table_37519 WHERE "Away team" = 'brisbane lions'
What nation had the athlete sebastian coe category:articles with hcards?
CREATE TABLE table_2603 ("Rank" real,"Athlete" text,"Nation" text,"Olympics" text,"Gold" real,"Silver" real,"Bronze" real,"Total(min. 2 medals)" real)
SELECT "Nation" FROM table_2603 WHERE "Athlete" = 'Sebastian Coe Category:Articles with hCards'
For the Japanese title that had 11 episodes, what is the average ratings?
CREATE TABLE table_64490 ("Japanese Title" text,"Romaji Title" text,"TV Station" text,"Episodes" real,"Average Ratings" text)
SELECT "Average Ratings" FROM table_64490 WHERE "Episodes" = '11' AND "Japanese Title" = 'サプリ'
What is the date of the game where Dipietro earned a decision and Carolina was the visiting team?
CREATE TABLE table_53719 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Decision" text,"Attendance" real,"Record" text)
SELECT "Date" FROM table_53719 WHERE "Decision" = 'dipietro' AND "Visitor" = 'carolina'
which country came in first ?
CREATE TABLE table_204_910 (id number,"rank" number,"name" text,"nationality" text,"result" number,"notes" text)
SELECT "nationality" FROM table_204_910 WHERE id = 1
What year was Jamboree made?
CREATE TABLE table_77366 ("Movie Title" text,"Year" real,"Role" text,"Director" text,"Producer" text)
SELECT "Year" FROM table_77366 WHERE "Movie Title" = 'jamboree'
Which Year has a Division larger than 3?
CREATE TABLE table_44945 ("The Year" real,"Division" real,"League" text,"Regular Season" text,"Playoffs" text)
SELECT MAX("The Year") FROM table_44945 WHERE "Division" > '3'
For those records from the products and each product's manufacturer, a bar chart shows the distribution of name and revenue , and group by attribute name, display in asc by the X.
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, T2.Revenue FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T1.Name, T1.Name ORDER BY T1.Name
How many of the 9 -credit classes are upper level ?
CREATE TABLE requirement (requirement_id int,requirement varchar,college varchar)CREATE TABLE comment_instructor (instructor_id int,student_id int,score int,comment_text varchar)CREATE TABLE gsi (course_offering_id int,student_id int)CREATE TABLE program (program_id int,name varchar,college varchar,introduction varchar...
SELECT COUNT(DISTINCT course.course_id) FROM course INNER JOIN program_course ON program_course.course_id = course.course_id WHERE course.credits = 9 AND program_course.category LIKE 'ULCS'
Tags: Spelling variants (AE/BE: o/ou).
CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE Tags (Id number,TagName text,Count number,ExcerptPostId number,WikiPostId number)CREATE TABLE Comment...
WITH PostCounts AS (SELECT Tags.Id AS TagId, COUNT(Posts.Id) AS PostCount FROM Posts INNER JOIN PostTags ON Posts.Id = PostTags.PostId INNER JOIN Tags ON PostTags.TagId = Tags.Id GROUP BY Tags.Id), Variants AS (SELECT * FROM (SELECT REPLACE(TagName, 'ou', 'o') AS vname, * FROM Tags) AS r WHERE vname != TagName) SELECT ...
Which Mountains classification has a Team classification of quick step?
CREATE TABLE table_name_81 (mountains_classification VARCHAR,team_classification VARCHAR)
SELECT mountains_classification FROM table_name_81 WHERE team_classification = "quick step"
What is the order number for songs by the original artist Luis Fonsi?
CREATE TABLE table_455 ("Episode" text,"Theme" text,"Song choice" text,"Original artist" text,"Order #" text,"Result" text)
SELECT "Order #" FROM table_455 WHERE "Original artist" = 'Luis Fonsi'
What is Home Team, when Attendance is '112', and when Away Team is 'Kentish Town'?
CREATE TABLE table_name_94 (home_team VARCHAR,attendance VARCHAR,away_team VARCHAR)
SELECT home_team FROM table_name_94 WHERE attendance = "112" AND away_team = "kentish town"
what were the three most frequently prescribed drugs at the same time, since 2 years ago, among the patients who were prescribed with heparin flush port (10units/ml)?
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 diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE d_items (row_id number,itemid number,label text,link...
SELECT t3.drug FROM (SELECT t2.drug, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, prescriptions.startdate FROM prescriptions JOIN admissions ON prescriptions.hadm_id = admissions.hadm_id WHERE prescriptions.drug = 'heparin flush port (10units/ml)' AND DATETIME(prescriptions.start...
When st kilda played as the Away team which date was that?
CREATE TABLE table_10267 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text)
SELECT "Date" FROM table_10267 WHERE "Away team" = 'st kilda'
how many patients whose primary disease is brain mass;intracranial hemorrhage and lab test fluid is joint fluid?
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 demographic (subject_id text,hadm_id text,name text,marital...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.diagnosis = "BRAIN MASS;INTRACRANIAL HEMORRHAGE" AND lab.fluid = "Joint Fluid"
What is the figure for Santo Domingo, Dominican for the world record in the clean & jerk?
CREATE TABLE table_65002 ("World record" text,"Snatch" text,"Yang Lian (CHN)" text,"98kg" text,"Santo Domingo,Dominican" text)
SELECT "Santo Domingo , Dominican" FROM table_65002 WHERE "World record" = 'clean & jerk'
what were the total number of times the romanians had a population percentage above 70 % ?
CREATE TABLE table_203_355 (id number,"year" number,"total" number,"romanians" text,"hungarians" text,"roma" text)
SELECT COUNT(*) FROM table_203_355 WHERE "romanians" > 70
A bar chart for what are the number of the names of photos taken with the lens brand 'Sigma' or 'Olympus'?, and sort by the names in descending please.
CREATE TABLE camera_lens (id int,brand text,name text,focal_length_mm real,max_aperture real)CREATE TABLE mountain (id int,name text,Height real,Prominence real,Range text,Country text)CREATE TABLE photos (id int,camera_lens_id int,mountain_id int,color text,name text)
SELECT T1.name, COUNT(T1.name) FROM camera_lens AS T1 JOIN photos AS T2 ON T2.camera_lens_id = T1.id WHERE T1.brand = 'Sigma' OR T1.brand = 'Olympus' GROUP BY T1.name ORDER BY T1.name DESC
Give me a bar chart for team_id of each all neutral, I want to rank by the bar from low to high.
CREATE TABLE university (School_ID int,School text,Location text,Founded real,Affiliation text,Enrollment real,Nickname text,Primary_conference text)CREATE TABLE basketball_match (Team_ID int,School_ID int,Team_Name text,ACC_Regular_Season text,ACC_Percent text,ACC_Home text,ACC_Road text,All_Games text,All_Games_Perce...
SELECT All_Neutral, Team_ID FROM basketball_match ORDER BY All_Neutral
What are the names of colleges in LA that have more than 15,000 students and of colleges in AZ with less than 13,000 students?
CREATE TABLE college (cname text,state text,enr number)CREATE TABLE tryout (pid number,cname text,ppos text,decision text)CREATE TABLE player (pid number,pname text,ycard text,hs number)
SELECT cname FROM college WHERE enr < 13000 AND state = "AZ" UNION SELECT cname FROM college WHERE enr > 15000 AND state = "LA"
How is Nitroglycerin SL administered?
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 demographic (subject_id text,hadm_id text,name text,marita...
SELECT prescriptions.route FROM prescriptions WHERE prescriptions.drug = "Nitroglycerin SL"
give me the number of patients whose insurance is private and procedure icd9 code is 4105?
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 demographic (subject_id text,hadm_id text,name text,marital...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.insurance = "Private" AND procedures.icd9_code = "4105"
Who is the conductor when the chicago symphony orchestra is featured?
CREATE TABLE table_name_3 (conductor VARCHAR,orchestra VARCHAR)
SELECT conductor FROM table_name_3 WHERE orchestra = "chicago symphony orchestra"
Which 2007 has a 2003 of 1r?
CREATE TABLE table_name_81 (Id VARCHAR)
SELECT 2007 FROM table_name_81 WHERE 2003 = "1r"
What company collaborated in pre-clinical autoimmune disease and inflammation?
CREATE TABLE table_13338 ("Name" text,"Platform" text,"Indication" text,"Status" text,"Collaboration" text)
SELECT "Collaboration" FROM table_13338 WHERE "Status" = 'pre-clinical' AND "Indication" = 'autoimmune disease and inflammation'
Count of posts by age in days.
CREATE TABLE PostNotices (Id number,PostId number,PostNoticeTypeId number,CreationDate time,DeletionDate time,ExpiryDate time,Body text,OwnerUserId number,DeletionUserId number)CREATE TABLE PostFeedback (Id number,PostId number,IsAnonymous boolean,VoteTypeId number,CreationDate time)CREATE TABLE CloseAsOffTopicReasonTy...
WITH PostAge AS (SELECT Id, DATEDIFF(day, CreationDate, @LastVote) AS Age FROM Posts WHERE PostTypeId = '##PostTypeId:int?2##'), PostsByAge AS (SELECT Age, COUNT(*) AS Count FROM PostAge GROUP BY Age) SELECT Age, Count, SUM(Count) OVER (ORDER BY Age DESC ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS RollingCount...
What is the rank of the town with a population of 258?
CREATE TABLE table_15265 ("Rank" real,"Population" real,"Name" text,"Former Name" text,"Municipality" text)
SELECT COUNT("Rank") FROM table_15265 WHERE "Population" = '258'
How many legs were own by alan tabern?
CREATE TABLE table_27906667_2 (legs_won INTEGER,player VARCHAR)
SELECT MAX(legs_won) FROM table_27906667_2 WHERE player = "Alan Tabern"
What state has an interview of 8.313 (8) ?
CREATE TABLE table_16268026_3 (state VARCHAR,interview VARCHAR)
SELECT state FROM table_16268026_3 WHERE interview = "8.313 (8)"
The winner Arnfinn Bergmann has what under country?
CREATE TABLE table_8688 ("Winner" text,"Country" text,"Winter Olympics" text,"FIS Nordic World Ski Championships" text,"Holmenkollen" text)
SELECT "Country" FROM table_8688 WHERE "Winner" = 'arnfinn bergmann'
What kind of surface was the tournament at Pune played on?
CREATE TABLE table_78391 ("Outcome" text,"Date" text,"Tournament" text,"Surface" text,"Opponent" text,"Score" text)
SELECT "Surface" FROM table_78391 WHERE "Tournament" = 'pune'
What is the average word count with crs and subframes lesser than 2?
CREATE TABLE table_name_9 (word__number INTEGER,name VARCHAR,subframe__number VARCHAR)
SELECT AVG(word__number) FROM table_name_9 WHERE name = "crs" AND subframe__number < 2
Name the average position when the goals against are more than 42 and draws less than 16 with goals of 44
CREATE TABLE table_name_4 (position INTEGER,draws VARCHAR,goals_against VARCHAR,goals_for VARCHAR)
SELECT AVG(position) FROM table_name_4 WHERE goals_against > 42 AND goals_for = 44 AND draws < 16
Which date had a site of N/A?
CREATE TABLE table_name_9 (date VARCHAR,site VARCHAR)
SELECT date FROM table_name_9 WHERE site = "n/a"
how many times have there been helps by damon stoudamire (13)
CREATE TABLE table_13464416_6 (record VARCHAR,high_assists VARCHAR)
SELECT COUNT(record) FROM table_13464416_6 WHERE high_assists = "Damon Stoudamire (13)"
How many LOA (metres) reported for Black Jack?
CREATE TABLE table_20854943_2 (loa__metres_ VARCHAR,yacht VARCHAR)
SELECT COUNT(loa__metres_) FROM table_20854943_2 WHERE yacht = "Black Jack"
A bar chart about the number of faults for different fault short name, order by the bar in ascending.
CREATE TABLE Fault_Log (fault_log_entry_id INTEGER,asset_id INTEGER,recorded_by_staff_id INTEGER,fault_log_entry_datetime DATETIME,fault_description VARCHAR(255),other_fault_details VARCHAR(255))CREATE TABLE Maintenance_Contracts (maintenance_contract_id INTEGER,maintenance_contract_company_id INTEGER,contract_start_da...
SELECT fault_short_name, COUNT(fault_short_name) FROM Part_Faults AS T1 JOIN Skills_Required_To_Fix AS T2 ON T1.part_fault_id = T2.part_fault_id JOIN Skills AS T3 ON T2.skill_id = T3.skill_id GROUP BY fault_short_name ORDER BY fault_short_name
Who was the team for game 34?
CREATE TABLE table_name_79 (team VARCHAR,game VARCHAR)
SELECT team FROM table_name_79 WHERE game = 34
What was the date of the game with a score of 2 1?
CREATE TABLE table_name_60 (date VARCHAR,score VARCHAR)
SELECT date FROM table_name_60 WHERE score = "2–1"
What regular season had an average attendance of 1,242?
CREATE TABLE table_67930 ("Year" text,"League" text,"Reg. Season" text,"Playoffs" text,"Avg. attendance \u2020" text)
SELECT "Reg. Season" FROM table_67930 WHERE "Avg. attendance \u2020" = '1,242'
What is the channel when the analogue terrestrial channel shows n/a, and the internet is itv.com, with a position larger than 6, and digital terrestrial channel is 6 27 (+1)?
CREATE TABLE table_name_10 (channel VARCHAR,digital_terrestrial_channel VARCHAR,position VARCHAR,analogue_terrestrial_channel VARCHAR,internet VARCHAR)
SELECT channel FROM table_name_10 WHERE analogue_terrestrial_channel = "n/a" AND internet = "itv.com" AND position > 6 AND digital_terrestrial_channel = "6 27 (+1)"
Who is the arranger for 'I KIssed a Girl'?
CREATE TABLE table_28715942_6 (arranger_s_ VARCHAR,track VARCHAR)
SELECT arranger_s_ FROM table_28715942_6 WHERE track = "I Kissed a Girl"
What is the lowest number of goals scored by a player in the normal league games where more than 8 total goals were scored?
CREATE TABLE table_53427 ("Name" text,"League" real,"FA Cup" real,"League Cup" real,"Total" real)
SELECT MIN("League") FROM table_53427 WHERE "Total" > '8'
How long is the diameter that has a longitude of 8.0e?
CREATE TABLE table_43785 ("Name" text,"Latitude" text,"Longitude" text,"Diameter (km)" real,"Year named" real)
SELECT "Diameter (km)" FROM table_43785 WHERE "Longitude" = '8.0e'
What is the top grid that laps less than 66 and a retried engine?
CREATE TABLE table_77901 ("Driver" text,"Constructor" text,"Laps" real,"Time/Retired" text,"Grid" real)
SELECT MAX("Grid") FROM table_77901 WHERE "Time/Retired" = 'engine' AND "Laps" < '66'
What is the Elimination for Candice?
CREATE TABLE table_name_96 (elimination VARCHAR,wrestler VARCHAR)
SELECT elimination FROM table_name_96 WHERE wrestler = "candice"
How many rounds were won with James Hunt as pole position and John Watson as fastest lap?
CREATE TABLE table_1140083_2 (rnd VARCHAR,pole_position VARCHAR,fastest_lap VARCHAR)
SELECT COUNT(rnd) FROM table_1140083_2 WHERE pole_position = "James Hunt" AND fastest_lap = "John Watson"
What is the lowest value for int. caps?
CREATE TABLE table_29743928_5 (int_caps INTEGER)
SELECT MIN(int_caps) FROM table_29743928_5
how many models weighed between 100 and 200 grams ?
CREATE TABLE table_204_878 (id number,"model" text,"release date" text,"sensor\nres.,size" text,"lens (35 mm equiv.)\nzoom,aperture" text,"screen\nsize,pixels" text,"dimensions\nw (mm) \u00d7 h (mm) \u00d7 d (mm)" text,"weight" text,"features" text)
SELECT COUNT("model") FROM table_204_878 WHERE "weight" >= 100 AND "weight" <= 200
Find the number of students for the cities where have more than one student.
CREATE TABLE has_amenity (dormid number,amenid number)CREATE TABLE dorm_amenity (amenid number,amenity_name text)CREATE TABLE lives_in (stuid number,dormid number,room_number number)CREATE TABLE dorm (dormid number,dorm_name text,student_capacity number,gender text)CREATE TABLE student (stuid number,lname text,fname te...
SELECT COUNT(*), city_code FROM student GROUP BY city_code HAVING COUNT(*) > 1
how many movies did 20th century fox create that were in the top 10 grossing films of 1965 ?
CREATE TABLE table_201_19 (id number,"rank" number,"title" text,"studio" text,"director" text,"actors" text,"gross" text)
SELECT COUNT("title") FROM table_201_19 WHERE "title" IN (SELECT "title" FROM table_201_19 ORDER BY "gross" DESC LIMIT 10) AND "studio" = '20th century fox'
With Olympic Bronze Medalist as the total what are the score points?
CREATE TABLE table_name_65 (score_points VARCHAR,total VARCHAR)
SELECT score_points FROM table_name_65 WHERE total = "olympic bronze medalist"
what's the name of the drug that patient 030-77189 was prescribed two or more times in 12/2102?
CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight number,dischargeweight number,hospitaladmittime time,hospitaladmitsource text,unitadmittime time,unitdischargetime tim...
SELECT t1.drugname FROM (SELECT medication.drugname, COUNT(medication.drugstarttime) AS c1 FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '030...
Which week did the Seattle Seahawks have a record of 6-6?
CREATE TABLE table_name_7 (week INTEGER,record VARCHAR)
SELECT AVG(week) FROM table_name_7 WHERE record = "6-6"
First Time Posts that are on bounty questions.
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 CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance text,MarkdownPostOwne...
SELECT COUNT(DISTINCT p.Id) AS QuestionWithBounty, COUNT(DISTINCT Answer.Id) AS BountyAnswers, SUM(CASE WHEN PostsBeforeBounty.Id IS NULL THEN 1 ELSE 0 END) AS FirstTimePosts FROM Posts AS P INNER JOIN Votes AS bStart ON p.Id = bStart.PostId AND bStart.VoteTypeId = 8 INNER JOIN Posts AS Answer ON Answer.ParentId = p.Id...
How many values of last year in QLD Cup if QLD Cup Premierships is 1996, 2001?
CREATE TABLE table_2383498_4 (last_year_in_qld_cup VARCHAR,qld_cup_premierships VARCHAR)
SELECT COUNT(last_year_in_qld_cup) FROM table_2383498_4 WHERE qld_cup_premierships = "1996, 2001"
what is the name of the location listed first on this list ?
CREATE TABLE table_203_872 (id number,"year" number,"location(s)" text,"number of contestants" number,"ladies winner" text,"men's winner" text)
SELECT "location(s)" FROM table_203_872 WHERE id = 1
Which Competition has a Score of 0-1, and Opponents of pkns fc?
CREATE TABLE table_75462 ("Date" text,"Venue" text,"Opponents" text,"Score" text,"Competition" text)
SELECT "Competition" FROM table_75462 WHERE "Score" = '0-1' AND "Opponents" = 'pkns fc'
what is the name when the sr no is less than 74 and floors is more than 36?
CREATE TABLE table_13715 ("Sr No" real,"Name" text,"Locale" text,"Height" text,"Floors" real,"Building Type" text)
SELECT "Name" FROM table_13715 WHERE "Sr No" < '74' AND "Floors" > '36'
How many professors have a Ph.D. in each department?
CREATE TABLE course (crs_code text,dept_code text,crs_description text,crs_credit number)CREATE TABLE enroll (class_code text,stu_num number,enroll_grade text)CREATE TABLE department (dept_code text,dept_name text,school_code text,emp_num number,dept_address text,dept_extension text)CREATE TABLE employee (emp_num numbe...
SELECT COUNT(*), dept_code FROM professor WHERE prof_high_degree = 'Ph.D.' GROUP BY dept_code
How many tries did the player have which ended with 20 Points?
CREATE TABLE table_name_13 (tries VARCHAR,points VARCHAR)
SELECT tries FROM table_name_13 WHERE points = 20
Which Score has a Couple comprised of jason & edyta, and a Style of freestyle?
CREATE TABLE table_38755 ("Couple" text,"Score" text,"Style" text,"Music" text,"Result" text)
SELECT "Score" FROM table_38755 WHERE "Couple" = 'jason & edyta' AND "Style" = 'freestyle'
Bar chart x axis dept code y axis minimal stu gpa
CREATE TABLE COURSE (CRS_CODE varchar(10),DEPT_CODE varchar(10),CRS_DESCRIPTION varchar(35),CRS_CREDIT float(8))CREATE TABLE EMPLOYEE (EMP_NUM int,EMP_LNAME varchar(15),EMP_FNAME varchar(12),EMP_INITIAL varchar(1),EMP_JOBCODE varchar(5),EMP_HIREDATE datetime,EMP_DOB datetime)CREATE TABLE DEPARTMENT (DEPT_CODE varchar(1...
SELECT DEPT_CODE, MIN(STU_GPA) FROM STUDENT GROUP BY DEPT_CODE
what is a drug that patient 76372 was prescribed two or more times during this month?
CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)C...
SELECT t1.drug FROM (SELECT prescriptions.drug, COUNT(prescriptions.startdate) AS c1 FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 76372) AND DATETIME(prescriptions.startdate, 'start of month') = DATETIME(CURRENT_TIME(), 'start of month', '-0 ...
how many had a total goals scored over 6 ?
CREATE TABLE table_204_770 (id number,"season" number,"date" text,"jia-a/csl winner" text,"result" text,"fa cup winner" text,"scorers" text,"stadium" text)
SELECT COUNT(*) FROM table_204_770 WHERE "result" + "result" > 6
What is the population where the rank is higher than 51 and the Median House-hold income is $25,250?
CREATE TABLE table_39542 ("Rank" real,"Place" text,"County" text,"Per Capita Income" text,"Median House- hold Income" text,"Median Family Income" text,"Population" real,"Number of Households" real)
SELECT SUM("Population") FROM table_39542 WHERE "Rank" > '51' AND "Median House- hold Income" = '$25,250'
Count the number of players who enter hall of fame for each year with a line chart, rank X-axis in asc order please.
CREATE TABLE manager_half (player_id TEXT,year INTEGER,team_id TEXT,league_id TEXT,inseason INTEGER,half INTEGER,g INTEGER,w INTEGER,l INTEGER,rank INTEGER)CREATE TABLE salary (year INTEGER,team_id TEXT,league_id TEXT,player_id TEXT,salary INTEGER)CREATE TABLE park (park_id TEXT,park_name TEXT,park_alias TEXT,city TEXT...
SELECT yearid, COUNT(*) FROM hall_of_fame GROUP BY yearid ORDER BY yearid
count the number of patients who have had a abscess microbiology test done since 2104.
CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature number,sao2 number,heartrate number,respiration number,systemicsystolic number,systemicdiasto...
SELECT COUNT(DISTINCT patient.uniquepid) FROM patient WHERE patient.patientunitstayid IN (SELECT microlab.patientunitstayid FROM microlab WHERE microlab.culturesite = 'abscess' AND STRFTIME('%y', microlab.culturetakentime) >= '2104')
Which Architecture and modelling has a Unit test of no, and a Projects templates of limited?
CREATE TABLE table_38387 ("Product" text,"Extensions" text,"Projects templates" text,"MSDN integration" text,"Debugging" text,"Profiling" text,"IntelliTrace" text,"Unit test" text,"Code coverage" text,"Test impact analysis" text,"Load testing" text,"Lab management" text,"Architecture and modelling" text,"Windows Phone ...
SELECT "Architecture and modelling" FROM table_38387 WHERE "Unit test" = 'no' AND "Projects templates" = 'limited'
What was the attendance when the Hawks played?
CREATE TABLE table_58487 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Leading scorer" text,"Attendance" real,"Record" text)
SELECT COUNT("Attendance") FROM table_58487 WHERE "Home" = 'hawks'
Who was the celebrity who exited on day 13?
CREATE TABLE table_name_35 (celebrity VARCHAR,exited VARCHAR)
SELECT celebrity FROM table_name_35 WHERE exited = "day 13"
tell me the five most frequently ordered procedure for patients of 40s since 2102?
CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE chartevents (row_id number,subject_id number,had...
SELECT d_icd_procedures.short_title FROM d_icd_procedures WHERE d_icd_procedures.icd9_code IN (SELECT t1.icd9_code FROM (SELECT procedures_icd.icd9_code, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM procedures_icd WHERE procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.age B...
What Episode has a Rating of 1.8, and Viewers (m) smaller than 2.73?
CREATE TABLE table_name_35 (episode VARCHAR,rating VARCHAR,viewers__m_ VARCHAR)
SELECT episode FROM table_name_35 WHERE rating = "1.8" AND viewers__m_ < 2.73
What is the time of the driver on grid 7?
CREATE TABLE table_57670 ("Driver" text,"Constructor" text,"Laps" real,"Time/Retired" text,"Grid" real)
SELECT "Time/Retired" FROM table_57670 WHERE "Grid" = '7'
What was the launcher vehicle for Apollo-Soyuz?
CREATE TABLE table_59940 ("Spaceport" text,"Launch complex" text,"Launcher" text,"Spacecraft" text,"Flights" text,"Years" text)
SELECT "Launcher" FROM table_59940 WHERE "Spacecraft" = 'apollo-soyuz'
What is the average Against, when Status is '2007 Rugby World Cup', and when Opposing Teams is 'U.S.A.'?
CREATE TABLE table_name_74 (against INTEGER,status VARCHAR,opposing_teams VARCHAR)
SELECT AVG(against) FROM table_name_74 WHERE status = "2007 rugby world cup" AND opposing_teams = "u.s.a."
how many days has it been since the first time that patient 033-22108 had intake of cl flush: non-tunneled ij r on the current icu visit?
CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight number,dischargeweight number,hospitaladmittime time,hospitaladmitsource text,unitadmittime time,unitdischargetime tim...
SELECT 1 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', intakeoutput.intakeoutputtime)) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid =...
count the number of patients whose drug code is vanc250l?
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 text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethni...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE prescriptions.formulary_drug_cd = "VANC250L"
Name the new entries this round for third round
CREATE TABLE table_73077 ("Round" text,"Clubs remaining" real,"Clubs involved" real,"Winners from previous round" text,"New entries this round" text,"Leagues entering this round" text)
SELECT "New entries this round" FROM table_73077 WHERE "Round" = 'Third round'
Which rider had more than 23 laps, a manufacturer of Aprilia, and a grid of 14
CREATE TABLE table_name_95 (rider VARCHAR,grid VARCHAR,laps VARCHAR,manufacturer VARCHAR)
SELECT rider FROM table_name_95 WHERE laps > 23 AND manufacturer = "aprilia" AND grid = 14
Who was the Opponent on July 29?
CREATE TABLE table_name_61 (opponent VARCHAR,date VARCHAR)
SELECT opponent FROM table_name_61 WHERE date = "july 29"
Attendance of 29,000 occurred on what date?
CREATE TABLE table_name_80 (date VARCHAR,attendance VARCHAR)
SELECT date FROM table_name_80 WHERE attendance = "29,000"
How many seasons have goals of 261-338 with more than 111 losses?
CREATE TABLE table_name_77 (seasons VARCHAR,goals VARCHAR,lost VARCHAR)
SELECT COUNT(seasons) FROM table_name_77 WHERE goals = "261-338" AND lost > 111
Which participants won the silver medal for the Men's Doubles?
CREATE TABLE table_name_57 (name VARCHAR,medal VARCHAR,event VARCHAR)
SELECT name FROM table_name_57 WHERE medal = "silver" AND event = "men's doubles"
what's the record where score is w 105 92 (ot)
CREATE TABLE table_11964154_9 (record VARCHAR,score VARCHAR)
SELECT record FROM table_11964154_9 WHERE score = "W 105–92 (OT)"
List the customers first and last name of 10 least expensive invoices.
CREATE TABLE media_types (id number,name text)CREATE TABLE playlists (id number,name text)CREATE TABLE sqlite_sequence (name text,seq text)CREATE TABLE albums (id number,title text,artist_id number)CREATE TABLE playlist_tracks (playlist_id number,track_id number)CREATE TABLE artists (id number,name text)CREATE TABLE em...
SELECT T1.first_name, T1.last_name FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id ORDER BY total LIMIT 10
What Opponent has a Score that is 1-6, 3-6?
CREATE TABLE table_name_57 (opponent VARCHAR,score VARCHAR)
SELECT opponent FROM table_name_57 WHERE score = "1-6, 3-6"
Plot the number of order date over order date in a line chart
CREATE TABLE Services (Service_ID INTEGER,Service_Type_Code CHAR(15),Workshop_Group_ID INTEGER,Product_Description VARCHAR(255),Product_Name VARCHAR(255),Product_Price DECIMAL(20,4),Other_Product_Service_Details VARCHAR(255))CREATE TABLE Invoice_Items (Invoice_Item_ID INTEGER,Invoice_ID INTEGER,Order_ID INTEGER,Order_I...
SELECT Order_Date, COUNT(Order_Date) FROM Bookings
What is the result of game played on 10-05-2012?
CREATE TABLE table_10234 ("Date" text,"Venue" text,"Opponent" text,"Result" text,"Competition" text)
SELECT "Result" FROM table_10234 WHERE "Date" = '10-05-2012'
NEW YORK to LAS VEGAS on sunday afternoon
CREATE TABLE flight (aircraft_code_sequence text,airline_code varchar,airline_flight text,arrival_time int,connections int,departure_time int,dual_carrier text,flight_days text,flight_id int,flight_number int,from_airport varchar,meal_code text,stops int,time_elapsed int,to_airport varchar)CREATE TABLE days (days_code ...
SELECT DISTINCT flight_id FROM flight WHERE (((flight_days IN (SELECT DAYSalias0.days_code FROM days AS DAYSalias0 WHERE DAYSalias0.day_name IN (SELECT DATE_DAYalias0.day_name FROM date_day AS DATE_DAYalias0 WHERE DATE_DAYalias0.day_number = 27 AND DATE_DAYalias0.month_number = 8 AND DATE_DAYalias0.year = 1991)) AND to...
Who is the advisor of Linda Smith? Give me the first name and last name.
CREATE TABLE student (stuid number,lname text,fname text,age number,sex text,major number,advisor number,city_code text)CREATE TABLE faculty_participates_in (facid number,actid number)CREATE TABLE participates_in (stuid number,actid number)CREATE TABLE faculty (facid number,lname text,fname text,rank text,sex text,phon...
SELECT T1.fname, T1.lname FROM faculty AS T1 JOIN student AS T2 ON T1.facid = T2.advisor WHERE T2.fname = "Linda" AND T2.lname = "Smith"