instruction
stringlengths
0
1.06k
input
stringlengths
11
5.3k
response
stringlengths
2
4.44k
I want to see trend of the number of date in locaton to by date in locaton to, sort by the x axis in desc.
CREATE TABLE Employees (Employee_ID INTEGER,Role_Code CHAR(15),Employee_Name VARCHAR(255),Gender_MFU CHAR(1),Date_of_Birth DATETIME,Other_Details VARCHAR(255))CREATE TABLE Documents_to_be_Destroyed (Document_ID INTEGER,Destruction_Authorised_by_Employee_ID INTEGER,Destroyed_by_Employee_ID INTEGER,Planned_Destruction_Da...
SELECT Date_in_Locaton_To, COUNT(Date_in_Locaton_To) FROM Document_Locations ORDER BY Date_in_Locaton_To DESC
What is the game number on December 21?
CREATE TABLE table_name_53 (game VARCHAR,date VARCHAR)
SELECT COUNT(game) FROM table_name_53 WHERE date = "december 21"
What is the average number of events having 1 top-10, fewer than 4 cuts made, and 0 wins?
CREATE TABLE table_name_98 (events INTEGER,cuts_made VARCHAR,top_10 VARCHAR,wins VARCHAR)
SELECT AVG(events) FROM table_name_98 WHERE top_10 = 1 AND wins > 0 AND cuts_made < 4
What home team did South Melbourne play as the away team?
CREATE TABLE table_name_19 (home_team VARCHAR,away_team VARCHAR)
SELECT home_team FROM table_name_19 WHERE away_team = "south melbourne"
How many colleges has more than 15000 students?
CREATE TABLE College (enr INTEGER)
SELECT COUNT(*) FROM College WHERE enr > 15000
What is the Front Side Bus for Model Number c7 1.5?
CREATE TABLE table_76819 ("Model Number" text,"Frequency" text,"L2-Cache" text,"Front Side Bus" text,"Multiplier" text,"Voltage" text,"Socket" text,"Release Date" text)
SELECT "Front Side Bus" FROM table_76819 WHERE "Model Number" = 'c7 1.5'
what is the length of patient 55843's stay at the first intensive care unit stay?
CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE chartevents (row_id number,subject_id number,hadm_id number,icustay_id number,itemid number,charttime time,va...
SELECT STRFTIME('%j', icustays.outtime) - STRFTIME('%j', icustays.intime) FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 55843) AND NOT icustays.outtime IS NULL ORDER BY icustays.intime LIMIT 1
What is the average points with a year higher than 1989, and a rank of 7th?
CREATE TABLE table_name_60 (points INTEGER,year VARCHAR,rank VARCHAR)
SELECT AVG(points) FROM table_name_60 WHERE year > 1989 AND rank = "7th"
What is the mean game number when the points scored were more than 99?
CREATE TABLE table_name_73 (game INTEGER,points INTEGER)
SELECT AVG(game) FROM table_name_73 WHERE points > 99
For those products with a price between 60 and 120, return a bar chart about the distribution of name and price .
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 Name, Price FROM Products WHERE Price BETWEEN 60 AND 120
count the number of patients less than 70 years who prefer haitian language.
CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.language = "HAIT" AND demographic.age < "70"
What is the highest rank for the team that raced a time of 6:50.40?
CREATE TABLE table_name_10 (rank INTEGER,time VARCHAR)
SELECT MAX(rank) FROM table_name_10 WHERE time = "6:50.40"
What is the longest Time (seconds), when the Nation - athlete(s) is Sylke Otto - Germany?
CREATE TABLE table_name_99 (time__seconds_ INTEGER,nation___athlete_s_ VARCHAR)
SELECT MAX(time__seconds_) FROM table_name_99 WHERE nation___athlete_s_ = "sylke otto - germany"
What is the highest W of the 0 L?
CREATE TABLE table_29542147_2 (w INTEGER,l VARCHAR)
SELECT MAX(w) FROM table_29542147_2 WHERE l = 0
What is title of episode 06-02-407?
CREATE TABLE table_1876825_5 (title VARCHAR,production_code VARCHAR)
SELECT title FROM table_1876825_5 WHERE production_code = "06-02-407"
What is the format in the region of Europe with an XLCD369 and a label of XL?
CREATE TABLE table_46825 ("Region" text,"Date" text,"Label" text,"Format" text,"Catalog" text)
SELECT "Format" FROM table_46825 WHERE "Label" = 'xl' AND "Catalog" = 'xlcd369' AND "Region" = 'europe'
What game number was played on april 8?
CREATE TABLE table_27704187_11 (game INTEGER,date VARCHAR)
SELECT MIN(game) FROM table_27704187_11 WHERE date = "April 8"
How many networks run on virtual channel 23.4?
CREATE TABLE table_2857352_3 (network VARCHAR,virtual_channel VARCHAR)
SELECT COUNT(network) FROM table_2857352_3 WHERE virtual_channel = "23.4"
Tell me the date for detroit and game more than 3
CREATE TABLE table_name_53 (date VARCHAR,team VARCHAR,game VARCHAR)
SELECT date FROM table_name_53 WHERE team = "detroit" AND game > 3
What is the timeslot for the episode 'In which Addison finds the magic'?
CREATE TABLE table_27187 ("#" real,"Episode" text,"Air Date" text,"Timeslot (EST)" text,"Rating" text,"Share" real,"18-49 (Rating/Share)" text,"Viewers (m)" text,"Weekly Rank (#)" real)
SELECT "Timeslot (EST)" FROM table_27187 WHERE "Episode" = 'In Which Addison Finds the Magic'
What is the Catalog with a Date that is march 13, 2002?
CREATE TABLE table_42270 ("Region" text,"Date" text,"Label" text,"Format" text,"Catalog" text)
SELECT "Catalog" FROM table_42270 WHERE "Date" = 'march 13, 2002'
What is the Team, when the Year is 2011?
CREATE TABLE table_name_14 (team VARCHAR,year VARCHAR)
SELECT team FROM table_name_14 WHERE year = "2011"
when is the last time patient 010-9767 visited the hospital in 2105?
CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweigh...
SELECT patient.hospitaladmittime FROM patient WHERE patient.uniquepid = '010-9767' AND STRFTIME('%y', patient.hospitaladmittime) = '2105' ORDER BY patient.hospitaladmittime DESC LIMIT 1
which country comes in first place ?
CREATE TABLE table_203_496 (id number,"pos" number,"country" text,"gold" number,"silver" number,"bronze" number,"total" number)
SELECT "country" FROM table_203_496 WHERE "pos" = 1
How many current clubs have the player Aigars Vitols?
CREATE TABLE table_23670057_7 (current_club VARCHAR,player VARCHAR)
SELECT COUNT(current_club) FROM table_23670057_7 WHERE player = "Aigars Vitols"
What is Score, when Country is 'United States', and when To Par is '+4'?
CREATE TABLE table_name_56 (score VARCHAR,country VARCHAR,to_par VARCHAR)
SELECT score FROM table_name_56 WHERE country = "united states" AND to_par = "+4"
How many laps have a Time/Retired of + 4 laps, and a Driver of graham hill?
CREATE TABLE table_name_3 (laps VARCHAR,time_retired VARCHAR,driver VARCHAR)
SELECT laps FROM table_name_3 WHERE time_retired = "+ 4 laps" AND driver = "graham hill"
What team lost with 30 tries against?
CREATE TABLE table_59233 ("Club" text,"Played" text,"Drawn" text,"Lost" text,"Points for" text,"Points against" text,"Tries for" text,"Tries against" text,"Try bonus" text)
SELECT "Lost" FROM table_59233 WHERE "Tries against" = '30'
In what class does the verb with part 4 gelopen belong to?
CREATE TABLE table_21702 ("Class" text,"Part 1" text,"Part 2" text,"Part 3" text,"Part 4" text,"Verb meaning" text)
SELECT "Class" FROM table_21702 WHERE "Part 4" = 'gelopen'
how many patients were diagnosised as cardiac arrest by long title and had delta lab test results?
CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag text,admission_location text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.long_title = "Cardiac arrest" AND lab.flag = "delta"
What engine class is associated with a year after 1985 and over 0 wins?
CREATE TABLE table_37072 ("Year" real,"Class" text,"Team" text,"Points" real,"Wins" real)
SELECT "Class" FROM table_37072 WHERE "Year" > '1985' AND "Wins" > '0'
View and Answer count for Habib.
CREATE TABLE Badges (Id number,UserId number,Name text,Date time,Class number,TagBased boolean)CREATE TABLE CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance text,MarkdownPostOwnerGuidance text,MarkdownPrivilegedUserGuidance text,MarkdownConcensusDescription text,CreationDa...
SELECT DISTINCT (p1.Id) AS "Answer Id", p2.ViewCount FROM Posts AS p1 JOIN Posts AS p2 ON p1.ParentId = p2.Id WHERE p1.OwnerUserId = 961113 AND (p1.LastEditDate >= '2016-04-01' OR p1.CreationDate > '2016-04-01')
how many urban areas have a density below 2,500 ?
CREATE TABLE table_203_74 (id number,"rank" number,"urban area" text,"population\n(2001 census)" number,"area (km2)" number,"density (people/km2)" number,"major subdivisions" text,"metropolitan area" text)
SELECT COUNT("urban area") FROM table_203_74 WHERE "density (people/km2)" < 2500
Who is the director with the Min Dally Nseek title, and won?
CREATE TABLE table_name_57 (director VARCHAR,title VARCHAR,result VARCHAR)
SELECT director FROM table_name_57 WHERE title = "min dally nseek" AND result = "won"
What are the names of countains that no climber has climbed?
CREATE TABLE mountain (mountain_id number,name text,height number,prominence number,range text,country text)CREATE TABLE climber (climber_id number,name text,country text,time text,points number,mountain_id number)
SELECT name FROM mountain WHERE NOT mountain_id IN (SELECT mountain_id FROM climber)
Which Tongan has a North Marquesan of /ha e/?
CREATE TABLE table_49472 ("Tongan" text,"Niuean" text,"S\u0101moan" text,"Takuu" text,"Tahitian" text,"Rarotongan" text,"M\u0101ori" text,"North Marquesan" text,"South Marquesan" text,"Hawai'ian" text,"Mangarevan" text)
SELECT "Tongan" FROM table_49472 WHERE "North Marquesan" = '/haʔe/'
Who is the winner with an elapsed time of 12 h 42 min?
CREATE TABLE table_2536 ("Dateca" text,"Event #" text,"Event" text,"Winner" text,"Prize" text,"Entries" text,"Prize Pool" text,"Elapsed Time" text)
SELECT "Winner" FROM table_2536 WHERE "Elapsed Time" = '12 h 42 min'
What is the highest Psychological Dependence, when Pleasure is less than 2.3, when Drug is 'Cannabis', and when Physical Dependence is less than 0.8?
CREATE TABLE table_58851 ("Drug" text,"Mean" real,"Pleasure" real,"Psychological dependence" real,"Physical dependence" real)
SELECT MAX("Psychological dependence") FROM table_58851 WHERE "Pleasure" < '2.3' AND "Drug" = 'cannabis' AND "Physical dependence" < '0.8'
Who made the car that won the race on May 21?
CREATE TABLE table_2241841_1 (manufacturer VARCHAR,date VARCHAR)
SELECT manufacturer FROM table_2241841_1 WHERE date = "May 21"
what were the top four most frequent procedures that patients took within 2 months after receiving prone position in 2105?
CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight nu...
SELECT t3.treatmentname FROM (SELECT t2.treatmentname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, treatment.treatmenttime FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'prone position' AND STRFTIME('%y', treat...
What is the sum of Year, when Rank is less than 19?
CREATE TABLE table_name_4 (year INTEGER,rank INTEGER)
SELECT SUM(year) FROM table_name_4 WHERE rank < 19
Which episode in the series drew 3.6 million U.S. viewers?
CREATE TABLE table_11111116_6 (no_in_series INTEGER,us_viewers__million_ VARCHAR)
SELECT MIN(no_in_series) FROM table_11111116_6 WHERE us_viewers__million_ = "3.6"
whats the cost to get a iatrogenc hypotnsion nec diagnosis.
CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_...
SELECT DISTINCT cost.cost FROM cost WHERE cost.event_type = 'diagnoses_icd' AND cost.event_id IN (SELECT diagnoses_icd.row_id FROM diagnoses_icd WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'iatrogenc hypotnsion nec'))
What is the record for the game with an attendance of 35,305?
CREATE TABLE table_55430 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" text,"Record" text)
SELECT "Record" FROM table_55430 WHERE "Attendance" = '35,305'
On what date was Stauffer Chemical Company (Lemoyne Plant), which was listed on 09/21/1984, deleted?
CREATE TABLE table_55865 ("CERCLIS ID" text,"Name" text,"County" text,"Proposed" text,"Listed" text,"Construction completed" text,"Partially deleted" text,"Deleted" text)
SELECT "Deleted" FROM table_55865 WHERE "Listed" = '09/21/1984' AND "Name" = 'stauffer chemical company (lemoyne plant)'
For Jo Siffert, what was the highest grid with the number of laps above 12?
CREATE TABLE table_55752 ("Driver" text,"Constructor" text,"Laps" real,"Time/Retired" text,"Grid" real)
SELECT MAX("Grid") FROM table_55752 WHERE "Driver" = 'jo siffert' AND "Laps" > '12'
flight from DENVER to SALT LAKE CITY
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 aircraft (aircraft_code varchar,aircraft_description varchar,manufacturer varchar,basic_type varchar,engines int,propulsion va...
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, flight WHERE CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'DENVER' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'SALT LA...
how many races occurred before alain prost won a pole position ?
CREATE TABLE table_204_455 (id number,"rd." number,"grand prix" text,"date" text,"location" text,"pole position" text,"fastest lap" text,"winning driver" text,"constructor" text,"report" text)
SELECT COUNT(*) FROM table_204_455 WHERE "rd." < (SELECT "rd." FROM table_204_455 WHERE "pole position" = 'alain prost' ORDER BY "rd." LIMIT 1)
Name the least rank
CREATE TABLE table_2527063_3 (rank INTEGER)
SELECT MIN(rank) FROM table_2527063_3
How many region 4 dates are associated with a region 2 date of July 9, 2007?
CREATE TABLE table_26561 ("DVD Name" text,"Ep #" text,"Region 1 (US)" text,"Region 1 (CAN)" text,"Region 2 (UK)" text,"Region 2 (Germany)" text,"Region 4 (Australia)" text)
SELECT COUNT("Region 4 (Australia)") FROM table_26561 WHERE "Region 2 (UK)" = 'July 9, 2007'
What is the total number of games of the team against the Los Angeles Kings after January 5?
CREATE TABLE table_name_69 (game VARCHAR,opponent VARCHAR,january VARCHAR)
SELECT COUNT(game) FROM table_name_69 WHERE opponent = "los angeles kings" AND january > 5
What's the diameter of kaiwan fluctus?
CREATE TABLE table_name_30 (diameter__km_ VARCHAR,name VARCHAR)
SELECT diameter__km_ FROM table_name_30 WHERE name = "kaiwan fluctus"
which country came in first with 7 gold medals ?
CREATE TABLE table_204_775 (id number,"rank" number,"nation" text,"gold" number,"silver" number,"bronze" number,"total" number)
SELECT "nation" FROM table_204_775 WHERE "gold" = 7
Of the classes , which are available this Summer ?
CREATE TABLE ta (campus_job_id int,student_id int,location varchar)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 student (student_id int,lastname va...
SELECT DISTINCT course.department, course.name, course.number FROM course, course_offering, semester WHERE course.course_id = course_offering.course_id AND course.department = 'EECS' AND semester.semester = 'Summer' AND semester.semester_id = course_offering.semester AND semester.year = 2016
what does the cost of efavirenz be?
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 admissions (row_id number,subject_id number,hadm_id number,admittime time,dischtime time,admission_type text,admission_location text,discharg...
SELECT DISTINCT cost.cost FROM cost WHERE cost.event_type = 'prescriptions' AND cost.event_id IN (SELECT prescriptions.row_id FROM prescriptions WHERE prescriptions.drug = 'efavirenz')
what is the name of the last pillow pal on this chart ?
CREATE TABLE table_204_111 (id number,"name" text,"animal type" text,"introduced" number,"reintroduced" text,"retired" number,"beanie baby resembled" text)
SELECT "name" FROM table_204_111 ORDER BY id DESC LIMIT 1
What are the notes in 1981?
CREATE TABLE table_78527 ("Superlative" text,"Actor" text,"Record Set" text,"Year" text,"Notes" text)
SELECT "Notes" FROM table_78527 WHERE "Year" = '1981'
What is every entry in the QLD Cup Premierships when home ground is Dairy Farmers Stadium?
CREATE TABLE table_26354 ("Team" text,"Location" text,"Home Ground" text,"First year in Qld Cup" real,"Last year in Qld Cup" real,"Qld Cup Premierships" text)
SELECT "Qld Cup Premierships" FROM table_26354 WHERE "Home Ground" = 'Dairy Farmers Stadium'
What is the oklahoma has Bush from Nebraska in year 2004?
CREATE TABLE table_name_41 (oklahoma VARCHAR,nebraska VARCHAR,year VARCHAR)
SELECT oklahoma FROM table_name_41 WHERE nebraska = "bush" AND year = "2004"
Draw a bar chart for what are the id and name of the mountains that have at least 2 photos?
CREATE TABLE photos (id int,camera_lens_id int,mountain_id int,color text,name text)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)
SELECT T1.name, T1.id FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id
which NHL team has a College/Junior/Club Team (League) of shattuck-saint mary's school (midget major aaa)?
CREATE TABLE table_35294 ("Round" real,"Player" text,"Nationality" text,"NHL team" text,"College/Junior/Club Team (League)" text)
SELECT "NHL team" FROM table_35294 WHERE "College/Junior/Club Team (League)" = 'shattuck-saint mary''s school (midget major aaa)'
Which Score has a Country of england, and a Year larger than 1971?
CREATE TABLE table_39972 ("Year" real,"Venue" text,"Winner" text,"Country" text,"Score" text)
SELECT "Score" FROM table_39972 WHERE "Country" = 'england' AND "Year" > '1971'
What is the Tie number for the match that had away team of Scunthorpe & Lindsey United?
CREATE TABLE table_45782 ("Tie no" text,"Home team" text,"Score" text,"Away team" text,"Date" text)
SELECT "Tie no" FROM table_45782 WHERE "Away team" = 'scunthorpe & lindsey united'
What was the record at the game on November 13, 1932?
CREATE TABLE table_36172 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Game site" text,"Record" text)
SELECT "Record" FROM table_36172 WHERE "Date" = 'november 13, 1932'
If the Vinto Municipality is 18630, what is the Quillacollo Municipality?
CREATE TABLE table_2509113_2 (quillacollo_municipality INTEGER,vinto_municipality VARCHAR)
SELECT MAX(quillacollo_municipality) FROM table_2509113_2 WHERE vinto_municipality = 18630
How many injured players not suffering from injury of 'Knee problem' in each match? Show me a bar chart grouping by number of matches, and sort y-axis in desc order please.
CREATE TABLE injury_accident (game_id int,id int,Player text,Injury text,Number_of_matches text,Source text)CREATE TABLE stadium (id int,name text,Home_Games int,Average_Attendance real,Total_Attendance real,Capacity_Percentage real)CREATE TABLE game (stadium_id int,id int,Season int,Date text,Home_team text,Away_team ...
SELECT Number_of_matches, COUNT(Number_of_matches) FROM injury_accident WHERE Injury <> 'Knee problem' GROUP BY Number_of_matches ORDER BY COUNT(Number_of_matches) DESC
Which Sydney has Auckland cancelled and Perth yes?
CREATE TABLE table_name_73 (sydney VARCHAR,auckland VARCHAR,perth VARCHAR)
SELECT sydney FROM table_name_73 WHERE auckland = "cancelled" AND perth = "yes"
What is south melbourne's home side score?
CREATE TABLE table_name_53 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_53 WHERE home_team = "south melbourne"
Which Mountain Range has a Region of haiti, and a Location of 18.3601 n 71.9764 w?
CREATE TABLE table_name_82 (mountain_range VARCHAR,region VARCHAR,location VARCHAR)
SELECT mountain_range FROM table_name_82 WHERE region = "haiti" AND location = "18.3601°n 71.9764°w"
What was the attendance of the Florida vs. Montreal game?
CREATE TABLE table_name_46 (attendance INTEGER,home VARCHAR,visitor VARCHAR)
SELECT AVG(attendance) FROM table_name_46 WHERE home = "florida" AND visitor = "montreal"
What is First elected that has republican Party and a Result of retired democratic gain?
CREATE TABLE table_37899 ("District" text,"Incumbent" text,"Party" text,"First elected" text,"Result" text)
SELECT "First elected" FROM table_37899 WHERE "Party" = 'republican' AND "Result" = 'retired democratic gain'
What in Xenia's Diameter in km, with a latitude of 14 and a longitude of 249.4?
CREATE TABLE table_name_71 (diameter__km_ VARCHAR,longitude VARCHAR,latitude VARCHAR,name VARCHAR)
SELECT COUNT(diameter__km_) FROM table_name_71 WHERE latitude < 14 AND name = "xenia" AND longitude > 249.4
What is Opinion Research Centre (OPC), when Party is Conservative?
CREATE TABLE table_41370 ("Party" text,"Marplan" text,"Gallup" text,"National Opinion Polls (NOP)" text,"Opinion Research Centre (OPC)" text,"Harris" text)
SELECT "Opinion Research Centre (OPC)" FROM table_41370 WHERE "Party" = 'conservative'
How many legs were lost for Trina Gulliver with more than 3 played?
CREATE TABLE table_name_11 (legs_lost VARCHAR,player VARCHAR,played VARCHAR)
SELECT COUNT(legs_lost) FROM table_name_11 WHERE player = "trina gulliver" AND played > 3
What is the production code of the episode directed by Stacie Lipp?
CREATE TABLE table_2226817_9 (production_code VARCHAR,written_by VARCHAR)
SELECT production_code FROM table_2226817_9 WHERE written_by = "Stacie Lipp"
Next Winter , what special topics classes are there ?
CREATE TABLE course_offering (offering_id int,course_id int,semester int,section_number int,start_time time,end_time time,monday varchar,tuesday varchar,wednesday varchar,thursday varchar,friday varchar,saturday varchar,sunday varchar,has_final_project varchar,has_final_exam varchar,textbook varchar,class_address varch...
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 WHERE (course.number = 398 OR course.number = 498 OR course.number = 598) AND course.department = 'E...
give me the number of patients whose ethnicity is hispanic/latino - puerto rican and year of birth is less than 2200?
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 WHERE demographic.ethnicity = "HISPANIC/LATINO - PUERTO RICAN" AND demographic.dob_year < "2200"
What is the market income per capita of the county with the 9.4% poverty rate?
CREATE TABLE table_73445 ("County" text,"Population" real,"Unemployment Rate" text,"Market Income Per Capita" text,"Poverty Rate" text,"Status" text)
SELECT "Market Income Per Capita" FROM table_73445 WHERE "Poverty Rate" = '9.4%'
In what City was Bulgaria the Opponent with Results of 1:0?
CREATE TABLE table_36442 ("Date" text,"City" text,"Opponent" text,"Results\u00b9" text,"Type of game" text)
SELECT "City" FROM table_36442 WHERE "Results\u00b9" = '1:0' AND "Opponent" = 'bulgaria'
is the population of brandfort the same as the population of boipatong ?
CREATE TABLE table_204_64 (id number,"place" text,"code" number,"area (km2)" number,"population" number,"most spoken language" text)
SELECT (SELECT "population" FROM table_204_64 WHERE "place" = 'brandfort') = (SELECT "population" FROM table_204_64 WHERE "place" = 'boipatong')
A bar chart showing the number of publication dates of books, sort Y from high to low order.
CREATE TABLE publication (Publication_ID int,Book_ID int,Publisher text,Publication_Date text,Price real)CREATE TABLE book (Book_ID int,Title text,Issues real,Writer text)
SELECT Publication_Date, COUNT(Publication_Date) FROM publication GROUP BY Publication_Date ORDER BY COUNT(Publication_Date) DESC
what is the rank for athlete hauffe, seifert, kaeufer, adamski?
CREATE TABLE table_name_88 (rank INTEGER,athlete VARCHAR)
SELECT SUM(rank) FROM table_name_88 WHERE athlete = "hauffe, seifert, kaeufer, adamski"
Teerasil Dangda who had a to club of released plays what position?
CREATE TABLE table_49709 ("Exit Date" text,"Pos." text,"Player" text,"To club" text,"Transfer fee" text)
SELECT "Pos." FROM table_49709 WHERE "To club" = 'released' AND "Player" = 'teerasil dangda'
during this year, what were the top five most frequent procedures that patients received during the same month after receiving a antibacterials - linezolid (zyvox)?
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 allergy (allergyid number,patientunitstayid number,drugname text,allergyna...
SELECT t3.treatmentname FROM (SELECT t2.treatmentname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, treatment.treatmenttime FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'antibacterials - linezolid (zyvox)' AND ...
is the white blood cells level of patient 15945 last measured on the current hospital visit greater than it was first measured on the current hospital visit?
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 outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE procedures_icd (row_id ...
SELECT (SELECT labevents.valuenum FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 15945 AND admissions.dischtime IS NULL) AND labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'white blood cells') ORDER BY labevents....
On the date April 11, what is the total game number?
CREATE TABLE table_51240 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text)
SELECT COUNT("Game") FROM table_51240 WHERE "Date" = 'april 11'
What is the country with area of 3,170 in m ?
CREATE TABLE table_53461 ("Area in m\u00b2" text,"Completion" text,"City" text,"Country" text,"Denomination" text)
SELECT "Country" FROM table_53461 WHERE "Area in m\u00b2" = '3,170'
What team had average speed of 107.063 mph?
CREATE TABLE table_24989 ("Year" real,"Date" text,"Driver" text,"Team" text,"Manufacturer" text,"Laps" text,"Miles (km)" text,"Race Time" text,"Average Speed (mph)" text,"Report" text)
SELECT "Team" FROM table_24989 WHERE "Average Speed (mph)" = '107.063'
What was the highest number of goals for a game held at Hannover?
CREATE TABLE table_name_27 (goal INTEGER,venue VARCHAR)
SELECT MAX(goal) FROM table_name_27 WHERE venue = "hannover"
Which Week has an Air Date of august 2, 2008?
CREATE TABLE table_78860 ("Week" real,"Event" text,"Air Date" text,"Winning team" text,"Winners club" text)
SELECT "Week" FROM table_78860 WHERE "Air Date" = 'august 2, 2008'
Which position is the MLS team, Los Angeles Galaxy in?
CREATE TABLE table_name_90 (position VARCHAR,mls_team VARCHAR)
SELECT position FROM table_name_90 WHERE mls_team = "los angeles galaxy"
What is the largest game number?
CREATE TABLE table_29773 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text)
SELECT MAX("Game") FROM table_29773
how many times is the total apps 1 and the fa cup goals less than 0 for bob mountain?
CREATE TABLE table_name_40 (total_goals VARCHAR,fa_cup_goals VARCHAR,total_apps VARCHAR,name VARCHAR)
SELECT COUNT(total_goals) FROM table_name_40 WHERE total_apps = "1" AND name = "bob mountain" AND fa_cup_goals < 0
What team was the opponent on 03/18/08?
CREATE TABLE table_name_41 (opponent VARCHAR,date VARCHAR)
SELECT opponent FROM table_name_41 WHERE date = "03/18/08"
Name the gloss for [ d m]
CREATE TABLE table_name_69 (gloss VARCHAR,pronunciation VARCHAR)
SELECT gloss FROM table_name_69 WHERE pronunciation = "[χdəm]"
How many contestants were there when the runner-up was S rgio Abreu?
CREATE TABLE table_73754 ("Season" real,"Winner" text,"Runner-Up" text,"Third Place" text,"Contestants" real)
SELECT MAX("Contestants") FROM table_73754 WHERE "Runner-Up" = 'Sérgio Abreu'
Return a scatter chart about the correlation between Team_ID and School_ID , and group by attribute ACC_Road.
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 Team_ID, School_ID FROM basketball_match GROUP BY ACC_Road
give me the total amount of lr ivf that patient 006-70268 took on 04/13/this year.
CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid numbe...
SELECT SUM(intakeoutput.cellvaluenumeric) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '006-70268')) AND intakeoutput.celllabel = 'lr iv...
count the number of patients whose admission year is 2129 and lab test item id is 50993.
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 COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admityear < "2129" AND lab.itemid = "50993"
what were the total number of times the championship was held in italy ?
CREATE TABLE table_203_60 (id number,"outcome" text,"no." number,"date" text,"championship" text,"surface" text,"opponent in the final" text,"score in the final" text)
SELECT COUNT(*) FROM table_203_60 WHERE "championship" = 'italy'