instruction
stringlengths
0
1.06k
input
stringlengths
11
5.3k
response
stringlengths
2
4.44k
What is Result, when Opponent is 'Rochester Royals'?
CREATE TABLE table_name_19 (result VARCHAR,opponent VARCHAR)
SELECT result FROM table_name_19 WHERE opponent = "rochester royals"
Visualize a bar chart about the distribution of All_Home and the sum of Team_ID , and group by attribute All_Home, and I want to show in ascending by the x axis please.
CREATE TABLE university (School_ID int,School text,Location text,Founded real,Affiliation text,Enrollment real,Nickname text,Primary_conference text)CREATE TABLE basketball_match (Team_ID int,School_ID int,Team_Name text,ACC_Regular_Season text,ACC_Percent text,ACC_Home text,ACC_Road text,All_Games text,All_Games_Perce...
SELECT All_Home, SUM(Team_ID) FROM basketball_match GROUP BY All_Home ORDER BY All_Home
are there any flights on US from PITTSBURGH to ATLANTA on wednesday
CREATE TABLE flight_leg (flight_id int,leg_number int,leg_flight int)CREATE TABLE fare (fare_id int,from_airport varchar,to_airport varchar,fare_basis_code text,fare_airline text,restriction_code text,one_direction_cost int,round_trip_cost int,round_trip_required varchar)CREATE TABLE compartment_class (compartment varc...
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE ((CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'ATLANTA' AND date_day.day_number = 23 AND date_day.month_number = 4 AND ...
what's the kerry # with county being ness county, kansas
CREATE TABLE table_13606924_1 (kerry__number VARCHAR,county VARCHAR)
SELECT kerry__number FROM table_13606924_1 WHERE county = "Ness county, Kansas"
how many patients are diagnosed with other anomalies of larnyx, trachea and bronchus?
CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethni...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE diagnoses.long_title = "Other anomalies of larynx, trachea, and bronchus"
how many patients whose insurance is medicaid and diagnoses long title is other chronic pain?
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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.insurance = "Medicaid" AND diagnoses.long_title = "Other chronic pain"
Did the nominated work of white valentine win an award?
CREATE TABLE table_55136 ("Year" real,"Award" text,"Category" text,"Nominated work" text,"Result" text)
SELECT "Result" FROM table_55136 WHERE "Nominated work" = 'white valentine'
What is the largest region with a Code smaller than 66112, and a Name of l' le-dorval?
CREATE TABLE table_77859 ("Code" real,"Type" text,"Name" text,"Area (km 2)" real,"Population" real,"Regional County Municipality" text,"Metropolitan area" text,"Region" real)
SELECT MAX("Region") FROM table_77859 WHERE "Code" < '66112' AND "Name" = 'l''île-dorval'
what is the least population of 2009 ?
CREATE TABLE table_204_381 (id number,"sum" number,"mongolian" number,"population\n(2005)" number,"population\n(2008)" number,"population\n(2009)" number,"area\nkm2" number,"density\n/km2" number,"sum centre\npopulation" number)
SELECT MIN("population\n(2009)") FROM table_204_381
what is the fare from BOSTON to SAN FRANCISCO on UA flight 21
CREATE TABLE ground_service (city_code text,airport_code text,transport_type text,ground_fare int)CREATE TABLE flight_stop (flight_id int,stop_number int,stop_days text,stop_airport text,arrival_time int,arrival_airline text,arrival_flight_number int,departure_time int,departure_airline text,departure_flight_number int...
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 (((flight.airline_code = 'UA') AND flight.flight_number = 21) AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'SAN FRANC...
What is every song title for 2007?
CREATE TABLE table_21500850_1 (song_title VARCHAR,year VARCHAR)
SELECT song_title FROM table_21500850_1 WHERE year = 2007
flights from CINCINNATI to SALT LAKE CITY
CREATE TABLE flight_fare (flight_id int,fare_id int)CREATE TABLE airline (airline_code varchar,airline_name text,note text)CREATE TABLE class_of_service (booking_class varchar,rank int,class_description text)CREATE TABLE time_zone (time_zone_code text,time_zone_name text,hours_from_gmt int)CREATE TABLE state (state_cod...
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 = 'CINCINNATI' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'SAL...
what is the number of patients whose age is less than 61 and drug route is im?
CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.age < "61" AND prescriptions.route = "IM"
count the number of patients who have a diagnoses of other respiratory problems after birth.
CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid 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 diagnoses (subject_id text,hadm_id tex...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE diagnoses.short_title = "Resp prob after brth NEC"
Show name and distance for all aircrafts Visualize by bar chart, order names from low to high order please.
CREATE TABLE certificate (eid number(9,0),aid number(9,0))CREATE TABLE flight (flno number(4,0),origin varchar2(20),destination varchar2(20),distance number(6,0),departure_date date,arrival_date date,price number(7,2),aid number(9,0))CREATE TABLE employee (eid number(9,0),name varchar2(30),salary number(10,2))CREATE TA...
SELECT name, distance FROM aircraft ORDER BY name
How many goals for were scored for the team(s) that won fewer than 4 games and lost more than 6?
CREATE TABLE table_57522 ("Team" text,"Games Played" real,"Wins" real,"Losses" real,"Ties" real,"Goals For" real,"Goals Against" real)
SELECT SUM("Goals For") FROM table_57522 WHERE "Wins" < '4' AND "Losses" > '6'
What is the Result F-A that was the quarter-final first leg round with a H/A of h?
CREATE TABLE table_62414 ("Date" text,"Round" text,"Opponents" text,"H / A" text,"Result F\u2013A" text,"Attendance" real)
SELECT "Result F\u2013A" FROM table_62414 WHERE "H / A" = 'h' AND "Round" = 'quarter-final first leg'
Which upper elective courses can CS students take ?
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, program_course WHERE program_course.category LIKE '%ULCS%' AND program_course.course_id = course.course_id
In what format was the release from the Nebt068 catalog on April 11, 2005 in?
CREATE TABLE table_39880 ("Region" text,"Date" text,"Label" text,"Format" text,"Catalog" text)
SELECT "Format" FROM table_39880 WHERE "Date" = 'april 11, 2005' AND "Catalog" = 'nebt068'
Name the points classification for quick step-innergetic with stage 7
CREATE TABLE table_67465 ("Stage" text,"Winner" text,"General classification" text,"Points Classification" text,"Team Classification" text)
SELECT "Points Classification" FROM table_67465 WHERE "Team Classification" = 'quick step-innergetic' AND "Stage" = '7'
What is the club/province of Sireli Bobo, who plays wing and has less than 24 caps?
CREATE TABLE table_name_93 (club_province VARCHAR,player VARCHAR,position VARCHAR,caps VARCHAR)
SELECT club_province FROM table_name_93 WHERE position = "wing" AND caps < 24 AND player = "sireli bobo"
what's the date with tournament value of ford senior players championship
CREATE TABLE table_16936 ("Date" text,"Tournament" text,"Location" text,"Purse($)" real,"Winner" text,"Score" text,"1st Prize($)" real)
SELECT "Date" FROM table_16936 WHERE "Tournament" = 'Ford Senior Players Championship'
Which viewers have the language of troff (typesetter runoff) , groff (gnu runoff)?
CREATE TABLE table_1574968_1 (viewer VARCHAR,language VARCHAR)
SELECT viewer FROM table_1574968_1 WHERE language = "troff (typesetter runoff) , groff (GNU runoff)"
how many patients are diagnosed for abnormal coagulation profile and tested under the chemistry lab category?
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 = "Abnormal coagulation profile" AND lab."CATEGORY" = "Chemistry"
Who wrote the episode that was watched by 2.97 million U.S. viewers?
CREATE TABLE table_29920800_1 (written_by VARCHAR,us_viewers__million_ VARCHAR)
SELECT written_by FROM table_29920800_1 WHERE us_viewers__million_ = "2.97"
is there a UA flight from BALTIMORE to SAN FRANCISCO on the morning of 8 27
CREATE TABLE airline (airline_code varchar,airline_name text,note text)CREATE TABLE time_interval (period text,begin_time int,end_time int)CREATE TABLE class_of_service (booking_class varchar,rank int,class_description text)CREATE TABLE time_zone (time_zone_code text,time_zone_name text,hours_from_gmt int)CREATE TABLE ...
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE (((CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'SAN FRANCISCO' AND date_day.day_number = 27 AND date_day.month_number =...
What Position has a Round of 27?
CREATE TABLE table_name_95 (position VARCHAR,round VARCHAR)
SELECT position FROM table_name_95 WHERE round = 27
What is the rank of a country with more than 2 gold, less than 5 silver, and less than 31 total medals?
CREATE TABLE table_58929 ("Rank" real,"Gold" real,"Silver" real,"Bronze" real,"Total" real)
SELECT SUM("Rank") FROM table_58929 WHERE "Gold" > '2' AND "Total" < '31' AND "Silver" < '5'
Show each employee's salary using a bar chart, note that use the last name of each employee.
CREATE TABLE countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))CREATE TABLE departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_ID decimal(4,0))CREATE TABLE locations (LOCATION_ID decimal(4,0),STREET_ADDRESS varchar(40),POSTAL_CODE varchar...
SELECT LAST_NAME, SALARY FROM employees
What was the record against Washington?
CREATE TABLE table_21363 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text)
SELECT COUNT("Record") FROM table_21363 WHERE "Team" = 'Washington'
Which water has green wood?
CREATE TABLE table_name_50 (water VARCHAR,wood VARCHAR)
SELECT water FROM table_name_50 WHERE wood = "green"
how many papers does nicola dell have at chi
CREATE TABLE writes (paperid int,authorid int)CREATE TABLE cite (citingpaperid int,citedpaperid int)CREATE TABLE keyphrase (keyphraseid int,keyphrasename varchar)CREATE TABLE field (fieldid int)CREATE TABLE venue (venueid int,venuename varchar)CREATE TABLE paperfield (fieldid int,paperid int)CREATE TABLE dataset (datas...
SELECT DISTINCT COUNT(paper.paperid) FROM author, paper, venue, writes WHERE author.authorname = 'nicola dell' AND venue.venueid = paper.venueid AND venue.venuename = 'chi' AND writes.authorid = author.authorid AND writes.paperid = paper.paperid
how many male patients had the procedure icd9 code 9703?
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 procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.gender = "M" AND procedures.icd9_code = "9703"
What country is Gary Player from in T9 place?
CREATE TABLE table_50568 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text)
SELECT "Country" FROM table_50568 WHERE "Place" = 't9' AND "Player" = 'gary player'
What is the Regionalliga Sud for 1995-96?
CREATE TABLE table_name_13 (regionalliga_süd VARCHAR,season VARCHAR)
SELECT regionalliga_süd FROM table_name_13 WHERE season = "1995-96"
Find the number of students whose age is younger than the average age and group by students' first name in a bar chart, could you show in descending by the y axis?
CREATE TABLE Lives_in (stuid INTEGER,dormid INTEGER,room_number INTEGER)CREATE TABLE Has_amenity (dormid INTEGER,amenid INTEGER)CREATE TABLE Student (StuID INTEGER,LName VARCHAR(12),Fname VARCHAR(12),Age INTEGER,Sex VARCHAR(1),Major INTEGER,Advisor INTEGER,city_code VARCHAR(3))CREATE TABLE Dorm_amenity (amenid INTEGER,...
SELECT Fname, COUNT(Fname) FROM Student WHERE Age < (SELECT AVG(Age) FROM Student) GROUP BY Fname ORDER BY COUNT(Fname) DESC
What position does the player from Oklahoma who was drafted in round 7 play?
CREATE TABLE table_4597 ("Round" real,"Overall" real,"Player" text,"Position" text,"College" text)
SELECT "Position" FROM table_4597 WHERE "Round" = '7' AND "College" = 'oklahoma'
How many mileposts are there on Anne Street?
CREATE TABLE table_10568553_1 (milepost VARCHAR,street_names VARCHAR)
SELECT COUNT(milepost) FROM table_10568553_1 WHERE street_names = "Anne Street"
i would like to plan a flight on AA from BOSTON to DENVER
CREATE TABLE dual_carrier (main_airline varchar,low_flight_number int,high_flight_number int,dual_airline varchar,service_name text)CREATE TABLE ground_service (city_code text,airport_code text,transport_type text,ground_fare int)CREATE TABLE airline (airline_code varchar,airline_name text,note text)CREATE TABLE restri...
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 = 'BOSTON...
What position did Roseau High School (USHS-MN) play?
CREATE TABLE table_2897457_7 (position VARCHAR,college_junior_club_team VARCHAR)
SELECT position FROM table_2897457_7 WHERE college_junior_club_team = "Roseau High School (USHS-MN)"
How may championships were won by the team that started in 1950?
CREATE TABLE table_21564794_3 (championships_in_st_louis VARCHAR,began_in_st_louis VARCHAR)
SELECT championships_in_st_louis FROM table_21564794_3 WHERE began_in_st_louis = 1950
What Date was the Country of japan, and a Label of sony?
CREATE TABLE table_43267 ("Date" text,"Label" text,"Format" text,"Country" text,"Catalog" text)
SELECT "Date" FROM table_43267 WHERE "Country" = 'japan' AND "Label" = 'sony'
what is death status of subject id 6983?
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 procedures (subject_id text,hadm_id text,icd9_code text,sho...
SELECT demographic.expire_flag FROM demographic WHERE demographic.subject_id = "6983"
What was the score of the game with Nathalie Tauziat as a partner?
CREATE TABLE table_name_7 (score VARCHAR,partnering VARCHAR)
SELECT score FROM table_name_7 WHERE partnering = "nathalie tauziat"
Name the hanja for hangul of
CREATE TABLE table_31730 ("Hangul" text,"Hanja" text,"Revised" text,"McCune-Reischauer" text,"Estimated distribution (2000)*" real)
SELECT "Hanja" FROM table_31730 WHERE "Hangul" = '주'
What was the earliest year for a car with 3 points and Cooper t20 chassis?
CREATE TABLE table_name_36 (year INTEGER,points VARCHAR,chassis VARCHAR)
SELECT MIN(year) FROM table_name_36 WHERE points = 3 AND chassis = "cooper t20"
please show me again the FIRST class fares from BALTIMORE to DALLAS
CREATE TABLE airline (airline_code varchar,airline_name text,note text)CREATE TABLE time_interval (period text,begin_time int,end_time int)CREATE TABLE class_of_service (booking_class varchar,rank int,class_description text)CREATE TABLE time_zone (time_zone_code text,time_zone_name text,hours_from_gmt int)CREATE TABLE ...
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, fare_basis, flight, flight_fare WHERE CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'BALTIMORE' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code A...
How large was the crowd when North Melbourne played as the away team?
CREATE TABLE table_58194 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text)
SELECT "Crowd" FROM table_58194 WHERE "Away team" = 'north melbourne'
Which club has played for 27 seasons at this level?
CREATE TABLE table_12637 ("Clubs" text,"Seasons at this level" text,"Settlements" text,"Season joined league" text,"Position in 1960/1961" text)
SELECT "Clubs" FROM table_12637 WHERE "Seasons at this level" = '27 seasons'
What is the team #2 with Deport as team #1?
CREATE TABLE table_name_31 (team__number2 VARCHAR,team__number1 VARCHAR)
SELECT team__number2 FROM table_name_31 WHERE team__number1 = "deport"
how many patients with ventricular tachycardia had medicaid insurance?
CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag text,admission_location text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.insurance = "Medicaid" AND demographic.diagnosis = "VENTRICULAR TACHYCARDIA"
Who was the opponent for the game on November 20, 1955?
CREATE TABLE table_name_35 (opponent VARCHAR,date VARCHAR)
SELECT opponent FROM table_name_35 WHERE date = "november 20, 1955"
What is the date of birth of every customer whose status code is 'Good Customer', and count them by a bar chart, I want to rank by the total number from low to high.
CREATE TABLE Lessons (lesson_id INTEGER,customer_id INTEGER,lesson_status_code VARCHAR(15),staff_id INTEGER,vehicle_id INTEGER,lesson_date DATETIME,lesson_time VARCHAR(10),price DOUBLE)CREATE TABLE Staff (staff_id INTEGER,staff_address_id INTEGER,nickname VARCHAR(80),first_name VARCHAR(80),middle_name VARCHAR(80),last_...
SELECT date_of_birth, COUNT(date_of_birth) FROM Customers WHERE customer_status_code = 'Good Customer' ORDER BY COUNT(date_of_birth)
Posts whose titles are prefixed with one of its tags. Posts whose titles are of the form 'Tag: Blah blah blah', where 'Tag' is already one of the tags on that post.
CREATE TABLE PostTypes (Id number,Name text)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 PostTags (PostId nu...
SELECT Id AS "post_link", Title FROM Posts WHERE Title LIKE '%:%' AND LEFT(Title, STR_POSITION(Title, ':') - 1) IN (SELECT Tags.TagName FROM PostTags INNER JOIN Tags ON PostTags.TagId = Tags.Id WHERE PostTags.PostId = Posts.Id) ORDER BY CreationDate DESC
Display a pie chart for how many climbers are from each country?
CREATE TABLE climber (Climber_ID int,Name text,Country text,Time text,Points real,Mountain_ID int)CREATE TABLE mountain (Mountain_ID int,Name text,Height real,Prominence real,Range text,Country text)
SELECT Country, COUNT(*) FROM climber GROUP BY Country
tell me the type of admission and the prescription drug for the patient with patient id 2560.
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 demographic.admission_type, prescriptions.drug FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.subject_id = "2560"
Who drove the car with a grid of 7?
CREATE TABLE table_52842 ("Driver" text,"Constructor" text,"Laps" real,"Time/Retired" text,"Grid" real)
SELECT "Driver" FROM table_52842 WHERE "Grid" = '7'
i want to fly from BALTIMORE to DALLAS round trip
CREATE TABLE food_service (meal_code text,meal_number int,compartment text,meal_description varchar)CREATE TABLE aircraft (aircraft_code varchar,aircraft_description varchar,manufacturer varchar,basic_type varchar,engines int,propulsion varchar,wide_body varchar,wing_span int,length int,weight int,capacity int,pay_load...
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_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'DALLAS' AND NOT fare.round_trip_cost IS NULL AND flight_fare.fare_id =...
What year were the retired serial numbers 27317 27336?
CREATE TABLE table_name_32 (year_s__retired VARCHAR,serial_numbers VARCHAR)
SELECT year_s__retired FROM table_name_32 WHERE serial_numbers = "27317–27336"
Provide me with some easy 300 -level courses ?
CREATE TABLE instructor (instructor_id int,name varchar,uniqname varchar)CREATE TABLE gsi (course_offering_id int,student_id int)CREATE TABLE requirement (requirement_id int,requirement varchar,college varchar)CREATE TABLE program (program_id int,name varchar,college varchar,introduction varchar)CREATE TABLE course_pre...
SELECT DISTINCT course.name, course.number, program_course.workload FROM course, program_course WHERE course.department = 'EECS' AND course.number BETWEEN 300 AND 300 + 100 AND program_course.course_id = course.course_id AND program_course.workload < 3 ORDER BY program_course.workload
For those employees whose first name does not containing the letter M, display their average salary by binning the hire date into Month interval for visualizing a bar chart, and list from high to low by the y axis.
CREATE TABLE countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))CREATE TABLE regions (REGION_ID decimal(5,0),REGION_NAME varchar(25))CREATE TABLE departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_ID decimal(4,0))CREATE TABLE jobs (JOB_ID ...
SELECT HIRE_DATE, AVG(SALARY) FROM employees WHERE NOT FIRST_NAME LIKE '%M%' ORDER BY AVG(SALARY) DESC
What is the Percentage Lost for the contestant with a starting weight above 102 kg who lost 46.9 kg?
CREATE TABLE table_63871 ("Contestant" text,"Starting Weight (kg)" real,"Final Weight (kg)" real,"Weight Lost (kg)" real,"Percentage Lost" text,"Position (out of Eliminated Contestants)" text)
SELECT "Percentage Lost" FROM table_63871 WHERE "Starting Weight (kg)" > '102' AND "Weight Lost (kg)" = '46.9'
which building had the least number of floors ?
CREATE TABLE table_204_541 (id number,"name" text,"area" text,"height" text,"floors" number,"year" number)
SELECT "name" FROM table_204_541 ORDER BY "floors" LIMIT 1
What is the lowest Extras for Chamara Kapugedera, with an E.R. less than 4.59?
CREATE TABLE table_6928 ("Name" text,"Overs Bowled" real,"Maidens" real,"Runs Conceded" real,"Wickets" real,"Extras" real,"E.R." real)
SELECT MIN("Extras") FROM table_6928 WHERE "Name" = 'chamara kapugedera' AND "E.R." < '4.59'
Unanswered questions by active users.
CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE ReviewTaskStates (Id number,Name text,Description text)CREATE TABLE Comments (Id number,PostId number,Score number,Text text,CreationDate time,UserDisplayName text,UserId number,ContentLicense text)CREATE TABLE Sugg...
SELECT DisplayName FROM Users WHERE LastAccessDate >= DATEDIFF(d, 2, GETDATE())
What's the minimal rank of a athlete shown in the chart?
CREATE TABLE table_22355_5 (rank INTEGER)
SELECT MIN(rank) FROM table_22355_5
when was the first time the heartrate for patient 027-136480 was greater than 122.0 until 12/30/2105?
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 intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text...
SELECT vitalperiodic.observationtime FROM vitalperiodic WHERE vitalperiodic.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '027-136480')) AND vitalperiodic.heartrate > 122.0 A...
Tell me the finalists for week # less than 2
CREATE TABLE table_name_40 (finalists VARCHAR,week__number INTEGER)
SELECT finalists FROM table_name_40 WHERE week__number < 2
keyphrases used by Magdalena Balazinska
CREATE TABLE author (authorid int,authorname varchar)CREATE TABLE writes (paperid int,authorid int)CREATE TABLE cite (citingpaperid int,citedpaperid int)CREATE TABLE journal (journalid int,journalname varchar)CREATE TABLE keyphrase (keyphraseid int,keyphrasename varchar)CREATE TABLE dataset (datasetid int,datasetname v...
SELECT DISTINCT keyphrase.keyphraseid FROM author, keyphrase, paper, paperkeyphrase, writes WHERE author.authorname = 'Magdalena Balazinska' AND paperkeyphrase.keyphraseid = keyphrase.keyphraseid AND paper.paperid = paperkeyphrase.paperid AND writes.authorid = author.authorid AND writes.paperid = paper.paperid
When did this wind farm started service with a capacity of 135 MW?
CREATE TABLE table_27129 ("Wind farm" text,"Installed capacity (MW)" text,"Turbine Manufacturer" text,"County" text,"Date in Service" text)
SELECT "Date in Service" FROM table_27129 WHERE "Installed capacity (MW)" = '135'
Which Year has a Competition of european championships, and Notes of 66.81 m?
CREATE TABLE table_61155 ("Year" real,"Competition" text,"Venue" text,"Position" text,"Notes" text)
SELECT SUM("Year") FROM table_61155 WHERE "Competition" = 'european championships' AND "Notes" = '66.81 m'
List the season, home team, away team of all the games.
CREATE TABLE injury_accident (game_id number,id number,player text,injury text,number_of_matches text,source text)CREATE TABLE game (stadium_id number,id number,season number,date text,home_team text,away_team text,score text,competition text)CREATE TABLE stadium (id number,name text,home_games number,average_attendanc...
SELECT season, home_team, away_team FROM game
Which pinyin have a population of 374047?
CREATE TABLE table_1204998_2 (pinyin VARCHAR,population VARCHAR)
SELECT pinyin FROM table_1204998_2 WHERE population = 374047
Who was the heir when the monarch was Wareru?
CREATE TABLE table_28714 ("Monarch" text,"Heir" text,"Status" text,"Relationship to Monarch" text,"Became heir; reason" text,"Ceased to be heir; reason" text,"Next in succession" text)
SELECT "Heir" FROM table_28714 WHERE "Monarch" = 'Wareru'
In which reports does Michael Andretti have the pole position and Galles-Kraco Racing is the winning team?
CREATE TABLE table_16284 ("Rnd" text,"Race Name" text,"Circuit" text,"City/Location" text,"Date" text,"Pole position" text,"Fastest lap" text,"Winning driver" text,"Winning team" text,"Report" text)
SELECT "Report" FROM table_16284 WHERE "Pole position" = 'Michael Andretti' AND "Winning team" = 'Galles-Kraco Racing'
What team did the manager come from who departed due to an end of tenure as caretaker?
CREATE TABLE table_47898 ("Team" text,"Outgoing manager" text,"Manner of departure" text,"Date of vacancy" text,"Replaced by" text,"Date of appointment" text,"Position in table" text)
SELECT "Team" FROM table_47898 WHERE "Manner of departure" = 'end of tenure as caretaker'
how many parties had the same leader in office twice ?
CREATE TABLE table_201_25 (id number,"party" text,"leader" text,"from" text,"to" text)
SELECT COUNT(DISTINCT "party") FROM table_201_25 GROUP BY "leader" HAVING COUNT("leader") = 2
What Virtue looks at the intimacy vs. isolation crisis?
CREATE TABLE table_name_48 (virtues VARCHAR,psycho_social_crisis VARCHAR)
SELECT virtues FROM table_name_48 WHERE psycho_social_crisis = "intimacy vs. isolation"
What is the 2nd leg with ldu quito as team 1?
CREATE TABLE table_name_62 (team__number1 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_62 WHERE team__number1 = "ldu quito"
Which aperture were built or used between 1987-2001?
CREATE TABLE table_2961 ("Name" text,"Aperture m" text,"Aper. in" text,"Mirror/type" text,"Nationality/Sponsors" text,"Site" text,"Built/Used" text)
SELECT "Aper. in" FROM table_2961 WHERE "Built/Used" = '1987-2001'
how many days have passed since the last time that patient 027-85328 stayed on the current hospital encounter in the ward 996?
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 microlab (microlabid number,patientunitstayid number,culturesite text,orga...
SELECT 1 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', patient.unitadmittime)) FROM patient WHERE patient.uniquepid = '027-85328' AND patient.wardid = 996 AND patient.hospitaldischargetime IS NULL ORDER BY patient.unitadmittime DESC LIMIT 1
Name the bed 2010 for 6.5%
CREATE TABLE table_3248 ("Party" text,"January 2010" text,"February 2010" text,"March 2010" text,"April 2010" text,"May 2010" text,"June 2010" text)
SELECT "February 2010" FROM table_3248 WHERE "June 2010" = '6.5%'
What team started in grid 11?
CREATE TABLE table_name_2 (team VARCHAR,grid VARCHAR)
SELECT team FROM table_name_2 WHERE grid = "11"
For a power notation of 10 12, what is the long scale?
CREATE TABLE table_45078 ("Number notation" real,"Power notation" text,"Short scale" text,"Long scale" text,"Indian (or South Asian) English" text)
SELECT "Long scale" FROM table_45078 WHERE "Power notation" = '10 12'
provide the number of patients whose marital status is single and procedure short title is cv cath plcmt w guidance?
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 INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.marital_status = "SINGLE" AND procedures.short_title = "CV cath plcmt w guidance"
What was the method of elimination in the chamber with a time of 24:02?
CREATE TABLE table_24628683_2 (method_of_elimination VARCHAR,time VARCHAR)
SELECT method_of_elimination FROM table_24628683_2 WHERE time = "24:02"
When by80607002529af is the part number and september 2009 is the release date what is the l2 cache?
CREATE TABLE table_18823880_10 (l2_cache VARCHAR,release_date VARCHAR,part_number_s_ VARCHAR)
SELECT l2_cache FROM table_18823880_10 WHERE release_date = "September 2009" AND part_number_s_ = "BY80607002529AF"
what are the five most commonly performed procedures for patients who were previously diagnosed with heparin-indu thrombocyto within 2 months, in 2104?
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 transfers (row_id number,subject_id number,hadm_id number,icustay_id number,eventtype text,careunit text,wardid numb...
SELECT d_icd_procedures.short_title FROM d_icd_procedures WHERE d_icd_procedures.icd9_code IN (SELECT t3.icd9_code FROM (SELECT t2.icd9_code, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissi...
What was his record when the match went for 3:05?
CREATE TABLE table_name_62 (record VARCHAR,time VARCHAR)
SELECT record FROM table_name_62 WHERE time = "3:05"
against which opponent did scotland have no scorers ?
CREATE TABLE table_203_590 (id number,"date" text,"venue" text,"opponents" text,"score" text,"competition" text,"scotland scorer(s)" text)
SELECT "opponents" FROM table_203_590 WHERE "score" = 0
count the number of patients with lab test item id 51221 who have abnormal lab test status.
CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)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 ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE lab.itemid = "51221" AND lab.flag = "abnormal"
Can you tell me the Player that has the Score larger than 67?
CREATE TABLE table_name_60 (player VARCHAR,score INTEGER)
SELECT player FROM table_name_60 WHERE score > 67
what was the last episode with two people sent home ?
CREATE TABLE table_204_945 (id number,"episode" number,"name" text,"synopsis" text,"sent home" text,"highest seller" text)
SELECT "name" FROM table_204_945 WHERE "sent home" = 2 ORDER BY "episode" DESC LIMIT 1
What was the original air date of Stargate SG-1 written by Peter Deluise?
CREATE TABLE table_15431959_1 (original_air_date VARCHAR,written_by VARCHAR)
SELECT original_air_date FROM table_15431959_1 WHERE written_by = "Peter DeLuise"
What is the sum of the bronze medals of the nation with less than 0 silvers?
CREATE TABLE table_name_42 (bronze INTEGER,silver INTEGER)
SELECT SUM(bronze) FROM table_name_42 WHERE silver < 0
Who were the Opponents in the final that played on a carpet (i) Surface?
CREATE TABLE table_71910 ("Tournament" text,"Surface" text,"Partner" text,"Opponents in the final" text,"Score in the final" text)
SELECT "Opponents in the final" FROM table_71910 WHERE "Surface" = 'carpet (i)'
Which Pick has a Round larger than 17, and a Name of gene stewart?
CREATE TABLE table_name_46 (pick VARCHAR,round VARCHAR,name VARCHAR)
SELECT COUNT(pick) FROM table_name_46 WHERE round > 17 AND name = "gene stewart"
list all flights going from BOSTON to ATLANTA before 500 o'clock am on thursday
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 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 = 24 AND date_day.month_number = 5 AND date_day.year = 1991 AND days.day_name = date_day.day_name AND flight.departure_time...
since 2 years ago for the patients of age 60 or above, what were the top three most frequent diagnoses?
CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)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 d_icd_diagnoses (row_id numb...
SELECT d_icd_diagnoses.short_title FROM d_icd_diagnoses WHERE d_icd_diagnoses.icd9_code IN (SELECT t1.icd9_code FROM (SELECT diagnoses_icd.icd9_code, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM diagnoses_icd WHERE diagnoses_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.age >= 60) ...
What is the time where the record is 10-1?
CREATE TABLE table_12210 ("Res." text,"Record" text,"Opponent" text,"Method" text,"Event" text,"Round" real,"Time" text,"Location" text)
SELECT "Time" FROM table_12210 WHERE "Record" = '10-1'