instruction
stringlengths
0
1.06k
input
stringlengths
11
5.3k
response
stringlengths
2
4.44k
How many February days have Points of 63 and a Score of 1 2?
CREATE TABLE table_name_40 (february VARCHAR,points VARCHAR,score VARCHAR)
SELECT COUNT(february) FROM table_name_40 WHERE points = 63 AND score = "1–2"
What is the number of games lost when goal difference is +13 and draws are more than 12?
CREATE TABLE table_name_65 (lost VARCHAR,goal_difference VARCHAR,drawn VARCHAR)
SELECT COUNT(lost) FROM table_name_65 WHERE goal_difference = "+13" AND drawn > 12
What were the total number of 2012 deaths when 2012 births were 127?
CREATE TABLE table_3390 ("January\u2013December 2012" text,"Birth/2012" real,"Birth/2011" real,"Death/2012" real,"Death/2011" real)
SELECT "Death/2012" FROM table_3390 WHERE "Birth/2012" = '127'
What is the Points Classification Navy Blue Jersey that has Yoann le Boulanger, and Gerolsteiner?
CREATE TABLE table_name_11 (points_classification_navy_blue_jersey VARCHAR,mountains_classification_green_jersey VARCHAR,team_classification VARCHAR)
SELECT points_classification_navy_blue_jersey FROM table_name_11 WHERE mountains_classification_green_jersey = "yoann le boulanger" AND team_classification = "gerolsteiner"
What is the lowest Year, when Co-Driver is Warren Luff, when Position is 7th, and when Laps is less than 161?
CREATE TABLE table_name_47 (year INTEGER,laps VARCHAR,co_driver VARCHAR,position VARCHAR)
SELECT MIN(year) FROM table_name_47 WHERE co_driver = "warren luff" AND position = "7th" AND laps < 161
For the 'Downtown Girl' episode, what was the original air date?
CREATE TABLE table_78462 ("Series #" real,"Title" text,"Directed by" text,"Original air date" text,"Production code" real)
SELECT "Original air date" FROM table_78462 WHERE "Title" = 'downtown girl'
have patient 3535 undergone any contr abd arteriogrm nec procedure until 1 year ago?
CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)CREATE TABLE d_items (row_id numbe...
SELECT COUNT(*) > 0 FROM procedures_icd WHERE procedures_icd.icd9_code = (SELECT d_icd_procedures.icd9_code FROM d_icd_procedures WHERE d_icd_procedures.short_title = 'contr abd arteriogrm nec') AND procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 3535) AND DATETIME(pro...
What is the grid of rider shinya nakano?
CREATE TABLE table_48799 ("Rider" text,"Manufacturer" text,"Laps" text,"Time/Retired" text,"Grid" text)
SELECT "Grid" FROM table_48799 WHERE "Rider" = 'shinya nakano'
body mass index greater than or equal to 25 and less than 35 kg / m2
CREATE TABLE table_train_156 ("id" int,"anemia" bool,"abnormal_bilirubin" bool,"hemoglobin_a1c_hba1c" float,"body_mass_index_bmi" float,"bilirubin" float,"NOUSE" float)
SELECT * FROM table_train_156 WHERE body_mass_index_bmi >= 25 AND body_mass_index_bmi < 35
what's the total number of final epbeingode count with first epbeingode being 'l.a.
CREATE TABLE table_72162 ("Character" text,"Fate" text,"Actor" text,"First Episode" text,"Final Episode" text,"Duration" text,"Final Episode Count" real)
SELECT COUNT("Final Episode Count") FROM table_72162 WHERE "First Episode" = 'L.A.'
How many people were surveyed in the poll from June 30, 2010?
CREATE TABLE table_name_84 (sample_size VARCHAR,date_s__administered VARCHAR)
SELECT sample_size FROM table_name_84 WHERE date_s__administered = "june 30, 2010"
What is the molecular target of the organism that has a disease area of antiviral?
CREATE TABLE table_69537 ("Clinical Status" text,"Compound Name" text,"Trademark" text,"Marine Organism \u03b1" text,"Chemical Class" text,"Molecular Target" text,"Clinical Trials \u03b2" text,"Disease Area" text)
SELECT "Molecular Target" FROM table_69537 WHERE "Disease Area" = 'antiviral'
how many american indian/alaska native ethnic background patients have diagnoses icd9 code 59654?
CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.ethnicity = "AMERICAN INDIAN/ALASKA NATIVE" AND diagnoses.icd9_code = "59654"
Who is the partnering that had the opponents of Marcelo Melo Andr S ?
CREATE TABLE table_45137 ("Date" text,"Tournament" text,"Surface" text,"Partnering" text,"Opponents in final" text,"Score in final" text)
SELECT "Partnering" FROM table_45137 WHERE "Opponents in final" = 'marcelo melo andré sá'
Who is the rider with a 399cc Kawasaki?
CREATE TABLE table_77587 ("Rank" real,"Rider" text,"Team" text,"Speed" text,"Time" text)
SELECT "Rider" FROM table_77587 WHERE "Team" = '399cc kawasaki'
What is the name of the episode originally aired on September 29, 1999?
CREATE TABLE table_18646432_4 (title VARCHAR,original_air_date VARCHAR)
SELECT title FROM table_18646432_4 WHERE original_air_date = "September 29, 1999"
tell me the cost of a lab test for mcv?
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 DISTINCT cost.cost FROM cost WHERE cost.eventtype = 'lab' AND cost.eventid IN (SELECT lab.labid FROM lab WHERE lab.labname = 'mcv')
when they came to the hospital first time, when was the last time that patient 75762 was diagnosed with obstructive sleep apnea?
CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type text,event_id number,chargetime time,cost number)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime t...
SELECT diagnoses_icd.charttime FROM diagnoses_icd WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'obstructive sleep apnea') AND diagnoses_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 75762 AND NOT admi...
Give a bar chart showing how many shops in each carrier, and could you show in ascending by the X?
CREATE TABLE stock (Shop_ID int,Device_ID int,Quantity int)CREATE TABLE device (Device_ID int,Device text,Carrier text,Package_Version text,Applications text,Software_Platform text)CREATE TABLE shop (Shop_ID int,Shop_Name text,Location text,Open_Date text,Open_Year int)
SELECT Carrier, COUNT(Carrier) FROM stock AS T1 JOIN device AS T2 ON T1.Device_ID = T2.Device_ID JOIN shop AS T3 ON T1.Shop_ID = T3.Shop_ID GROUP BY Carrier ORDER BY Carrier
What is the platform & frequency [MHz] of the whr-g54s model?
CREATE TABLE table_6179 ("Model" text,"Platform & Frequency [MHz]" text,"RAM [MB]" text,"Flash Memory [MB]" text,"Wireless NIC" text,"WLAN standard [802.11]" text,"Ethernet port count" text,"Voltage Input [V/A]" text)
SELECT "Platform & Frequency [MHz]" FROM table_6179 WHERE "Model" = 'whr-g54s'
What is the lowest salary in departments with average salary greater than the overall average Plot them as bar chart, and sort minimal salary in ascending order please.
CREATE TABLE classroom (building varchar(15),room_number varchar(7),capacity numeric(4,0))CREATE TABLE prereq (course_id varchar(8),prereq_id varchar(8))CREATE TABLE time_slot (time_slot_id varchar(4),day varchar(1),start_hr numeric(2),start_min numeric(2),end_hr numeric(2),end_min numeric(2))CREATE TABLE takes (ID var...
SELECT dept_name, MIN(salary) FROM instructor GROUP BY dept_name ORDER BY MIN(salary)
What is Package/Option, when Television Service is Sky Inside?
CREATE TABLE table_name_74 (package_option VARCHAR,television_service VARCHAR)
SELECT package_option FROM table_name_74 WHERE television_service = "sky inside"
What is the average amount of silver medals Montenegro, who has less than 15 bronze and more than 11 total medals, has?
CREATE TABLE table_51993 ("Nation" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real)
SELECT AVG("Silver") FROM table_51993 WHERE "Bronze" < '15' AND "Nation" = 'montenegro' AND "Total" > '11'
Give me a bar chart that groups and counts the years played for players from team 'Columbus Crew', list Years_Played from high to low order.
CREATE TABLE country (Country_id int,Country_name text,Capital text,Official_native_language text)CREATE TABLE team (Team_id int,Name text)CREATE TABLE player (Player_ID int,Player text,Years_Played text,Total_WL text,Singles_WL text,Doubles_WL text,Team int)CREATE TABLE match_season (Season real,Player text,Position t...
SELECT Years_Played, COUNT(Years_Played) FROM player AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id WHERE T2.Name = "Columbus Crew" GROUP BY Years_Played ORDER BY Years_Played DESC
how many days has passed since the last time that patient 006-2586 had propofol 10 mg/1 ml 100ml sdv inj prescribed during the current hospital encounter?
CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE lab (labid number,patientunitstayid number,lab...
SELECT 1 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', medication.drugstarttime)) FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '006-258...
What was the score of the replay game when watford was the away team?
CREATE TABLE table_name_84 (score VARCHAR,tie_no VARCHAR,away_team VARCHAR)
SELECT score FROM table_name_84 WHERE tie_no = "replay" AND away_team = "watford"
What is the name of the customer who has the largest number of orders?
CREATE TABLE shipment_items (shipment_id number,order_item_id number)CREATE TABLE customers (customer_id number,customer_name text,customer_details text)CREATE TABLE order_items (order_item_id number,product_id number,order_id number,order_item_status text,order_item_details text)CREATE TABLE invoices (invoice_number n...
SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1
Where the wins are 46, what is the win%?
CREATE TABLE table_name_9 (win_percentage VARCHAR,wins VARCHAR)
SELECT win_percentage FROM table_name_9 WHERE wins = "46"
during this year how many patients were discharged from the hospital?
CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE admissions (row_id number,subject_id number,hadm_id number,admittime time,dischtime time,admission_type text,admission_location text,discharge_location text,insurance text,language text,marital_status text,ethnicity text,age number)CREATE TABL...
SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE NOT admissions.dischtime IS NULL AND DATETIME(admissions.dischtime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-0 year')
What team drove a Dodge vehicle?
CREATE TABLE table_5446 ("Pos." real,"Car #" real,"Driver" text,"Make" text,"Team" text)
SELECT "Team" FROM table_5446 WHERE "Make" = 'dodge'
What is the english translation of the traditional Chinese word, ?
CREATE TABLE table_12583 ("Standard order" real,"English translation" text,"Transcription (based on Pinyin)" text,"Traditional Chinese" text,"Simplified Chinese" text)
SELECT "English translation" FROM table_12583 WHERE "Traditional Chinese" = '哀郢'
What's the Result for the Competition of 1994 FIFA World Cup Qualification, with the Date of May 15, 1993?
CREATE TABLE table_52997 ("Date" text,"Venue" text,"Score" text,"Result" text,"Competition" text)
SELECT "Result" FROM table_52997 WHERE "Competition" = '1994 fifa world cup qualification' AND "Date" = 'may 15, 1993'
What is the pick number in a year earlier than 2009, with a round higher than 1?
CREATE TABLE table_name_60 (pick VARCHAR,year VARCHAR,round VARCHAR)
SELECT COUNT(pick) FROM table_name_60 WHERE year < 2009 AND round > 1
What is the smallest number against when the draws are less than 0?
CREATE TABLE table_name_21 (against INTEGER,draws INTEGER)
SELECT MIN(against) FROM table_name_21 WHERE draws < 0
List the company name and rank for all companies in the decreasing order of their sales.
CREATE TABLE gas_station (station_id number,open_year number,location text,manager_name text,vice_manager_name text,representative_name text)CREATE TABLE station_company (station_id number,company_id number,rank_of_the_year number)CREATE TABLE company (company_id number,rank number,company text,headquarters text,main_i...
SELECT company, rank FROM company ORDER BY sales_billion DESC
What is the indoor number for the NJ wing/
CREATE TABLE table_23074 ("Region" text,"Wing" text,"Inspection" real,"Standard" real,"Indoor" real,"Outdoor" real,"Written" real,"Panel Quiz" real,"Mile Run" real,"Points" real,"Overall" text)
SELECT "Indoor" FROM table_23074 WHERE "Wing" = 'NJ'
What's the TDP for the 7130N model?
CREATE TABLE table_269920_3 (tdp__w_ INTEGER,model VARCHAR)
SELECT MIN(tdp__w_) FROM table_269920_3 WHERE model = "7130N"
Where did Footscray play as the home team?
CREATE TABLE table_name_41 (venue VARCHAR,home_team VARCHAR)
SELECT venue FROM table_name_41 WHERE home_team = "footscray"
how many times did a can i bus album reach the top 10 on the us charts ?
CREATE TABLE table_203_137 (id number,"title" text,"album details" text,"peak chart positions\nus" number,"peak chart positions\nus r&b" number,"certifications" text)
SELECT COUNT(*) FROM table_203_137 WHERE "title" = 'can-i-bus'
What is the independent regional force when alliance is (r) iv n norambuena ( udi )?
CREATE TABLE table_28762 ("Dist." real,"Democratic Coalition" text,"Alliance" text,"Together We Can Do More" text,"Independent Regional Force" text,"Independents" text)
SELECT "Independent Regional Force" FROM table_28762 WHERE "Alliance" = '(R) Iván Norambuena ( UDI )'
what's the ungen for ?
CREATE TABLE table_name_70 (ungegn VARCHAR,word_form VARCHAR)
SELECT ungegn FROM table_name_70 WHERE word_form = "ត្រីទស"
what were the four most frequently prescribed medications since 1 year ago?
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 patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE icustays (row_id number,subject_id number,hadm_id number,icustay_id numb...
SELECT t1.drug FROM (SELECT prescriptions.drug, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM prescriptions WHERE DATETIME(prescriptions.startdate) >= DATETIME(CURRENT_TIME(), '-1 year') GROUP BY prescriptions.drug) AS t1 WHERE t1.c1 <= 4
What is the total number of Against, when Date is '27/02/2005'?
CREATE TABLE table_61570 ("Opposing Teams" text,"Against" real,"Date" text,"Venue" text,"Status" text)
SELECT COUNT("Against") FROM table_61570 WHERE "Date" = '27/02/2005'
A bar chart about what are the statuses and average populations of each city?, I want to sort by the the average of population in ascending.
CREATE TABLE farm (Farm_ID int,Year int,Total_Horses real,Working_Horses real,Total_Cattle real,Oxen real,Bulls real,Cows real,Pigs real,Sheep_and_Goats real)CREATE TABLE city (City_ID int,Official_Name text,Status text,Area_km_2 real,Population real,Census_Ranking text)CREATE TABLE competition_record (Competition_ID i...
SELECT Status, AVG(Population) FROM city GROUP BY Status ORDER BY AVG(Population)
what is the first year listed ?
CREATE TABLE table_204_357 (id number,"year" number,"div." text,"pos." text,"cup" text,"top scorer (league)" text,"score" number)
SELECT "year" FROM table_204_357 WHERE id = 1
For those records from the products and each product's manufacturer, return a bar chart about the distribution of name and the sum of code , and group by attribute name, list Y in desc order.
CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL)CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER)
SELECT T1.Name, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T1.Name ORDER BY T1.Code DESC
Get all of my Votes.
CREATE TABLE PostFeedback (Id number,PostId number,IsAnonymous boolean,VoteTypeId number,CreationDate time)CREATE TABLE PendingFlags (Id number,FlagTypeId number,PostId number,CreationDate time,CloseReasonTypeId number,CloseAsOffTopicReasonTypeId number,DuplicateOfQuestionId number,BelongsOnBaseHostAddress text)CREATE ...
SELECT v.VoteTypeId, COUNT(*) FROM Votes AS v WHERE v.UserId = '##UserID##' GROUP BY v.VoteTypeId
What is the hometown of Mike White?
CREATE TABLE table_name_40 (hometown_school VARCHAR,position VARCHAR,player VARCHAR)
SELECT hometown_school FROM table_name_40 WHERE position = "of" AND player = "mike white"
Who did they lose to on May 20?
CREATE TABLE table_15609 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Record" text)
SELECT "Loss" FROM table_15609 WHERE "Date" = 'may 20'
what was patient 24547's first arterial catheterization procedure time during a year before?
CREATE TABLE icustays (row_id number,subject_id number,hadm_id number,icustay_id number,first_careunit text,last_careunit text,first_wardid number,last_wardid number,intime time,outtime time)CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,startdate time,enddate time,drug text,dose_val_rx text...
SELECT procedures_icd.charttime FROM procedures_icd WHERE procedures_icd.icd9_code = (SELECT d_icd_procedures.icd9_code FROM d_icd_procedures WHERE d_icd_procedures.short_title = 'arterial catheterization') AND procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 24547) AND...
What are the ids and details of all accounts?
CREATE TABLE ref_budget_codes (budget_type_code text,budget_type_description text)CREATE TABLE documents_with_expenses (document_id number,budget_type_code text,document_details text)CREATE TABLE projects (project_id number,project_details text)CREATE TABLE ref_document_types (document_type_code text,document_type_name...
SELECT account_id, account_details FROM accounts
What engine does the Tasman Motorsports team have?
CREATE TABLE table_50549 ("Team" text,"Chassis" text,"Engine" text,"Tire" text,"Sponsor" text)
SELECT "Engine" FROM table_50549 WHERE "Team" = 'tasman motorsports'
What year has the wild side of soccer! as the slogan?
CREATE TABLE table_74767 ("Year" text,"League" text,"Reg. Season" text,"Finish" text,"Owner(s)" text,"Attendance Average" real,"Slogan" text)
SELECT "Year" FROM table_74767 WHERE "Slogan" = 'the wild side of soccer!'
Name the number of details for emlyn road
CREATE TABLE table_24186 ("Station" text,"Line" text,"Planned" real,"Cancelled" real,"Proposal" text,"Details" text)
SELECT COUNT("Details") FROM table_24186 WHERE "Station" = 'Emlyn Road'
Top 10 users Ahmedabad India.
CREATE TABLE Badges (Id number,UserId number,Name text,Date time,Class number,TagBased boolean)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPostId number,LinkTypeId number)CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE Users (Id number,Re...
SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation FROM Users WHERE LOWER(Location) LIKE '%Ahmedabad%' OR UPPER(Location) LIKE '%Ahmedabad%' OR Location LIKE '%Ahmedabad%' AND Reputation >= 1000 ORDER BY Reputation DESC
Questions tagged with [tag] that were closed.
CREATE TABLE ReviewTaskStates (Id number,Name text,Description text)CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE CloseReasonTypes (Id number,Name text,Description text)CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,...
SELECT COUNT(Posts.Id) AS "questions_posted" FROM Posts LEFT JOIN PostHistory AS PH ON PH.PostId = Posts.Id WHERE Posts.PostTypeId = 1 AND STR_POSITION(Posts.Tags, @tag) > 0 AND NOT Posts.ClosedDate IS NULL AND PH.PostHistoryTypeId = @offtopic
find .the number of patients who are female and were diagnosed with transient ischemic attack?
CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.gender = "F" AND demographic.diagnosis = "TRANSIENT ISCHEMIC ATTACK"
What was a penalty given for at time 29:17?
CREATE TABLE table_name_89 (penalty VARCHAR,time VARCHAR)
SELECT penalty FROM table_name_89 WHERE time = "29:17"
how many movies did madhurima take part in total ?
CREATE TABLE table_204_57 (id number,"year" number,"film" text,"role" text,"language" text,"notes" text)
SELECT COUNT("film") FROM table_204_57
Who are the professors teaching PHYSED 336 in the Summer 2020 semester ?
CREATE TABLE offering_instructor (offering_instructor_id int,offering_id int,instructor_id int)CREATE TABLE program_requirement (program_id int,category varchar,min_credit int,additional_req varchar)CREATE TABLE course_offering (offering_id int,course_id int,semester int,section_number int,start_time time,end_time time...
SELECT COUNT(DISTINCT instructor.instructor_id) FROM course, course_offering, instructor, offering_instructor, semester WHERE course.course_id = course_offering.course_id AND course.department = 'PHYSED' AND course.number = 336 AND offering_instructor.instructor_id = instructor.instructor_id AND offering_instructor.off...
Which of the second parties has second member Charles Robert Colvile, a conservative first party, and first member William Mundy?
CREATE TABLE table_59695 ("Election" text,"First member" text,"First party" text,"Second member" text,"Second party" text)
SELECT "Second party" FROM table_59695 WHERE "Second member" = 'charles robert colvile' AND "First party" = 'conservative' AND "First member" = 'william mundy'
What is the total points before 1963?
CREATE TABLE table_name_47 (points INTEGER,year INTEGER)
SELECT SUM(points) FROM table_name_47 WHERE year < 1963
what are the flights from CLEVELAND to INDIANAPOLIS on wednesday may twelfth on either TW DL or CO
CREATE TABLE days (days_code varchar,day_name varchar)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 airport (airport...
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 (((flight.airline_code = 'CO') OR flight.airline_code = 'DL') OR (flight.airline_code = 'TW')) AND ((CITY_1.city_code = AIRPORT_SERVICE_1.city_co...
In what Borough is the Anchorage museum of Natural History?
CREATE TABLE table_34534 ("Name" text,"Town/City" text,"Borough" text,"Region" text,"Type" text)
SELECT "Name" FROM table_34534 WHERE "Borough" = 'anchorage' AND "Type" = 'natural history'
What is the roll number of Orautoha school in Raetihi, which has a decile smaller than 8?
CREATE TABLE table_68052 ("Name" text,"Years" text,"Area" text,"Authority" text,"Decile" real,"Roll" real)
SELECT SUM("Roll") FROM table_68052 WHERE "Area" = 'raetihi' AND "Name" = 'orautoha school' AND "Decile" < '8'
What was the time/retired of the car that started in grid 4?
CREATE TABLE table_name_41 (time_retired VARCHAR,grid VARCHAR)
SELECT time_retired FROM table_name_41 WHERE grid = "4"
What CFL teams are part of Simon Fraser college?
CREATE TABLE table_16396 ("Pick #" real,"CFL Team" text,"Player" text,"Position" text,"College" text)
SELECT "CFL Team" FROM table_16396 WHERE "College" = 'Simon Fraser'
What is Coach, when Win % is .352?
CREATE TABLE table_44564 ("Coach" text,"Years" text,"Win-Loss" text,"Win %" text,"Conference Titles" text)
SELECT "Coach" FROM table_44564 WHERE "Win %" = '.352'
Top 5 Users from Pakistan by Reputation.
CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE TagSynonyms (Id number,SourceTagName text,TargetTagName text,CreationDate time,OwnerUserId number,AutoRenameCount number,LastAu...
SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation FROM Users WHERE LOWER(Location) LIKE '%pakistan%' OR UPPER(Location) LIKE '%PK' ORDER BY Reputation DESC LIMIT 5
Which authority has a rocket launch called rehbar-5?
CREATE TABLE table_11869952_1 (derivatives VARCHAR,rocket_launch VARCHAR)
SELECT COUNT(derivatives) FROM table_11869952_1 WHERE rocket_launch = "Rehbar-5"
Which money list ranks had a best finish of 2?
CREATE TABLE table_4211 ("Player" text,"Starts" real,"Cuts made" real,"Best finish" text,"Money list rank" text,"Earnings ($)" real)
SELECT COUNT("Money list rank") FROM table_4211 WHERE "Best finish" = '2'
Who was the driver with 29 laps?
CREATE TABLE table_51462 ("Driver" text,"Constructor" text,"Laps" text,"Time/Retired" text,"Grid" text)
SELECT "Driver" FROM table_51462 WHERE "Laps" = '29'
What are the japanese title(s) for tv asahi?
CREATE TABLE table_73025 ("Japanese Title" text,"Romaji Title" text,"TV Station" text,"Time Frame" text,"Starring Actors" text,"Theme Song(s)" text,"Episodes" real,"Average Ratings" text)
SELECT "Japanese Title" FROM table_73025 WHERE "TV Station" = 'TV Asahi'
With a draw greater than 11 and the place smaller than 4 what was the televote?
CREATE TABLE table_7711 ("Draw" real,"Artist" text,"Song" text,"Televote" real,"Place" real)
SELECT "Televote" FROM table_7711 WHERE "Draw" > '11' AND "Place" < '4'
which ambassador to honduras served the longest term ?
CREATE TABLE table_203_778 (id number,"representative" text,"title" text,"presentation\nof credentials" text,"termination\nof mission" text,"appointed by" text)
SELECT "representative" FROM table_203_778 ORDER BY "termination\nof mission" - "presentation\nof credentials" DESC LIMIT 1
What is the average rating for a Flyde that has a Burnley less than 0?
CREATE TABLE table_65030 ("Party" text,"Burnley" real,"Chorley" real,"Fylde" real,"Hyndburn" real,"Lancaster" real,"Pendle" real,"Preston" real,"Ribble Valley" real,"Rossendale" real,"South Ribble" real,"West Lancashire" real,"Wyre" real,"Total" real)
SELECT AVG("Fylde") FROM table_65030 WHERE "Burnley" < '0'
For those employees whose first name does not containing the letter M, display their total salary by binning the hire date into Month interval for visualizing a bar chart, and sort in asc by the total number please.
CREATE TABLE jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN_SALARY decimal(6,0),MAX_SALARY decimal(6,0))CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAIL varchar(25),PHONE_NUMBER varchar(20),HIRE_DATE date,JOB_ID varchar(10),SALARY decimal(8,2),COMMISSION_PCT decima...
SELECT HIRE_DATE, SUM(SALARY) FROM employees WHERE NOT FIRST_NAME LIKE '%M%' ORDER BY SUM(SALARY)
How many laps for denny hulme with under 4 on the grid?
CREATE TABLE table_name_13 (laps INTEGER,driver VARCHAR,grid VARCHAR)
SELECT SUM(laps) FROM table_name_13 WHERE driver = "denny hulme" AND grid < 4
Return the lot details, group the lot details, and compute the number of each lot details, and could you show x-axis in descending order?
CREATE TABLE Transactions_Lots (transaction_id INTEGER,lot_id INTEGER)CREATE TABLE Transactions (transaction_id INTEGER,investor_id INTEGER,transaction_type_code VARCHAR(10),date_of_transaction DATETIME,amount_of_transaction DECIMAL(19,4),share_count VARCHAR(40),other_details VARCHAR(255))CREATE TABLE Sales (sales_tran...
SELECT lot_details, COUNT(lot_details) FROM Lots GROUP BY lot_details ORDER BY lot_details DESC
Find comments that might be no longer needed.
CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPostId number,LinkTypeId number)CREATE TABLE ReviewTaskTypes (Id number,Name text,Description text)CREATE TABLE PostsWithDeleted (Id number,PostTypeId numb...
SELECT p.Id AS "post_link" FROM Posts AS p JOIN Comments AS c ON c.PostId = p.Id WHERE DATEDIFF(day, p.LastEditDate, CreationDate) >= 0 AND c.Text LIKE '%##KeywordsInComment##%' AND NOT EXISTS(SELECT ph.PostId FROM PostHistory AS ph WHERE ph.PostHistoryTypeId = 10 AND ph.PostId = p.Id) GROUP BY p.Id ORDER BY p.Id DESC
What is the name of the second who has Caroline Reed as third?
CREATE TABLE table_75264 ("Nation" text,"Skip" text,"Third" text,"Second" text,"Lead" text)
SELECT "Second" FROM table_75264 WHERE "Third" = 'caroline reed'
Name the winner for jason byrne
CREATE TABLE table_23436 ("Episode" text,"First broadcast" text,"Rufus guest" text,"Marcus guest" text,"Winner" text)
SELECT "Winner" FROM table_23436 WHERE "Marcus guest" = 'Jason Byrne'
give me the number of patients on dwell route of drug administration who have primary apnea of newborn.
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 prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE diagnoses.short_title = "Primary apnea of newborn" AND prescriptions.route = "DWELL"
What district has a constituency of 60?
CREATE TABLE table_63718 ("Constituency number" text,"Name" text,"Reserved for (SC / ST /None)" text,"District" text,"Number of electorates (2009)" real)
SELECT "District" FROM table_63718 WHERE "Constituency number" = '60'
count the number of patients whose ethnicity is white and drug route is neb?
CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.ethnicity = "WHITE" AND prescriptions.route = "NEB"
Which virtue is acedia(Latin)?
CREATE TABLE table_name_13 (virtue VARCHAR,acedia VARCHAR,latin VARCHAR)
SELECT virtue FROM table_name_13 WHERE (latin) = acedia
In what lane did the swimmer get a time of 1:59.42?
CREATE TABLE table_14270 ("Rank" real,"Lane" real,"Name" text,"Nationality" text,"Time" text)
SELECT SUM("Lane") FROM table_14270 WHERE "Time" = '1:59.42'
how many patients whose item id is 51457?
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 lab.itemid = "51457"
How many people directed episode 2?
CREATE TABLE table_31183 ("No." real,"Title" text,"Directed by" text,"Written by" text,"Featured character(s)" text,"U.S. viewers (millions)" text,"Original air date" text)
SELECT COUNT("Directed by") FROM table_31183 WHERE "No." = '2'
What date did the episode that had 1.023 million u.s. viewers originally air?
CREATE TABLE table_3019 ("Overall" real,"No. in series" real,"Title" text,"Directed by" text,"Original air date" text,"U.S. viewers (in millions)" text)
SELECT "Original air date" FROM table_3019 WHERE "U.S. viewers (in millions)" = '1.023'
What are the names of students who took a course in the Fall of 2003?
CREATE TABLE takes (id text,course_id text,sec_id text,semester text,year number,grade text)CREATE TABLE teaches (id text,course_id text,sec_id text,semester text,year number)CREATE TABLE section (course_id text,sec_id text,semester text,year number,building text,room_number text,time_slot_id text)CREATE TABLE instruct...
SELECT name FROM student WHERE id IN (SELECT id FROM takes WHERE semester = 'Fall' AND year = 2003)
what was patient 017-101426's last output until 06/15/2104?
CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,dr...
SELECT intakeoutput.celllabel FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '017-101426')) AND intakeoutput.cellpath LIKE '%output%' AND ...
What is Location, when Opponent is 'Mario Rinaldi'?
CREATE TABLE table_58772 ("Res." text,"Record" text,"Opponent" text,"Method" text,"Round" real,"Time" text,"Location" text)
SELECT "Location" FROM table_58772 WHERE "Opponent" = 'mario rinaldi'
Which Surface has an Opponent in the final of don mcneill, and a Year of 1940?
CREATE TABLE table_45927 ("Outcome" text,"Year" real,"Championship" text,"Surface" text,"Opponent in the final" text,"Score in the final" text)
SELECT "Surface" FROM table_45927 WHERE "Opponent in the final" = 'don mcneill' AND "Year" = '1940'
count the number of patients whose diagnoses icd9 code is 481 and lab test fluid is blood?
CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ...
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.icd9_code = "481" AND lab.fluid = "Blood"
which live action american superhero movie was released before the 1966 batman movie ?
CREATE TABLE table_203_79 (id number,"year" number,"film" text,"publisher" text,"director" text,"distributor" text,"worldwide gross" text,"notes" text)
SELECT "film" FROM table_203_79 WHERE "year" < 1966
Who had the high rebounds record on December 12?
CREATE TABLE table_74166 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text)
SELECT "High rebounds" FROM table_74166 WHERE "Date" = 'December 12'
What is the power for the Spirit R (Type B)?
CREATE TABLE table_27286 ("Model" text,"Power" text,"Torque" text,"Gearbox" text,"Weight" text,"Seating" text,"Brakes" text,"Wheels" text,"Tyres" text)
SELECT "Power" FROM table_27286 WHERE "Model" = 'Spirit R (Type B)'
provide the number of patients whose death status is 1 and diagnoses short title is pseudomonas infect nos?
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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.expire_flag = "1" AND diagnoses.short_title = "Pseudomonas infect NOS"
What was the tonnage on 12 september 1942?
CREATE TABLE table_name_91 (tonnage VARCHAR,date VARCHAR)
SELECT tonnage FROM table_name_91 WHERE date = "12 september 1942"