instruction
stringlengths
0
1.06k
input
stringlengths
11
5.3k
response
stringlengths
2
4.44k
What was the venue of the match where the score was 1:3 and team 2 was binh duong?
CREATE TABLE table_48373 ("Season" real,"Team 1" text,"Score" text,"Team 2" text,"Venue" text)
SELECT "Venue" FROM table_48373 WHERE "Score" = '1:3' AND "Team 2" = 'binh duong'
For those records from the products and each product's manufacturer, give me the comparison about price over the name , and group by attribute headquarter by a bar chart, and order by the y axis in descending please.
CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER)CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL)
SELECT T1.Name, T1.Price FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Headquarter, T1.Name ORDER BY T1.Price DESC
What is the nationality of the player who scored 13 goals
CREATE TABLE table_26966 ("Name" text,"Position" text,"Period" text,"Appearances\u00b9" real,"Goals\u00b9" real,"Nationality\u00b2" text)
SELECT "Nationality\u00b2" FROM table_26966 WHERE "Goals\u00b9" = '13'
Provide the number of patients whose primary disease is atrial septal defect/mitral valve replacement repair atrial-septal defect/sda and are aged below 59 years.
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.diagnosis = "ATRIAL SEPTAL DEFECT\MITRAL VALVE REPLACEMENT;REPAIR ATRIAL-SEPTAL DEFECT/SDA" AND demographic.age < "59"
What is the average number of EVA for the Orion?
CREATE TABLE table_7600 ("Mission name" text,"Lunar lander" text,"Lunar landing date" text,"Lunar blastoff date" text,"Lunar landing site" text,"Duration on lunar surface" text,"Crew" text,"Number of s EVA" real,"Total EVA Time (HH:MM)" text)
SELECT AVG("Number of s EVA") FROM table_7600 WHERE "Lunar lander" = 'orion'
Show the ids of all employees who don't destroy any document.
CREATE TABLE ref_document_types (document_type_code text,document_type_name text,document_type_description text)CREATE TABLE employees (employee_id number,role_code text,employee_name text,gender_mfu text,date_of_birth time,other_details text)CREATE TABLE ref_locations (location_code text,location_name text,location_de...
SELECT employee_id FROM employees EXCEPT SELECT destroyed_by_employee_id FROM documents_to_be_destroyed
Who was the cast on the English (Manga UK) version if K Nishimura acted on the original Japanese?
CREATE TABLE table_2160215_1 (english___manga_uk__ VARCHAR,original_japanese VARCHAR)
SELECT english___manga_uk__ FROM table_2160215_1 WHERE original_japanese = "Kō Nishimura"
WHAT IS THE DECISION FOR NOVEMBER 28?
CREATE TABLE table_60649 ("Date" text,"Opponent" text,"Score" text,"Decision" text,"Attendance" real,"Record" text)
SELECT "Decision" FROM table_60649 WHERE "Date" = 'november 28'
What was the attendance of the w 28-13 game?
CREATE TABLE table_name_61 (attendance VARCHAR,result VARCHAR)
SELECT attendance FROM table_name_61 WHERE result = "w 28-13"
What year had cargo tonnes of 13 585?
CREATE TABLE table_name_32 (year INTEGER,cargo__tonnes_ VARCHAR)
SELECT AVG(year) FROM table_name_32 WHERE cargo__tonnes_ = "13 585"
Advisor 1121 has how many students?
CREATE TABLE Student (Advisor VARCHAR)
SELECT COUNT(*) FROM Student WHERE Advisor = 1121
What earpads does the headphone with plastic contruction and was succeeded by igrado have?
CREATE TABLE table_name_67 (earpads VARCHAR,construction VARCHAR,succeeded_by VARCHAR)
SELECT earpads FROM table_name_67 WHERE construction = "plastic" AND succeeded_by = "igrado"
What is the time/retired for brm with a grid of 13?
CREATE TABLE table_name_81 (time_retired VARCHAR,constructor VARCHAR,grid VARCHAR)
SELECT time_retired FROM table_name_81 WHERE constructor = "brm" AND grid = 13
What party's candidate was re-elected in the Louisiana 6 district?
CREATE TABLE table_18507 ("District" text,"Incumbent" text,"Party" text,"First elected" real,"Result" text,"Candidates" text)
SELECT "Party" FROM table_18507 WHERE "Result" = 'Re-elected' AND "District" = 'Louisiana 6'
What is the country that has a music writer of Angelo Francesco Lavagnino, written in 1969?
CREATE TABLE table_name_57 (country VARCHAR,music VARCHAR,year VARCHAR)
SELECT country FROM table_name_57 WHERE music = "angelo francesco lavagnino" AND year = 1969
Tell me the lowest # of bids for win percent of .667
CREATE TABLE table_name_38 (_number_of_bids INTEGER,win__percentage VARCHAR)
SELECT MIN(_number_of_bids) FROM table_name_38 WHERE win__percentage = ".667"
What is the name of the Leading scorer when the Home was the Trail blazers?
CREATE TABLE table_name_61 (leading_scorer VARCHAR,home VARCHAR)
SELECT leading_scorer FROM table_name_61 WHERE home = "trail blazers"
Name the district for matthew clay
CREATE TABLE table_28938 ("District" text,"Incumbent" text,"Party" text,"First elected" text,"Result" text,"Candidates" text)
SELECT "District" FROM table_28938 WHERE "Incumbent" = 'Matthew Clay'
what's the 54 holes where winning score is 19 (67-66-67-69=269)
CREATE TABLE table_11570261_1 (winning_score VARCHAR)
SELECT 54 AS _holes FROM table_11570261_1 WHERE winning_score = −19(67 - 66 - 67 - 69 = 269)
What discs has a region 1 release date of January 22, 2008?
CREATE TABLE table_name_90 (discs VARCHAR,region_1_release VARCHAR)
SELECT discs FROM table_name_90 WHERE region_1_release = "january 22, 2008"
Find the name of the customers who have at most two orders.
CREATE TABLE customers (customer_name VARCHAR,customer_id VARCHAR)CREATE TABLE orders (customer_id VARCHAR)
SELECT T2.customer_name FROM orders AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T2.customer_id HAVING COUNT(*) <= 2
Which railway had a loco name of Pyramus and a build date of 1911?
CREATE TABLE table_name_68 (railway VARCHAR,build_date VARCHAR,loco_name VARCHAR)
SELECT railway FROM table_name_68 WHERE build_date = 1911 AND loco_name = "pyramus"
List the name of the phone model launched in year 2002 and with the highest RAM size.
CREATE TABLE chip_model (model_name text,launch_year number,ram_mib number,rom_mib number,slots text,wifi text,bluetooth text)CREATE TABLE phone (company_name text,hardware_model_name text,accreditation_type text,accreditation_level text,date text,chip_model text,screen_mode text)CREATE TABLE screen_mode (graphics_mode...
SELECT T2.hardware_model_name FROM chip_model AS T1 JOIN phone AS T2 ON T1.model_name = T2.chip_model WHERE T1.launch_year = 2002 ORDER BY T1.ram_mib DESC LIMIT 1
Who is listed under general classification on stage 4?
CREATE TABLE table_29317 ("Stage" real,"Stage winner" text,"General classification" text,"Points classification" text,"Mountains classification" text,"Asian rider classification" text,"Team classification" text)
SELECT "General classification" FROM table_29317 WHERE "Stage" = '4'
How many solar eclipse on June 10-11, while November 3 is 153?
CREATE TABLE table_25287007_2 (june_10_11 VARCHAR,november_3 VARCHAR)
SELECT june_10_11 FROM table_25287007_2 WHERE november_3 = "153"
What are the ids and first names of customers who do not hold a credit card?
CREATE TABLE accounts (account_id number,customer_id number,account_name text,other_account_details text)CREATE TABLE customers (customer_id number,customer_first_name text,customer_last_name text,customer_address text,customer_phone text,customer_email text,other_customer_details text)CREATE TABLE financial_transactio...
SELECT customer_id, customer_first_name FROM customers EXCEPT SELECT T1.customer_id, T2.customer_first_name FROM customers_cards AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id WHERE card_type_code = "Credit"
For those employees whose salary is in the range of 8000 and 12000 and commission is not null or department number does not equal to 40, draw a bar chart about the distribution of job_id and the average of department_id , and group by attribute job_id, and could you order in descending by the x-axis?
CREATE TABLE jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN_SALARY decimal(6,0),MAX_SALARY decimal(6,0))CREATE TABLE countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAIL varchar(25),PHONE...
SELECT JOB_ID, AVG(DEPARTMENT_ID) FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40 GROUP BY JOB_ID ORDER BY JOB_ID DESC
Name the SAC classes that are offered in Summer term .
CREATE TABLE student (student_id int,lastname varchar,firstname varchar,program_id int,declare_major varchar,total_credit int,total_gpa float,entered_as varchar,admit_term int,predicted_graduation_semester int,degree varchar,minor varchar,internship varchar)CREATE TABLE ta (campus_job_id int,student_id int,location var...
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.department = 'SAC' AND semester.semester = 'Summer'
what is the top five most frequent microbiology tests that followed in the same month for patients who received packed cell transfusion during the previous year?
CREATE TABLE d_icd_procedures (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,discharge_location text,insurance text,language text,marital_status text,ethnicit...
SELECT t3.spec_type_desc FROM (SELECT t2.spec_type_desc, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, procedures_icd.charttime FROM procedures_icd JOIN admissions ON procedures_icd.hadm_id = admissions.hadm_id WHERE procedures_icd.icd9_code = (SELECT d_icd_procedures.icd9_code FR...
Which municipalities located in the county of Finnmark have populations bigger than 6187.0?
CREATE TABLE table_157826_1 (municipality VARCHAR,county VARCHAR,population VARCHAR)
SELECT municipality FROM table_157826_1 WHERE county = "Finnmark" AND population > 6187.0
What is the set 3 when the total is 78 92?
CREATE TABLE table_name_95 (set_3 VARCHAR,total VARCHAR)
SELECT set_3 FROM table_name_95 WHERE total = "78–92"
What was the Opponent before Week 11 with an Attendance of 63,571?
CREATE TABLE table_8318 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Attendance" text)
SELECT "Opponent" FROM table_8318 WHERE "Week" < '11' AND "Attendance" = '63,571'
has there been a microbiology test held this month for patient 031-3355?
CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight number,disch...
SELECT COUNT(*) > 0 FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-3355')) AND DATETIME(microlab.culturetakentime, 'start of month') = DATETI...
what ground transportation is available from the DENVER airport to downtown DENVER
CREATE TABLE time_zone (time_zone_code text,time_zone_name text,hours_from_gmt int)CREATE TABLE food_service (meal_code text,meal_number int,compartment text,meal_description varchar)CREATE TABLE state (state_code text,state_name text,country_name text)CREATE TABLE code_description (code varchar,description text)CREATE...
SELECT DISTINCT ground_service.transport_type FROM city, ground_service WHERE city.city_name = 'DENVER' AND ground_service.city_code = city.city_code
Name the successor for not filled this congress
CREATE TABLE table_25100 ("District" text,"Vacator" text,"Reason for change" text,"Successor" text,"Date successor seated" text)
SELECT "Successor" FROM table_25100 WHERE "Date successor seated" = 'Not filled this congress'
give me the number of patients whose religion is jewish and diagnoses long title is other postoperative infection?
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 lab (subject_id text,hadm_id text,itemid text,charttime tex...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.religion = "JEWISH" AND diagnoses.long_title = "Other postoperative infection"
What was the decision of the Lightning game when the Canadiens were the away team?
CREATE TABLE table_name_56 (decision VARCHAR,visitor VARCHAR)
SELECT decision FROM table_name_56 WHERE visitor = "canadiens"
What is the coin that weighs 3 g made of?
CREATE TABLE table_name_33 (composition VARCHAR,weight VARCHAR)
SELECT composition FROM table_name_33 WHERE weight = "3 g"
What team has over 1 tournament title, 0 in the regular season, and 2 total?
CREATE TABLE table_51930 ("Team" text,"Seasons" text,"Regular season" text,"Tournament" real,"Total" real)
SELECT "Team" FROM table_51930 WHERE "Tournament" > '1' AND "Regular season" = '0' AND "Total" = '2'
What is the constructor for the VII Race of Champions?
CREATE TABLE table_name_34 (constructor VARCHAR,race_name VARCHAR)
SELECT constructor FROM table_name_34 WHERE race_name = "vii race of champions"
what is the highest place when the national final is 4th and the points is less than 139?
CREATE TABLE table_name_37 (place INTEGER,national_final VARCHAR,points VARCHAR)
SELECT MAX(place) FROM table_name_37 WHERE national_final = "4th" AND points < 139
What's the average pole position for the driver that has a percentage of 44.81%?
CREATE TABLE table_name_33 (pole_positions INTEGER,percentage VARCHAR)
SELECT AVG(pole_positions) FROM table_name_33 WHERE percentage = "44.81%"
What is the highest round for College of Nebraska if the Overall is under 190?
CREATE TABLE table_71220 ("Round" real,"Pick #" real,"Overall" real,"Name" text,"Position" text,"College" text)
SELECT MAX("Round") FROM table_71220 WHERE "College" = 'nebraska' AND "Overall" < '190'
show me airlines with flights from PITTSBURGH to BOSTON please
CREATE TABLE flight_fare (flight_id int,fare_id int)CREATE TABLE flight_leg (flight_id int,leg_number int,leg_flight int)CREATE TABLE state (state_code text,state_name text,country_name text)CREATE TABLE code_description (code varchar,description text)CREATE TABLE restriction (restriction_code text,advance_purchase int...
SELECT DISTINCT airline.airline_code FROM airline, 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 = 'PITTSBURGH' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.cit...
What are the heights of perpetrators in descending order of the number of people they injured?
CREATE TABLE people (Height VARCHAR,People_ID VARCHAR)CREATE TABLE perpetrator (People_ID VARCHAR,Injured VARCHAR)
SELECT T1.Height FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Injured DESC
What heat and what lane is thi hue pham in?
CREATE TABLE table_name_25 (heat_ VARCHAR,_lane VARCHAR,name VARCHAR)
SELECT heat_ & _lane FROM table_name_25 WHERE name = "thi hue pham"
how many total where last/current driver(s) is narain karthikeyan ( 2010 )
CREATE TABLE table_22944 ("Country" text,"Total" real,"Champions" real,"Current" real,"First driver(s)" text,"Last/current driver(s)" text)
SELECT COUNT("Total") FROM table_22944 WHERE "Last/current driver(s)" = 'Narain Karthikeyan ( 2010 )'
how many times has patient 022-163354 gone to the icu a year before?
CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitsta...
SELECT COUNT(DISTINCT patient.patientunitstayid) FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '022-163354') AND DATETIME(patient.unitadmittime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year')
what procedure did patient 83894 undergo for the first time until 2 years ago?
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 number,itemid number,label text,linksto text)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE...
SELECT d_icd_procedures.short_title FROM d_icd_procedures WHERE d_icd_procedures.icd9_code IN (SELECT procedures_icd.icd9_code FROM procedures_icd WHERE procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 83894) AND DATETIME(procedures_icd.charttime) <= DATETIME(CURRENT_TI...
What's the type of the school whose students' name is spirits?
CREATE TABLE table_1973842_1 (type VARCHAR,nickname VARCHAR)
SELECT type FROM table_1973842_1 WHERE nickname = "Spirits"
What is the relationship between customer id and account id? Show me a scatter chart.
CREATE TABLE Customers_Cards (card_id INTEGER,customer_id INTEGER,card_type_code VARCHAR(15),card_number VARCHAR(80),date_valid_from DATETIME,date_valid_to DATETIME,other_card_details VARCHAR(255))CREATE TABLE Financial_Transactions (transaction_id INTEGER,previous_transaction_id INTEGER,account_id INTEGER,card_id INTE...
SELECT account_id, customer_id FROM Accounts
alphabetically , what is the last township in ellsworth county , kansas ?
CREATE TABLE table_203_729 (id number,"township" text,"fips" number,"population\ncenter" text,"population" number,"population\ndensity\n/km2 (/sq mi)" text,"land area\nkm2 (sq mi)" text,"water area\nkm2 (sq mi)" text,"water %" text,"geographic coordinates" text)
SELECT MAX("township") FROM table_203_729
has patient 69289 undergone a annuloplasty treatment in their first hospital visit?
CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type t...
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 = 'annuloplasty') AND procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 69289 AND NOT admissions.dischtime...
tom terrific and the franchise are nicknames of this same player
CREATE TABLE table_203_697 (id number,"player" text,"career" text,"nickname" text,"team inducted as" text)
SELECT "player" FROM table_203_697 WHERE "nickname" = '"tom terrific"' INTERSECT SELECT "player" FROM table_203_697 WHERE "nickname" = '"the franchise"'
Which of the two are easier , EECS 503 , or EECS 489 ?
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.number FROM course INNER JOIN program_course ON program_course.course_id = course.course_id WHERE (course.number = 503 OR course.number = 489) AND program_course.workload = (SELECT MIN(PROGRAM_COURSEalias1.workload) FROM program_course AS PROGRAM_COURSEalias1 INNER JOIN course AS COURSEalias1 ON ...
compared to second measured on the first hospital visit was the white blood cells value of patient 86786 greater than first measured on the first hospital visit?
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 (SELECT labevents.valuenum FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 86786 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime LIMIT 1) AND labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label ...
Natural change (per 1000) smaller than -1, and a Crude birth rate (per 1000) smaller than 10.5, and a Deaths of 102 400 has what highest crude death rate per 1000?
CREATE TABLE table_6690 ("Average population (x 1000)" text,"Live births" text,"Deaths" text,"Natural change" text,"Crude birth rate (per 1000)" real,"Crude death rate (per 1000)" real,"Natural change (per 1000)" real)
SELECT MAX("Crude death rate (per 1000)") FROM table_6690 WHERE "Natural change (per 1000)" < '-1' AND "Crude birth rate (per 1000)" < '10.5' AND "Deaths" = '102 400'
What is the total lane number for the United States when the mark is 6.62 and the heat is greater than 8?
CREATE TABLE table_7521 ("Heat" real,"Lane" real,"Name" text,"Country" text,"Mark" text)
SELECT COUNT("Lane") FROM table_7521 WHERE "Country" = 'united states' AND "Mark" = '6.62' AND "Heat" > '8'
How many of the patients with guillain barre syndrome as their primary disease died in or before 2164?
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 demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,la...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "GUILLAIN BARRE SYNDROME" AND demographic.dod_year <= "2164.0"
How many items withdrawn had numbers over 5?
CREATE TABLE table_name_93 (withdrawn VARCHAR,number INTEGER)
SELECT COUNT(withdrawn) FROM table_name_93 WHERE number > 5
may i have a list of flights going from BOSTON to DENVER on the 29 of 7
CREATE TABLE date_day (month_number int,day_number int,year int,day_name varchar)CREATE TABLE code_description (code varchar,description text)CREATE TABLE equipment_sequence (aircraft_code_sequence varchar,aircraft_code varchar)CREATE TABLE state (state_code text,state_name text,country_name text)CREATE TABLE dual_carr...
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 = 'DENVER' AND date_day.day_number = 29 AND date_day.month_number = 7 AND da...
Name the song choice when week number is hollywood
CREATE TABLE table_15796054_3 (song_choice VARCHAR,week__number VARCHAR)
SELECT song_choice FROM table_15796054_3 WHERE week__number = "Hollywood"
Which opponent had 73,428 in attendance?
CREATE TABLE table_name_32 (opponent VARCHAR,attendance VARCHAR)
SELECT opponent FROM table_name_32 WHERE attendance = "73,428"
What's the lowest series number that originally aired before 2009 with more than 7 episodes and had a DVD Region 2 release date of 26 july 2004?
CREATE TABLE table_45282 ("Series Number" real,"Number of Episodes" real,"Original Air Date" real,"DVD Region 2 release date" text,"DVD Region 1 release date" text)
SELECT MIN("Series Number") FROM table_45282 WHERE "Original Air Date" < '2009' AND "DVD Region 2 release date" = '26 july 2004' AND "Number of Episodes" > '7'
What was the record in the game against Memphis?
CREATE TABLE table_73459 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text)
SELECT "Record" FROM table_73459 WHERE "Team" = 'Memphis'
Name the license for 2009-05-25 v 7.61
CREATE TABLE table_19495707_1 (license VARCHAR,latest_release_date_and_version VARCHAR)
SELECT license FROM table_19495707_1 WHERE latest_release_date_and_version = "2009-05-25 v 7.61"
what was the name of the drug which patient 007-15837 was prescribed within the same hospital visit after being diagnosed with metabolic acidosis - moderate in 02/this year?
CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature number,sao2 number,heartrate number,respiration number,systemicsystolic number,syst...
SELECT t2.drugname FROM (SELECT patient.uniquepid, diagnosis.diagnosistime, patient.patienthealthsystemstayid FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid =...
What is the Date of Birth with a Block that is larger than 342?
CREATE TABLE table_42115 ("Name" text,"Date of Birth" text,"Height" real,"Weight" real,"Spike" real,"Block" real)
SELECT "Date of Birth" FROM table_42115 WHERE "Block" > '342'
what is the total number of seating for the yate town ?
CREATE TABLE table_204_750 (id number,"team" text,"stadium" text,"capacity" number,"seated" number)
SELECT "capacity" FROM table_204_750 WHERE "team" = 'yate town'
Give the id and product type of the product with the lowest price.
CREATE TABLE supplier_addresses (supplier_id number,address_id number,date_from time,date_to time)CREATE TABLE departments (department_id number,dept_store_id number,department_name text)CREATE TABLE product_suppliers (product_id number,supplier_id number,date_supplied_from time,date_supplied_to time,total_amount_purch...
SELECT product_id, product_type_code FROM products ORDER BY product_price LIMIT 1
List the positions of players whose average number of points scored by that position is larger than 20, give me a bar chart showing the number of different positions, could you show by the X-axis in desc?
CREATE TABLE competition_result (Competition_ID int,Club_ID_1 int,Club_ID_2 int,Score text)CREATE TABLE player (Player_ID int,name text,Position text,Club_ID int,Apps real,Tries real,Goals text,Points real)CREATE TABLE competition (Competition_ID int,Year real,Competition_type text,Country text)CREATE TABLE club_rank (...
SELECT Position, COUNT(Position) FROM player GROUP BY Position HAVING AVG(Points) >= 20 ORDER BY Position DESC
What largest episode number's Netflix is S05E23?
CREATE TABLE table_name_23 (episode INTEGER,netflix VARCHAR)
SELECT MAX(episode) FROM table_name_23 WHERE netflix = "s05e23"
In what years, when the conference record was 63-9, was the coach Walter Meanwell?
CREATE TABLE table_33720 ("Coach" text,"Years" text,"Record" text,"Conference Record" text,"Overall Win Percentage" text)
SELECT "Years" FROM table_33720 WHERE "Coach" = 'walter meanwell' AND "Conference Record" = '63-9'
What percent of others did ogm/news count when MARTIN had 9%?
CREATE TABLE table_36879 ("Source" text,"Date" text,"MARTIN" text,"GR\u00dcNE" text,"Others" text,"Undecided" text)
SELECT "Others" FROM table_36879 WHERE "MARTIN" = '9%' AND "Source" = 'ogm/news'
how many patients are below 77 years of age and use the drug sodium fluoride (dental gel)?
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 prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.age < "77" AND prescriptions.drug = "Sodium Fluoride (Dental Gel)"
When n is 3, what are all the coaliton parties?
CREATE TABLE table_2452 ("N\u00ba" real,"Cabinet (Nickname)" text,"Took office" text,"Left office" text,"Duration" text,"Coalition parties" text,"ministers" text,"ministries" real,"King" text)
SELECT "Coalition parties" FROM table_2452 WHERE "N\u00ba" = '3'
What country did the player with the score line 73-74-72-64=283 from?
CREATE TABLE table_name_65 (country VARCHAR,score VARCHAR)
SELECT country FROM table_name_65 WHERE score = 73 - 74 - 72 - 64 = 283
Who has answered your questions most?.
CREATE TABLE Posts (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score number,ViewCount number,Body text,OwnerUserId number,OwnerDisplayName text,LastEditorUserId number,LastEditorDisplayName text,LastEditDate time,LastActivityDate time,Title text,Tags text,Ans...
SELECT answer.OwnerUserId AS "user_link", answer.OwnerUserId, COUNT(*) AS number FROM Posts AS question INNER JOIN Posts AS answer ON question.PostTypeId = 1 AND answer.PostTypeId = 2 AND question.OwnerUserId = '##userid##' AND answer.ParentId = question.Id GROUP BY answer.OwnerUserId ORDER BY number DESC
Which Game has a Nugget points of 89?
CREATE TABLE table_name_99 (game INTEGER,nuggets_points VARCHAR)
SELECT MIN(game) FROM table_name_99 WHERE nuggets_points = 89
What place is Fred Funk in?
CREATE TABLE table_name_30 (place VARCHAR,player VARCHAR)
SELECT place FROM table_name_30 WHERE player = "fred funk"
What is the highest scored in the 2010 east asian football championship?
CREATE TABLE table_name_66 (scored INTEGER,competition VARCHAR)
SELECT MAX(scored) FROM table_name_66 WHERE competition = "2010 east asian football championship"
What is every CFL team for the college of Calgary?
CREATE TABLE table_30256 ("Pick #" real,"CFL Team" text,"Player" text,"Position" text,"College" text)
SELECT "CFL Team" FROM table_30256 WHERE "College" = 'Calgary'
What team did the Montreal Canadiens visit when the record was 0-3?
CREATE TABLE table_name_3 (home VARCHAR,visitor VARCHAR,record VARCHAR)
SELECT home FROM table_name_3 WHERE visitor = "montreal canadiens" AND record = "0-3"
Date Distribution of Answer Votes Grouped by Date.
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 Votes.CreationDate, COUNT(Votes.CreationDate) FROM Votes INNER JOIN Posts ON Votes.PostId = Posts.Id WHERE Votes.PostId = 47089 GROUP BY Votes.CreationDate
proteinuria ( urine protein > 200 mg / dl ) or a creatinine > 2 mg / dl
CREATE TABLE table_train_177 ("id" int,"hemoglobin_a1c_hba1c" float,"renal_disease" bool,"diabetic" string,"creatinine_clearance_cl" float,"urine_protein" int,"proteinuria" int,"fasting_glucose" int,"NOUSE" float)
SELECT * FROM table_train_177 WHERE proteinuria = 1 OR (urine_protein > 200 OR creatinine_clearance_cl > 2)
What is the L2 cache for the processor with a 750MHz frequency?
CREATE TABLE table_name_93 (l2_cache VARCHAR,frequency VARCHAR)
SELECT l2_cache FROM table_name_93 WHERE frequency = "750mhz"
On what date is there a status of Five Nations and an against of 23?
CREATE TABLE table_61685 ("Opposing Teams" text,"Against" real,"Date" text,"Venue" text,"Status" text)
SELECT "Date" FROM table_61685 WHERE "Status" = 'five nations' AND "Against" = '23'
What did the team score while away in moorabbin oval?
CREATE TABLE table_name_30 (away_team VARCHAR,venue VARCHAR)
SELECT away_team AS score FROM table_name_30 WHERE venue = "moorabbin oval"
which person medaled , but was not from south korea ?
CREATE TABLE table_204_174 (id number,"rank" number,"name" text,"nationality" text,"result" number,"notes" text)
SELECT "name" FROM table_204_174 WHERE "rank" IS NULL AND "nationality" <> 'south korea'
when was the last year they placed 2nd ?
CREATE TABLE table_204_974 (id number,"season" number,"level" text,"division" text,"section" text,"administration" text,"position" text,"movements" text)
SELECT "season" FROM table_204_974 WHERE "position" = 2 ORDER BY "season" DESC LIMIT 1
Give me the comparison about ACC_Percent over the ACC_Regular_Season by a bar chart, and order Y-axis in asc order.
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 ACC_Regular_Season, ACC_Percent FROM basketball_match ORDER BY ACC_Percent
how many times was fabio fabiani jay ten winner ?
CREATE TABLE table_204_137 (id number,"race" number,"race name" text,"pole position" text,"fastest lap" text,"winning driver" text,"winning team" text,"yokohama winner" text,"jay-ten winner" text,"report" text)
SELECT COUNT(*) FROM table_204_137 WHERE "jay-ten winner" = 'fabio fabiani'
What is the largest caps value for Glen Moss?
CREATE TABLE table_31675 ("Player" text,"Country" text,"Caps" real,"Goals" text,"Years Active" text)
SELECT MAX("Caps") FROM table_31675 WHERE "Player" = 'glen moss'
What's the highest lowest number of capacity that ibrox stadium has when the average is larger than 49,143?
CREATE TABLE table_name_67 (lowest INTEGER,stadium VARCHAR,average VARCHAR)
SELECT MAX(lowest) FROM table_name_67 WHERE stadium = "ibrox stadium" AND average > 49 OFFSET 143
aspirin, thienopyridine, or heparin allergy;
CREATE TABLE table_test_28 ("id" int,"positive_shock_index" bool,"anemia" bool,"serum_potassium" float,"left_ventricular_ejection_fraction_lvef" int,"systolic_blood_pressure_sbp" int,"malignant_hypertension" bool,"severe_hypertension" bool,"hemoglobin_a1c_hba1c" float,"allergy_to_thienopyridine" bool,"platelets" int,"n...
SELECT * FROM table_test_28 WHERE allergy_to_aspirin = 1 OR allergy_to_thienopyridine = 1 OR allergy_to_heparin = 1
What is the sum of March, when Score is '2 - 2', and when Game is greater than 67?
CREATE TABLE table_name_56 (march INTEGER,score VARCHAR,game VARCHAR)
SELECT SUM(march) FROM table_name_56 WHERE score = "2 - 2" AND game > 67
What is the sum for the int yards that has an assts more than 3, and player Jay Alford?
CREATE TABLE table_name_81 (int_yards INTEGER,assts VARCHAR,player VARCHAR)
SELECT SUM(int_yards) FROM table_name_81 WHERE assts > 3 AND player = "jay alford"
Which Bronze has a Rank of 3, and a Silver larger than 0?
CREATE TABLE table_name_39 (bronze INTEGER,rank VARCHAR,silver VARCHAR)
SELECT MIN(bronze) FROM table_name_39 WHERE rank = 3 AND silver > 0
When the other is n/a and the psc-pc is 30% what is the date?
CREATE TABLE table_75385 ("Polling Firm" text,"Date" text,"PSD - PC" text,"UDMR" text,"Elena B\u0103sescu" text,"Others" text,"Undecided" text)
SELECT "Date" FROM table_75385 WHERE "Others" = 'n/a' AND "PSD - PC" = '30%'
how many hours have it been since the admission to the icu of patient 49176?
CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE chartevents (row_id number,subject_id number,hadm_id number,icustay_id n...
SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', icustays.intime)) FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 49176) AND icustays.outtime IS NULL