instruction
stringlengths
0
1.06k
input
stringlengths
11
5.3k
response
stringlengths
2
4.44k
When they were playing the detroit lions at tampa stadium, what was the score?
CREATE TABLE table_10564 ("Week" text,"Date" text,"Opponent" text,"Result" text,"Kickoff [a ]" text,"Game site" text,"Attendance" text,"Record" text)
SELECT "Result" FROM table_10564 WHERE "Game site" = 'tampa stadium' AND "Opponent" = 'detroit lions'
Which department offers the most credits all together?
CREATE TABLE professor (emp_num number,dept_code text,prof_office text,prof_extension text,prof_high_degree text)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...
SELECT T3.dept_name FROM course AS T1 JOIN class AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T1.dept_code = T3.dept_code GROUP BY T1.dept_code ORDER BY SUM(T1.crs_credit) DESC LIMIT 1
What is the area for a population of 0.58 km?
CREATE TABLE table_43570 ("landsv\u00e6\u00f0i" text,"(English)" text,"Population 2011-01-01" text,"Area (km\u00b2)" text,"Pop./ km\u00b2" real)
SELECT "Area (km\u00b2)" FROM table_43570 WHERE "Pop./ km\u00b2" = '0.58'
What is the average feet that has a Latitude (N) of 35 48 35 , and under 8,047m?
CREATE TABLE table_53972 ("Peak" text,"metres" real,"feet" real,"Latitude (N)" text,"Longitude (E)" text,"Prominence (m)" real)
SELECT AVG("feet") FROM table_53972 WHERE "Latitude (N)" = '35°48′35″' AND "metres" < '8,047'
What's the score in 1990?
CREATE TABLE table_59463 ("Year" text,"Champion" text,"Runner-up" text,"Score" text,"Name" text)
SELECT "Score" FROM table_59463 WHERE "Year" = '1990'
what number of people went to the tiger stadium
CREATE TABLE table_name_89 (result VARCHAR,venue VARCHAR)
SELECT result FROM table_name_89 WHERE venue = "tiger stadium"
David James Elliott directed which episode number within the series?
CREATE TABLE table_25519 ("No. in series" real,"No. in season" real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text)
SELECT "No. in series" FROM table_25519 WHERE "Directed by" = 'David James Elliott'
Name the area for map # 24
CREATE TABLE table_20650 ("Province" text,"Map #" real,"ISO 3166-2:AF" text,"Centers" text,"Population" real,"Area (km\u00b2)" real,"Language" text,"Notes" text,"U.N. Region" text)
SELECT "Area (km\u00b2)" FROM table_20650 WHERE "Map #" = '24'
count the number of times that patient 018-119251 has been prescribed the nss infusion since 1 year ago.
CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE allergy (allergyid number,patientunitst...
SELECT COUNT(*) FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '018-119251')) AND medication.drugname = 'nss infusion' AND DATETIME(medication...
What is the tyres for Didier pironi?
CREATE TABLE table_52991 ("Constructor" text,"Chassis" text,"Engine" text,"Tyres" text,"Driver" text,"Rounds" text)
SELECT "Tyres" FROM table_52991 WHERE "Driver" = 'didier pironi'
Return me a pie chart to show the average experience working length of journalists working on different role type.
CREATE TABLE event (Event_ID int,Date text,Venue text,Name text,Event_Attendance int)CREATE TABLE news_report (journalist_ID int,Event_ID int,Work_Type text)CREATE TABLE journalist (journalist_ID int,Name text,Nationality text,Age text,Years_working int)
SELECT Work_Type, AVG(Years_working) FROM journalist AS t1 JOIN news_report AS t2 ON t1.journalist_ID = t2.journalist_ID GROUP BY t2.Work_Type
tell me the top three most common output event last year?
CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)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 labevents (row_id number,subject_id number,hadm_id number,itemid number,char...
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 DATETIME(outputevents.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year') GROUP BY outputevents.itemid) AS...
What country has a to par larger than 5 and a player John Mahaffey?
CREATE TABLE table_12927 ("Player" text,"Country" text,"Year(s) won" text,"Total" real,"To par" real)
SELECT "Country" FROM table_12927 WHERE "To par" > '5' AND "Player" = 'john mahaffey'
What is the flange thickness (mm) for the weight (kg/m) 10.4?
CREATE TABLE table_23840 ("Type" text,"Beam height (mm)" real,"Flange width (mm)" real,"Web thickness (mm)" text,"Flange thickness (mm)" text,"Weight (kg/m)" text,"Cross-section area (cm 2)" text,"Moment of inertia in torsion (J) (cm 4)" text)
SELECT "Flange thickness (mm)" FROM table_23840 WHERE "Weight (kg/m)" = '10.4'
For those records from the products and each product's manufacturer, visualize a bar chart about the distribution of name and the average of manufacturer , and group by attribute name, rank in desc by the x axis please.
CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER)CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL)
SELECT T2.Name, T1.Manufacturer FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T2.Name ORDER BY T2.Name DESC
RLA-RegDiscontinuity: all users with 5 downvotes in a week.
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 PostFeedback (Id number,PostId number,IsAnonymous boolean,VoteT...
SELECT u.Id, u.DisplayName, u.Reputation, v.weekno, COUNT(v.Id) AS downvotes, MIN(v.CreationDate) AS fromdate, MAX(v.CreationDate) AS todate FROM Users AS u, Posts AS p, (SELECT Id, DATEDIFF(week, '2019-01-01', creationdate) AS weekno, CreationDate, PostId FROM Votes WHERE CreationDate >= '2019-01-01' AND VoteTypeId = ...
How many Apps did Player Gilberto with more than 1 Goals have?
CREATE TABLE table_name_64 (apps INTEGER,player VARCHAR,goals VARCHAR)
SELECT AVG(apps) FROM table_name_64 WHERE player = "gilberto" AND goals > 1
dplyr Questions ansswered in less than 1 day.
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 PostHistory (Id number,PostHistoryTypeId number,PostId number,R...
SELECT COUNT(*) FROM Posts AS question INNER JOIN PostTags AS pt ON pt.PostId = question.Id INNER JOIN Tags AS t ON t.Id = pt.TagId WHERE TagName IN ('visual-studio', 'visual-studio-2013', 'visual-studio-2012') AND YEAR(question.CreationDate) = 2014
did patient 031-16123 have the results of the microbiology test of the urine, voided specimen last month?
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(*) FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-16123')) AND microlab.culturesite = 'urine, voided specimen' AND DATETIME(micr...
What is the playoffs Game number on April 26?
CREATE TABLE table_name_94 (game VARCHAR,date VARCHAR)
SELECT game FROM table_name_94 WHERE date = "april 26"
For those employees whose salary is in the range of 8000 and 12000 and commission is not null or department number does not equal to 40, return a bar chart about the distribution of hire_date and the amount of hire_date bin hire_date by weekday, and I want to order in descending by the y axis.
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 loc...
SELECT HIRE_DATE, COUNT(HIRE_DATE) FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40 ORDER BY COUNT(HIRE_DATE) DESC
What is the original title of the Gypsy Magic film title used in nomination?
CREATE TABLE table_39512 ("Year (Ceremony)" text,"Film title used in nomination" text,"Original title" text,"Language (s)" text,"Result" text)
SELECT "Original title" FROM table_39512 WHERE "Film title used in nomination" = 'gypsy magic'
When has a Score of 6 3, 6 4?
CREATE TABLE table_5788 ("Date" text,"Tournament" text,"Surface" text,"Partnering" text,"Opponents in the final" text,"Score" text)
SELECT "Date" FROM table_5788 WHERE "Score" = '6–3, 6–4'
What was the retired time on someone who had 43 laps on a grip of 18?
CREATE TABLE table_78269 ("Driver" text,"Constructor" text,"Laps" real,"Time/Retired" text,"Grid" real)
SELECT "Time/Retired" FROM table_78269 WHERE "Laps" = '43' AND "Grid" = '18'
how many number of 1 acts were there ?
CREATE TABLE table_203_501 (id number,"title" text,"genre" text,"sub\u00addivisions" text,"libretto" text,"premiere date" text,"place,theatre" text)
SELECT COUNT(*) FROM table_203_501 WHERE "sub\u00addivisions" = '1 act'
When tajik is the ethnicity what is islam?
CREATE TABLE table_20936 ("Ethnicity" text,"Islam" text,"Christianity" text,"Judaism" text,"Buddhism" text,"Other" text,"Atheism" text,"n/a" text)
SELECT "Islam" FROM table_20936 WHERE "Ethnicity" = 'Tajik'
tourism income in latin american countries in 2003 was at most what percentage of gdp ?
CREATE TABLE table_203_54 (id number,"selected\nlatin american\ncountries" text,"internl.\ntourism\narrivals\n2010\n(x 1000)" number,"internl.\ntourism\nreceipts.\n2010\n(usd\n(x1000)" number,"average\nreceipt\nper visitor\n2009\n(usd/turista)" number,"tourist\narrivals\nper\n1000 inhab\n(estimated)\n2007" number,"rece...
SELECT "tourism\nincome\n%\ngdp\n2003" FROM table_203_54 ORDER BY "tourism\nincome\n%\ngdp\n2003" DESC LIMIT 1
What are the names and data types of the characteristics of the 'cumin' product?
CREATE TABLE product_characteristics (product_id number,characteristic_id number,product_characteristic_value text)CREATE TABLE ref_product_categories (product_category_code text,product_category_description text,unit_of_measure text)CREATE TABLE ref_characteristic_types (characteristic_type_code text,characteristic_ty...
SELECT t3.characteristic_name, t3.characteristic_data_type FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN characteristics AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = "cumin"
What was the playoff advancement during the year 1998?
CREATE TABLE table_1570003_2 (playoffs VARCHAR,year VARCHAR)
SELECT playoffs FROM table_1570003_2 WHERE year = 1998
What CFL team did Kelly Bates play for?
CREATE TABLE table_41680 ("Pick #" real,"CFL Team" text,"Player" text,"Position" text,"College" text)
SELECT "CFL Team" FROM table_41680 WHERE "Player" = 'kelly bates'
Give me the comparison about the sum of Team_ID over the ACC_Road , and group by attribute ACC_Road, and could you order by the bar in asc?
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_Percent int,All_Home text,All_Road text,All_Neutral text)CREATE TABLE university (School_ID int,School text,Location text,Founded real,Affiliation text,En...
SELECT ACC_Road, SUM(Team_ID) FROM basketball_match GROUP BY ACC_Road ORDER BY ACC_Road
What's the total number of gold where the total is less than 23 and the rank is over 10?
CREATE TABLE table_name_96 (gold VARCHAR,total VARCHAR,rank VARCHAR)
SELECT COUNT(gold) FROM table_name_96 WHERE total < 23 AND rank > 10
Which Year(s) of manufacture has an Axle arrangement of 2 b n2?
CREATE TABLE table_65189 ("Class" text,"Railway number(s)" text,"DRG number(s)" text,"Quantity" real,"Year(s) of manufacture" text,"Axle arrangement" text)
SELECT "Year(s) of manufacture" FROM table_65189 WHERE "Axle arrangement" = '2′b n2'
Which country has had 6 miss universe's?
CREATE TABLE table_30638 ("Rank" real,"Country" text,"Miss Universe" text,"1st Runner-up" real,"2nd Runner-up" real,"3rd Runner-up" real,"4th Runner-up" real,"Semifinalists" real,"Total" real)
SELECT "Country" FROM table_30638 WHERE "Miss Universe" = '6'
What is the elevation of Vanuatu, when the rank is smaller than 3?
CREATE TABLE table_63491 ("Rank" real,"Peak" text,"Country" text,"Island" text,"Elevation (m)" real,"Col (m)" real)
SELECT AVG("Elevation (m)") FROM table_63491 WHERE "Country" = 'vanuatu' AND "Rank" < '3'
show me the cheapest flights round trip from NEW YORK to SAN JOSE
CREATE TABLE equipment_sequence (aircraft_code_sequence varchar,aircraft_code varchar)CREATE TABLE class_of_service (booking_class varchar,rank int,class_description text)CREATE TABLE dual_carrier (main_airline varchar,low_flight_number int,high_flight_number int,dual_airline varchar,service_name text)CREATE TABLE flig...
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, fare, flight, flight_fare WHERE (CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'NEW YORK' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_...
Who is the original performer when the episode is casting?
CREATE TABLE table_31213 ("Episode" text,"Theme / Date" text,"Song title" text,"Original performer" text,"Result (Placement)" text)
SELECT "Original performer" FROM table_31213 WHERE "Episode" = 'Casting'
What is the Date of the game with a Score of L 115 118 (OT)?
CREATE TABLE table_name_75 (date VARCHAR,score VARCHAR)
SELECT date FROM table_name_75 WHERE score = "l 115–118 (ot)"
What is the name of the role that has a Title of Olvidarte Jamas?
CREATE TABLE table_71663 ("Year" text,"Title" text,"Production Company" text,"Role" text,"Notes" text)
SELECT "Role" FROM table_71663 WHERE "Title" = 'olvidarte jamas'
what is days of hospital stay of subject name stephanie suchan?
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 demographic.days_stay FROM demographic WHERE demographic.name = "Stephanie Suchan"
What is the highest win percentage when there were 23 losses?
CREATE TABLE table_41439 ("Season" text,"Conference" text,"Division" text,"Finish" text,"Wins" real,"Losses" real,"Win%" real)
SELECT MAX("Win%") FROM table_41439 WHERE "Losses" = '23'
what is maximum days of hospital stay of patients whose insurance is private?
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 MAX(demographic.days_stay) FROM demographic WHERE demographic.insurance = "Private"
What's the highest amount of Games recorded that have more than 10 assists?
CREATE TABLE table_47181 ("Player" text,"Club" text,"Games" real,"Goals" real,"Assists" real,"Points" real)
SELECT MAX("Games") FROM table_47181 WHERE "Assists" > '10'
how much is a US BOSTON to PITTSBURGH DAILY nonstop flight
CREATE TABLE fare_basis (fare_basis_code text,booking_class text,class_type text,premium text,economy text,discounted text,night text,season text,basis_days text)CREATE TABLE flight_leg (flight_id int,leg_number int,leg_flight int)CREATE TABLE equipment_sequence (aircraft_code_sequence varchar,aircraft_code varchar)CRE...
SELECT DISTINCT fare.fare_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, fare, flight, flight_fare WHERE (((CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'BOSTON' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.ci...
What shows for 1992 when 2001 is 1r, 1994 is 1r, and the 2002 is qf?
CREATE TABLE table_77384 ("Tournament" text,"1988" text,"1989" text,"1990" text,"1991" text,"1992" text,"1993" text,"1994" text,"1995" text,"1996" text,"1997" text,"1998" text,"1999" text,"2000" text,"2001" text,"2002" text,"2003" text,"2004" text)
SELECT "1992" FROM table_77384 WHERE "2001" = '1r' AND "1994" = '1r' AND "2002" = 'qf'
select * from Posts where Tags like '%git%' order by score desc.
CREATE TABLE ReviewTaskTypes (Id number,Name text,Description text)CREATE TABLE ReviewTasks (Id number,ReviewTaskTypeId number,CreationDate time,DeletionDate time,ReviewTaskStateId number,PostId number,SuggestedEditId number,CompletedByReviewTaskId number)CREATE TABLE Posts (Id number,PostTypeId number,AcceptedAnswerId...
SELECT * FROM Posts WHERE Tags LIKE '%git%' ORDER BY Score DESC
Instant success: Users with highest-scored first answer. Rank users by the score of their first answer ever posted on the site.
CREATE TABLE ReviewTaskTypes (Id number,Name text,Description text)CREATE TABLE ReviewTasks (Id number,ReviewTaskTypeId number,CreationDate time,DeletionDate time,ReviewTaskStateId number,PostId number,SuggestedEditId number,CompletedByReviewTaskId number)CREATE TABLE Posts (Id number,PostTypeId number,AcceptedAnswerId...
SELECT RANK() OVER (ORDER BY Answers.Score DESC) AS "rank", Answers.Score, Users.Id AS "user_link", Users.Reputation, Answers.Id AS "post_link", Answers.CreationDate AS "date", Question.Tags FROM Posts AS Answers INNER JOIN Posts AS Question ON Question.Id = Answers.ParentId INNER JOIN Users ON Users.Id = Answers.Owner...
since 2103, what are the three most frequent drugs prescribed within 2 months to the patients aged 60 or above after change in mental status has been diagnosed?
CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE cost (costid number,uniquepid text,pati...
SELECT t3.drugname FROM (SELECT t2.drugname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, diagnosis.diagnosistime FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'change in mental status' AND STRFTIME('%y', diagno...
What type of cartridge is used by a Weatherby?
CREATE TABLE table_20467 ("Cartridge" text,"Bullet weight" text,"Muzzle velocity" text,"Muzzle energy" text,"Source" text)
SELECT "Cartridge" FROM table_20467 WHERE "Source" = 'Weatherby'
What date has 1 for the game?
CREATE TABLE table_5634 ("Game" real,"Date" text,"Opponent" text,"Score" text,"Series" text)
SELECT "Date" FROM table_5634 WHERE "Game" = '1'
What was the date of game 21?
CREATE TABLE table_47914 ("Game" real,"Date" text,"Opponent" text,"Score/Time" text,"High points" text,"High rebounds" text,"High assists" text,"Arena/Attendance" text,"Record" text)
SELECT "Date" FROM table_47914 WHERE "Game" = '21'
how many patients had a insert endotracheal tube during the same month after the first percu abdominal drainage since 1 year ago?
CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id n...
SELECT COUNT(DISTINCT t1.subject_id) FROM (SELECT admissions.subject_id, procedures_icd.charttime FROM procedures_icd JOIN admissions ON procedures_icd.hadm_id = admissions.hadm_id WHERE procedures_icd.icd9_code = (SELECT d_icd_procedures.icd9_code FROM d_icd_procedures WHERE d_icd_procedures.short_title = 'percu abdom...
show me which flights from SAN FRANCISCO to PITTSBURGH on a MONDAY are FIRST class
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 month (month_number int,month_name text)CREATE TABLE flight (aircraft_...
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, days AS DAYS_0, days AS DAYS_1, fare, fare_basis AS FARE_BASIS_0, fare_basis AS FARE_BASIS_1, flight, flight_fare WHERE ((DAYS_0.day_name = 'MONDAY' AND DAYS_1.day_name = 'MO...
what was the extra score when the overall score was 52
CREATE TABLE table_14070062_4 (losing_bonus VARCHAR,tries_for VARCHAR)
SELECT losing_bonus FROM table_14070062_4 WHERE tries_for = "52"
How many semi-final weeks are there for acts from Pittsburgh, Pennsylvania?
CREATE TABLE table_27529608_21 (semi_final__week_ VARCHAR,hometown VARCHAR)
SELECT COUNT(semi_final__week_) FROM table_27529608_21 WHERE hometown = "Pittsburgh, Pennsylvania"
What class is after 1973 with 41 points?
CREATE TABLE table_54610 ("Year" real,"Class" text,"Team" text,"Points" real,"Wins" real)
SELECT "Class" FROM table_54610 WHERE "Year" > '1973' AND "Points" = '41'
what party has the highest number of mps ?
CREATE TABLE table_203_139 (id number,"name" text,"abbr." text,"leader" text,"ideology" text,"political position" text,"mps" text)
SELECT "name" FROM table_203_139 ORDER BY "mps" DESC LIMIT 1
Result of win, and a Score of 33-22 involved what event?
CREATE TABLE table_38327 ("Event" text,"Round" text,"Result" text,"Opponent" text,"Score" text)
SELECT "Event" FROM table_38327 WHERE "Result" = 'win' AND "Score" = '33-22'
Total Number of Users with Small Rep.
CREATE TABLE ReviewTaskTypes (Id number,Name text,Description text)CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE SuggestedEdits (Id number,PostId number,CreationDate time,ApprovalDate time,RejectionDate time,OwnerUserId number,Comment text,Text text,Title te...
SELECT COUNT(*) AS N, Reputation FROM Users WHERE Reputation < 2100 GROUP BY Reputation ORDER BY Reputation
Which dam type was completed in 1961?
CREATE TABLE table_name_90 (dam_type VARCHAR,year_completed VARCHAR)
SELECT dam_type FROM table_name_90 WHERE year_completed = 1961
Which Game has an Opponent of @ washington wizards?
CREATE TABLE table_12894 ("Game" real,"Date" text,"Opponent" text,"Score" text,"Location/Attendance" text,"Record" text,"Streak" text)
SELECT "Game" FROM table_12894 WHERE "Opponent" = '@ washington wizards'
What is the region of the Catalog that is in cd format and has a label a&m/canyon?
CREATE TABLE table_name_49 (region VARCHAR,format VARCHAR,label VARCHAR)
SELECT region FROM table_name_49 WHERE format = "cd" AND label = "a&m/canyon"
what are the three most commonly prescribed microbiology tests for patients who had previously received insulin - sliding scale administration in the same hospital visit until 2 years ago?
CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid n...
SELECT t3.culturesite FROM (SELECT t2.culturesite, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, treatment.treatmenttime, patient.patienthealthsystemstayid FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'insulin -...
What position does Brian Butch play?
CREATE TABLE table_42993 ("Pos." text,"Player" text,"Team" text,"Height" text,"Weight" real)
SELECT "Pos." FROM table_42993 WHERE "Player" = 'brian butch'
show me the flights before 1100 on 8 2 from BOSTON to DENVER on DL
CREATE TABLE days (days_code varchar,day_name varchar)CREATE TABLE fare_basis (fare_basis_code text,booking_class text,class_type text,premium text,economy text,discounted text,night text,season text,basis_days text)CREATE TABLE equipment_sequence (aircraft_code_sequence varchar,aircraft_code varchar)CREATE TABLE aircr...
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 (((date_day.day_number = 2 AND date_day.month_number = 8 AND date_day.year = 1991 AND days.day_name = date_day.day_name AND flight.departure_time...
Who had the high assist total on january 2?
CREATE TABLE table_17340355_7 (high_assists VARCHAR,date VARCHAR)
SELECT high_assists FROM table_17340355_7 WHERE date = "January 2"
What was the score for the game in which the Edmonton Oilers were visitors?
CREATE TABLE table_name_4 (score VARCHAR,visitor VARCHAR)
SELECT score FROM table_name_4 WHERE visitor = "edmonton oilers"
What is the away team of the game with an attendance of 117?
CREATE TABLE table_59690 ("Tie no" real,"Home team" text,"Score" text,"Away team" text,"Attendance" real)
SELECT "Away team" FROM table_59690 WHERE "Attendance" = '117'
Which Opponent has a Streak of lost 1, and a Date of april 30?
CREATE TABLE table_34123 ("Game" real,"Date" text,"Opponent" text,"Result" text,"Bulls score" real,"Opponent score" real,"Record" text,"Streak" text)
SELECT "Opponent" FROM table_34123 WHERE "Streak" = 'lost 1' AND "Date" = 'april 30'
What is the attendance number in the final round?
CREATE TABLE table_76877 ("Date" text,"Round" text,"Opponents" text,"H / A" text,"Result F \u2013 A" text,"Scorers" text,"Attendance" real)
SELECT SUM("Attendance") FROM table_76877 WHERE "Round" = 'final'
Name the date for chris evert opponent and carpet surface
CREATE TABLE table_name_98 (date VARCHAR,opponent VARCHAR,surface VARCHAR)
SELECT date FROM table_name_98 WHERE opponent = "chris evert" AND surface = "carpet"
When was the appointment date for VFL Wolfsburg?
CREATE TABLE table_78312 ("Team" text,"Outgoing manager" text,"Date of departure" text,"Replaced by" text,"Date of Appointment" text)
SELECT "Date of Appointment" FROM table_78312 WHERE "Team" = 'vfl wolfsburg'
What is the production number that has no reissue with a series of lt, a director of robert mckimson and the title of the up-standing sitter?
CREATE TABLE table_14118 ("Title" text,"Series" text,"Director" text,"Production Number" text,"Release date" text,"reissue?" text)
SELECT "Production Number" FROM table_14118 WHERE "reissue?" = 'no' AND "Series" = 'lt' AND "Director" = 'robert mckimson' AND "Title" = 'the up-standing sitter'
Name the average established for championships less than 1 and club of erie seawolves
CREATE TABLE table_68412 ("Club" text,"League" text,"Sport" text,"Venue" text,"Established" real,"Championships" real)
SELECT AVG("Established") FROM table_68412 WHERE "Championships" < '1' AND "Club" = 'erie seawolves'
How many games tied for the air force with over 57 years participating?
CREATE TABLE table_51256 ("Mountain West" text,"Lost" real,"Tied" real,"Pct." real,"Years" real,"Total Games" real)
SELECT COUNT("Tied") FROM table_51256 WHERE "Mountain West" = 'air force' AND "Years" > '57'
How many Weeks have a Result of w 17 13?
CREATE TABLE table_name_82 (week INTEGER,result VARCHAR)
SELECT AVG(week) FROM table_name_82 WHERE result = "w 17–13"
What was the score of Collingwood?
CREATE TABLE table_name_69 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_69 WHERE home_team = "collingwood"
Next Winter , what are the Other classes being offered ?
CREATE TABLE student_record (student_id int,course_id int,semester int,grade varchar,how varchar,transfer_source varchar,earn_credit varchar,repeat_term varchar,test_id varchar)CREATE TABLE course_tags_count (course_id int,clear_grading int,pop_quiz int,group_projects int,inspirational int,long_lectures int,extra_credi...
SELECT DISTINCT course.department, course.name, course.number FROM course INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN semester ON semester.semester_id = course_offering.semester INNER JOIN program_course ON program_course.course_id = course_offering.course_id WHERE program_cour...
what change was in patient 009-5001's sao2 second measured on the current icu visit compared to the first value measured on the current icu 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 patient (uniquepid text,patienthealthsystemstayid number,patientunit...
SELECT (SELECT vitalperiodic.sao2 FROM vitalperiodic WHERE vitalperiodic.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '009-5001') AND patient.unitdischargetime IS NULL) AND ...
tell me the top three most common diagnoses in patients in the age of 50s until 3 years ago?
CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid n...
SELECT t1.diagnosisname FROM (SELECT diagnosis.diagnosisname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM diagnosis WHERE diagnosis.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.age BETWEEN 50 AND 59) AND DATETIME(diagnosis.diagnosistime) <= DATETIME(CURRENT_TIME(), '-3 yea...
How many of the schools listed are in Ames, IA?
CREATE TABLE table_15917 ("School" text,"Location" text,"Founded" real,"Affiliation" text,"Enrollment" real,"Team Nickname" text,"Primary conference" text)
SELECT COUNT("Primary conference") FROM table_15917 WHERE "Location" = 'Ames, IA'
What is the country that placed 4?
CREATE TABLE table_15243 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text)
SELECT "Country" FROM table_15243 WHERE "Place" = '4'
How many different types of rooms are there?
CREATE TABLE prescribes (physician number,patient number,medication number,date time,appointment number,dose text)CREATE TABLE department (departmentid number,name text,head number)CREATE TABLE medication (code number,name text,brand text,description text)CREATE TABLE undergoes (patient number,procedures number,stay nu...
SELECT COUNT(DISTINCT roomtype) FROM room
how many awards has victoria rowell won ?
CREATE TABLE table_204_504 (id number,"year" number,"award" text,"category" text,"work" text,"result" text)
SELECT COUNT("award") FROM table_204_504 WHERE "result" = 'won'
what airline stands for HP
CREATE TABLE state (state_code text,state_name text,country_name text)CREATE TABLE restriction (restriction_code text,advance_purchase int,stopovers text,saturday_stay_required text,minimum_stay int,maximum_stay int,application text,no_discounts text)CREATE TABLE airport_service (city_code varchar,airport_code varchar,...
SELECT DISTINCT airline_code FROM airline WHERE airline_code = 'HP'
How many episode titles have series number 4?
CREATE TABLE table_30814 ("Series #" real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Production code" real)
SELECT COUNT("Title") FROM table_30814 WHERE "Series #" = '4'
what was the first insertion of venous catheter for hemodialysis procedure time of patient 006-105495 in the current hospital visit?
CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid nu...
SELECT treatment.treatmenttime FROM treatment WHERE treatment.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '006-105495' AND patient.hospitaldischargetime IS NULL)) AND treat...
Name the entrant for bruno sterzi
CREATE TABLE table_30620 ("No" real,"Driver" text,"Entrant" text,"Constructor" text,"Chassis" text,"Engine" text)
SELECT "Entrant" FROM table_30620 WHERE "Driver" = 'Bruno Sterzi'
Visualize a bar chart about the distribution of Date_of_Birth and Height , order y-axis in desc order please.
CREATE TABLE candidate (Candidate_ID int,People_ID int,Poll_Source text,Date text,Support_rate real,Consider_rate real,Oppose_rate real,Unsure_rate real)CREATE TABLE people (People_ID int,Sex text,Name text,Date_of_Birth text,Height real,Weight real)
SELECT Date_of_Birth, Height FROM people ORDER BY Height DESC
What is the low lap total for a grid of 14?
CREATE TABLE table_name_12 (laps INTEGER,grid VARCHAR)
SELECT MIN(laps) FROM table_name_12 WHERE grid = 14
how many patients whose gender is f and year of birth is less than 2080?
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 WHERE demographic.gender = "F" AND demographic.dob_year < "2080"
What is the Attendance with a Date that is november 25, 1965?
CREATE TABLE table_name_96 (attendance VARCHAR,date VARCHAR)
SELECT attendance FROM table_name_96 WHERE date = "november 25, 1965"
Name the tournament when margin of victory is 3 strokes and winning score is 71-66-70-67=274
CREATE TABLE table_1569625_1 (tournament VARCHAR,margin_of_victory VARCHAR,winning_score VARCHAR)
SELECT tournament FROM table_1569625_1 WHERE margin_of_victory = "3 strokes" AND winning_score = 71 - 66 - 70 - 67 = 274
What is the Type with a Year larger than 2010, and a Location with justus lipsius building, brussels, and a President of herman van rompuy (2nd term), and a Date with 28 29 june?
CREATE TABLE table_name_96 (type VARCHAR,date VARCHAR,president VARCHAR,year VARCHAR,location VARCHAR)
SELECT type FROM table_name_96 WHERE year > 2010 AND location = "justus lipsius building, brussels" AND president = "herman van rompuy (2nd term)" AND date = "28–29 june"
What is the inegi code for mexicali with 13,700 km area?
CREATE TABLE table_68422 ("INEGI code" real,"Municipality" text,"Municipal seat" text,"Population (2010)" real,"Area (Km2)" real)
SELECT AVG("INEGI code") FROM table_68422 WHERE "Municipal seat" = 'mexicali' AND "Area (Km2)" > '13,700'
What is the date when the away team is essendon?
CREATE TABLE table_name_93 (date VARCHAR,away_team VARCHAR)
SELECT date FROM table_name_93 WHERE away_team = "essendon"
what are the five most commonly prescribed drugs that were prescribed to the patients 40s in the same hospital encounter after having been diagnosed with sepsis - sepsis with multi-organ dysfunction until 1 year ago?
CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE microlab (microlabid number,patientunitstayid ...
SELECT t3.drugname FROM (SELECT t2.drugname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, diagnosis.diagnosistime, patient.patienthealthsystemstayid FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'sepsis - sepsis...
what is drug name and drug code of subject name frank gregory?
CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,sho...
SELECT prescriptions.drug, prescriptions.formulary_drug_cd FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.name = "Frank Gregory"
What were the result(s) of the election featuring grace napolitano as the incumbent?
CREATE TABLE table_1805191_6 (results VARCHAR,incumbent VARCHAR)
SELECT results FROM table_1805191_6 WHERE incumbent = "Grace Napolitano"
who was elected earlier , amedee or cortez ?
CREATE TABLE table_204_293 (id number,"district" number,"name" text,"party" text,"district office" text,"first elected" number)
SELECT "name" FROM table_204_293 WHERE "name" IN ('jody amedee', 'page cortez') ORDER BY "first elected" LIMIT 1