instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
how many seats did the independent party get ? | CREATE TABLE table_203_798 (id number,"party" text,"votes" text,"%" number,"swing" number,"seats" number,"change" number) | SELECT "seats" FROM table_203_798 WHERE "party" = 'independent' |
What is the lowest swimsuit for a contestant with an average of 9.125? | CREATE TABLE table_10367 ("State" text,"Swimsuit" real,"Interview" real,"Evening Gown" real,"Average" real) | SELECT MIN("Swimsuit") FROM table_10367 WHERE "Average" = '9.125' |
What is the To par of the T8 Place Player with a Score of 72-70-66=208? | CREATE TABLE table_name_79 (to_par VARCHAR,place VARCHAR,score VARCHAR) | SELECT to_par FROM table_name_79 WHERE place = "t8" AND score = 72 - 70 - 66 = 208 |
Which transfer window was moving from borussia dortmund? | CREATE TABLE table_70765 ("Name" text,"Country" text,"Type" text,"Moving from" text,"Transfer window" text,"Ends" real,"Transfer fee" text,"Source" text) | SELECT "Transfer window" FROM table_70765 WHERE "Moving from" = 'borussia dortmund' |
What is the Fourth place with a Year that is 1966? | CREATE TABLE table_42909 ("Year" real,"Champion" text,"Runner-up" text,"Third place" text,"Fourth place" text,"Jack Tompkins Trophy (MVP)" text) | SELECT "Fourth place" FROM table_42909 WHERE "Year" = '1966' |
What is the prize level when the Prize if Wrong is 1,000 and the question is less than 2? | CREATE TABLE table_14186 ("Question #" real,"Prize Level (in Rupees)" real,"Range (in %)" real,"Walk-Away Prize" real,"Prize If Wrong" real) | SELECT SUM("Prize Level (in Rupees)") FROM table_14186 WHERE "Prize If Wrong" = '1,000' AND "Question #" < '2' |
For all employees who have the letters D or S in their first name, show me about the distribution of hire_date and the average of employee_id bin hire_date by time in a bar chart, sort by the y axis in ascending. | CREATE TABLE regions (REGION_ID decimal(5,0),REGION_NAME varchar(25))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 decimal(2,2),MANAGER_ID decimal(6,0),DEPARTME... | SELECT HIRE_DATE, AVG(EMPLOYEE_ID) FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' ORDER BY AVG(EMPLOYEE_ID) |
Which Points have a Time/Retired of +49.222 secs? | CREATE TABLE table_46912 ("Driver" text,"Team" text,"Laps" real,"Time/Retired" text,"Grid" real,"Points" real) | SELECT MAX("Points") FROM table_46912 WHERE "Time/Retired" = '+49.222 secs' |
Which college did the player picked larger than 130 by the New York Jets go to? | CREATE TABLE table_62999 ("Pick" real,"Team" text,"Player" text,"Position" text,"College" text) | SELECT "College" FROM table_62999 WHERE "Pick" > '130' AND "Team" = 'new york jets' |
What is Nader's percentage when Obama is 44.6%? | CREATE TABLE table_20573232_1 (nader_percentage VARCHAR,obama_percentage VARCHAR) | SELECT nader_percentage FROM table_20573232_1 WHERE obama_percentage = "44.6%" |
What are the number of Ties for games with Goals Against smaller than 33? | CREATE TABLE table_name_23 (ties VARCHAR,goals_against INTEGER) | SELECT ties FROM table_name_23 WHERE goals_against < 33 |
What is the modern English phonology used in the example weg > 'way'; regn > 'rain'? | CREATE TABLE table_30353 ("Late Old English (Anglian)" text,"Early Middle English" text,"Late Middle English" text,"Early Modern English" text,"Modern English" text,"Example" text) | SELECT "Modern English" FROM table_30353 WHERE "Example" = 'weg > "way"; regn > "rain' |
What is the average salary for each job title? | CREATE TABLE locations (location_id number,street_address text,postal_code text,city text,state_province text,country_id text)CREATE TABLE employees (employee_id number,first_name text,last_name text,email text,phone_number text,hire_date time,job_id text,salary number,commission_pct number,manager_id number,department... | SELECT job_title, AVG(salary) FROM employees AS T1 JOIN jobs AS T2 ON T1.job_id = T2.job_id GROUP BY T2.job_title |
Which institutions primary conference is merged into the university of Massachusetts boston? | CREATE TABLE table_261927_2 (institution VARCHAR,primary_conference VARCHAR) | SELECT institution FROM table_261927_2 WHERE primary_conference = "Merged into the University of Massachusetts Boston" |
what 's the total limiting matitude of coast visible and coast infrared ? | CREATE TABLE table_203_279 (id number,"interferometer and observing mode" text,"waveband" text,"limiting magnitude" number,"minimum baseline (m)\n(un-projected)" number,"maximum baseline (m)" number,"approx. no. visibility measurements per year\n(measurements per night x nights used per year)" number,"max ratio of no. ... | SELECT SUM("limiting magnitude") FROM table_203_279 WHERE "interferometer and observing mode" IN ('coast visible', 'coast infrared') |
Show the number of documents in different starting date and group by starting date with a line chart. | CREATE TABLE Roles (Role_Code CHAR(15),Role_Name VARCHAR(255),Role_Description VARCHAR(255))CREATE TABLE Documents_to_be_Destroyed (Document_ID INTEGER,Destruction_Authorised_by_Employee_ID INTEGER,Destroyed_by_Employee_ID INTEGER,Planned_Destruction_Date DATETIME,Actual_Destruction_Date DATETIME,Other_Details VARCHAR(... | SELECT Date_in_Location_From, COUNT(Date_in_Location_From) FROM Document_Locations GROUP BY Date_in_Location_From |
get SATURDAY fares from WASHINGTON to MONTREAL | CREATE TABLE state (state_code text,state_name text,country_name text)CREATE TABLE code_description (code varchar,description text)CREATE TABLE airport_service (city_code varchar,airport_code varchar,miles_distant int,direction varchar,minutes_distant int)CREATE TABLE date_day (month_number int,day_number int,year 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, days AS DAYS_0, days AS DAYS_1, fare, fare_basis, flight, flight_fare WHERE (CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'MONTREAL' AND DAYS_1.day_name ... |
What is tthe lowest number on team 3g? | CREATE TABLE table_2757 ("Pos" text,"##" real,"Name" text,"Team" text,"Lap One" text,"Lap Two" text,"Lap Three" text,"Lap Four" text,"Total Time" text,"Avg. Speed" text) | SELECT MIN("##") FROM table_2757 WHERE "Team" = 'Team 3G' |
What was the location for the date 7 10 october? | CREATE TABLE table_28954 ("Rd." text,"Circuit" text,"City / State" text,"Date" text,"Championship" text,"Challenge" text,"Production" text) | SELECT "City / State" FROM table_28954 WHERE "Date" = '7–10 October' |
what procedure was last taken to patient 25696 in 2105? | 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 d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE diagnoses_icd (row_id nu... | 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 = 25696) AND STRFTIME('%y', procedures_icd.charttime) = '2105' ORDER B... |
What is the lowest decile that Ohau School has? | CREATE TABLE table_name_10 (decile INTEGER,name VARCHAR) | SELECT MIN(decile) FROM table_name_10 WHERE name = "ohau school" |
Which player has a Position of infielder, and a Hometown of atlanta, ga? | CREATE TABLE table_name_48 (player VARCHAR,position VARCHAR,hometown VARCHAR) | SELECT player FROM table_name_48 WHERE position = "infielder" AND hometown = "atlanta, ga" |
What was the largest crowd where Carlton was the away team? | CREATE TABLE table_33647 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT MAX("Crowd") FROM table_33647 WHERE "Away team" = 'carlton' |
What country is the player who earned $9,000 from? | CREATE TABLE table_8405 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text,"Money ($)" text) | SELECT "Country" FROM table_8405 WHERE "Money ($)" = '9,000' |
i would like to travel from BOSTON to DENVER | CREATE TABLE equipment_sequence (aircraft_code_sequence varchar,aircraft_code varchar)CREATE TABLE ground_service (city_code text,airport_code text,transport_type text,ground_fare int)CREATE TABLE restriction (restriction_code text,advance_purchase int,stopovers text,saturday_stay_required text,minimum_stay int,maximum... | 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 = 'BOSTON' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'DENVER'... |
find the number of american indian/alaska native patients who were born before 2134. | 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 COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.ethnicity = "AMERICAN INDIAN/ALASKA NATIVE" AND demographic.dob_year < "2134" |
what was patient 30044 first height until 71 months 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 labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE prescriptions (row_id numbe... | SELECT chartevents.valuenum FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 30044)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'admit ht'... |
Name the most cuts made with top-25 more than 4 and top 5 of 1 with wins more than 0 | CREATE TABLE table_name_61 (cuts_made INTEGER,wins VARCHAR,top_25 VARCHAR,top_5 VARCHAR) | SELECT MAX(cuts_made) FROM table_name_61 WHERE top_25 > 4 AND top_5 = 1 AND wins > 0 |
what is the total number of awards that the film won or was nominated for ? | CREATE TABLE table_203_650 (id number,"ceremony" text,"award" text,"category" text,"name" text,"outcome" text) | SELECT COUNT(*) FROM table_203_650 |
give the number of patients whose diagnosis long title is malignant neoplasm of descending colon and lab test category is hematology. | CREATE TABLE procedures (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 lab (subject_id text,hadm_id text,itemid text,charttime te... | 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 = "Malignant neoplasm of descending colon" AND lab."CATEGORY" = "Hematology" |
How many lanes have a rank greater than 8? | CREATE TABLE table_62754 ("Rank" real,"Lane" real,"Name" text,"Nationality" text,"Time" text) | SELECT SUM("Lane") FROM table_62754 WHERE "Rank" > '8' |
What position did kyle mckenzie play? | CREATE TABLE table_name_41 (position VARCHAR,name VARCHAR) | SELECT position FROM table_name_41 WHERE name = "kyle mckenzie" |
Who had the most touchdowns with more than 0 Field goals? | CREATE TABLE table_name_71 (touchdowns INTEGER,field_goals INTEGER) | SELECT MAX(touchdowns) FROM table_name_71 WHERE field_goals > 0 |
count the number of patients who were diagnosed with hyperkalemia - due to excess intake. | CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature number,sao2 number,heartrate number,respiration number,systemicsystolic number,syst... | SELECT COUNT(DISTINCT patient.uniquepid) FROM patient WHERE patient.patientunitstayid IN (SELECT diagnosis.patientunitstayid FROM diagnosis WHERE diagnosis.diagnosisname = 'hyperkalemia - due to excess intake') |
How many silvers for finland? | CREATE TABLE table_53802 ("Nation" text,"Gold" text,"Silver" text,"Bronze" text,"Total" real) | SELECT "Silver" FROM table_53802 WHERE "Nation" = 'finland' |
what was the difference in attendance between july 7 and july 8 ? | CREATE TABLE table_203_336 (id number,"#" number,"date" text,"opponent" text,"score" text,"win" text,"loss" text,"save" text,"attendance" number,"record" text) | SELECT ABS((SELECT "attendance" FROM table_203_336 WHERE "date" = 'july 7') - (SELECT "attendance" FROM table_203_336 WHERE "date" = 'july 8')) |
who directed the episode that have 14.59 million viewers | CREATE TABLE table_19417244_2 (directed_by VARCHAR,us_viewers__millions_ VARCHAR) | SELECT directed_by FROM table_19417244_2 WHERE us_viewers__millions_ = "14.59" |
Name the most wins where position is 16th | CREATE TABLE table_1708050_3 (wins INTEGER,position VARCHAR) | SELECT MAX(wins) FROM table_1708050_3 WHERE position = "16th" |
On what date did they play in Boston Garden with a record of 22-4? | CREATE TABLE table_47344 ("Game" real,"Date" text,"Opponent" text,"Score" text,"Location" text,"Record" text) | SELECT "Date" FROM table_47344 WHERE "Location" = 'boston garden' AND "Record" = '22-4' |
How many points when Bill Benson was the winner? | CREATE TABLE table_45166 ("Season" real,"Winner" text,"Team" text,"Goals" text,"Assists" text,"Points" text) | SELECT "Points" FROM table_45166 WHERE "Winner" = 'bill benson' |
What country submitted the movie the orphanage? | CREATE TABLE table_12842068_1 (submitting_country VARCHAR,film_title_used_in_nomination VARCHAR) | SELECT submitting_country FROM table_12842068_1 WHERE film_title_used_in_nomination = "The Orphanage" |
What is the lowest score that has t10 as the place, with Ireland as the country? | CREATE TABLE table_12218 ("Place" text,"Player" text,"Country" text,"Score" real,"To par" text) | SELECT MIN("Score") FROM table_12218 WHERE "Place" = 't10' AND "Country" = 'ireland' |
What is the name of the metropolitan that has a population larger than 35,082 and formed after 1897? | CREATE TABLE table_34263 ("Name" text,"Council Seat" text,"Formed" real,"Population (2010)" real,"Area" text,"Website" text) | SELECT "Name" FROM table_34263 WHERE "Population (2010)" > '35,082' AND "Formed" > '1897' |
Mike Forshaw had 0 goals and 28 points. What is his position? | CREATE TABLE table_name_74 (position VARCHAR,player VARCHAR,goals VARCHAR,points VARCHAR) | SELECT position FROM table_name_74 WHERE goals = 0 AND points = 28 AND player = "mike forshaw" |
Which team plays at Lake Oval? | CREATE TABLE table_name_39 (home_team VARCHAR,venue VARCHAR) | SELECT home_team FROM table_name_39 WHERE venue = "lake oval" |
how many athletes were faster than 12.40 seconds ? | CREATE TABLE table_203_211 (id number,"pos." number,"time" text,"athlete" text,"country" text,"venue" text,"date" text) | SELECT COUNT("athlete") FROM table_203_211 WHERE "time" < 12.40 |
what was the first ph laboratory test time patient 31482 had during this month? | 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 admissions (row_id number,subject_id number,hadm_id number,admittime time,dischtime time,admission_type text,admissi... | SELECT labevents.charttime FROM labevents WHERE labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'ph') AND labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 31482) AND DATETIME(labevents.charttime, 'start of month') = DATETIME(CURRENT_TIM... |
What is the area of the community with a census ranking of 636 of 5,008? | CREATE TABLE table_name_97 (area_km_2 INTEGER,census_ranking VARCHAR) | SELECT AVG(area_km_2) FROM table_name_97 WHERE census_ranking = "636 of 5,008" |
Who was the runner up in the konica san jose classic Tournament? | CREATE TABLE table_11975 ("Date" text,"Tournament" text,"Winning Score" text,"Margin of Victory" text,"Runner-up" text) | SELECT "Runner-up" FROM table_11975 WHERE "Tournament" = 'konica san jose classic' |
Is WRITING 303 available to me in Winter 2011 ? | CREATE TABLE requirement (requirement_id int,requirement varchar,college varchar)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,... | SELECT COUNT(*) > 0 FROM (SELECT course_id FROM student_record WHERE earn_credit = 'Y' AND student_id = 1) AS DERIVED_TABLEalias0, course AS COURSEalias0, course_offering AS COURSE_OFFERINGalias0, semester AS SEMESTERalias0 WHERE COURSEalias0.course_id = COURSE_OFFERINGalias0.course_id AND NOT COURSEalias0.course_id IN... |
What college has pick 45 | CREATE TABLE table_53530 ("Pick" real,"Player" text,"Country of origin*" text,"PBA team" text,"College" text) | SELECT "College" FROM table_53530 WHERE "Pick" = '45' |
Which Year is the highest one that has a Next Highest Spender of aarp, and a US Cham Spending of $39,805,000, and a US Cham Rank larger than 1? | CREATE TABLE table_34643 ("Year" real,"US Cham. Rank" real,"US Cham. Spending" text,"Next Highest Spender" text,"Next Highest Amount" text) | SELECT MAX("Year") FROM table_34643 WHERE "Next Highest Spender" = 'aarp' AND "US Cham. Spending" = '$39,805,000' AND "US Cham. Rank" > '1' |
how many patients have received sedative agent - propofol after the first insulin during the same hospital visit since 6 years ago? | CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE lab (labid number,patientunitstayid number,labname text,labres... | SELECT COUNT(DISTINCT t1.uniquepid) FROM (SELECT patient.uniquepid, treatment.treatmenttime, patient.patienthealthsystemstayid FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'insulin' AND DATETIME(treatment.treatmenttime) >= DATETIME(CURRENT_TIME()... |
Which races did they accumulate at least 125 points? | CREATE TABLE table_name_38 (races VARCHAR,points VARCHAR) | SELECT races FROM table_name_38 WHERE points = "125" |
count the number of patients whose discharge location is short term hospital and procedure long title is other endoscopy of small intestine? | 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 procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.discharge_location = "SHORT TERM HOSPITAL" AND procedures.long_title = "Other endoscopy of small intestine" |
How many were the viewers (in millions) of the series no. 45? | CREATE TABLE table_27847088_1 (viewers__millions_ VARCHAR,series_no VARCHAR) | SELECT viewers__millions_ FROM table_27847088_1 WHERE series_no = 45 |
What is 2009, when 2004 is 2R, and when 1993 is A? | CREATE TABLE table_name_81 (Id VARCHAR) | SELECT 2009 FROM table_name_81 WHERE 2004 = "2r" AND 1993 = "a" |
What are the first names and last names of all the guests? | CREATE TABLE apartment_facilities (apt_id number,facility_code text)CREATE TABLE apartments (apt_id number,building_id number,apt_type_code text,apt_number text,bathroom_count number,bedroom_count number,room_count text)CREATE TABLE guests (guest_id number,gender_code text,guest_first_name text,guest_last_name text,dat... | SELECT guest_first_name, guest_last_name FROM guests |
Please compare the frequency of the position of the pilots using a bar chart. | CREATE TABLE aircraft (Aircraft_ID int,Order_Year int,Manufacturer text,Model text,Fleet_Series text,Powertrain text,Fuel_Propulsion text)CREATE TABLE pilot_record (Record_ID int,Pilot_ID int,Aircraft_ID int,Date text)CREATE TABLE pilot (Pilot_ID int,Pilot_name text,Rank int,Age int,Nationality text,Position text,Join_... | SELECT Position, COUNT(Position) FROM pilot GROUP BY Position |
what were the five drugs most frequently prescribed to the male patients aged 40s in the same hospital visit after being diagnosed with pneumonia, organism nos? | CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE patients (row_id num... | SELECT t3.drug FROM (SELECT t2.drug, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, diagnoses_icd.charttime, admissions.hadm_id FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions.hadm_id WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_... |
Which Position has a Difference of 5, and a Drawn smaller than 3? | CREATE TABLE table_name_84 (position INTEGER,difference VARCHAR,drawn VARCHAR) | SELECT MIN(position) FROM table_name_84 WHERE difference = "5" AND drawn < 3 |
Which player from the 2004 CFL draft attended Wilfrid Laurier? | CREATE TABLE table_10975034_2 (player VARCHAR,college VARCHAR) | SELECT player FROM table_10975034_2 WHERE college = "Wilfrid Laurier" |
What is the smallest number of seats with INC as an election winner and BJP incumbent? | CREATE TABLE table_42361 ("State" text,"Seats (ACs)" real,"Date of Counting" text,"Incumbent" text,"Election Winner" text) | SELECT MIN("Seats (ACs)") FROM table_42361 WHERE "Election Winner" = 'inc' AND "Incumbent" = 'bjp' |
Stack bar chart of the number of type vs Nationality based on type, I want to rank the number of type in asc order. | CREATE TABLE mission (Mission_ID int,Ship_ID int,Code text,Launched_Year int,Location text,Speed_knots int,Fate text)CREATE TABLE ship (Ship_ID int,Name text,Type text,Nationality text,Tonnage int) | SELECT Type, COUNT(Type) FROM ship GROUP BY Nationality, Type ORDER BY COUNT(Type) |
what is the number of patients whose ethnicity is white and diagnoses icd9 code is 41512? | 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.ethnicity = "WHITE" AND diagnoses.icd9_code = "41512" |
what is gender and lab test abnormal status of subject id 2110? | 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 prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd t... | SELECT demographic.gender, lab.flag FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.subject_id = "2110" |
give me the number of patients whose admission year is less than 2135 and diagnoses icd9 code is 2859? | 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 WHERE demographic.admityear < "2135" AND diagnoses.icd9_code = "2859" |
how many patients were prescribed with chlorhexidine gluconate 0.12 % mouth/throat soln multidose? | 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 COUNT(DISTINCT patient.uniquepid) FROM patient WHERE patient.patientunitstayid IN (SELECT medication.patientunitstayid FROM medication WHERE medication.drugname = 'chlorhexidine gluconate 0.12 % mouth/throat soln multidose') |
count the number of patients whose age is less than 63 and drug type is base? | 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 < "63" AND prescriptions.drug_type = "BASE" |
When was republican incumbent Joseph McKenna first elected? | CREATE TABLE table_37702 ("District" text,"Incumbent" text,"Party" text,"First elected" text,"Result" text) | SELECT "First elected" FROM table_37702 WHERE "Party" = 'republican' AND "Incumbent" = 'joseph mckenna' |
What is the timeslor rank for the episode with larger than 2.9 rating, rating/share of 2.6/8 and rank for the night higher than 5? | CREATE TABLE table_57970 ("Episode" real,"Rating" real,"Share" real,"Rating/share (18-49)" text,"Rank (Timeslot)" real,"Rank (Night)" real) | SELECT AVG("Rank (Timeslot)") FROM table_57970 WHERE "Rating" > '2.9' AND "Rating/share (18-49)" = '2.6/8' AND "Rank (Night)" > '5' |
provide the number of patients whose insurance is medicare and diagnoses short title is idio periph neurpthy nos? | 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 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.insurance = "Medicare" AND diagnoses.short_title = "Idio periph neurpthy NOS" |
What's the lowest round with the opponent John Howard that had a method of Decision (unanimous)? | CREATE TABLE table_32222 ("Res." text,"Record" text,"Opponent" text,"Method" text,"Event" text,"Round" real,"Time" text,"Location" text) | SELECT MIN("Round") FROM table_32222 WHERE "Method" = 'decision (unanimous)' AND "Opponent" = 'john howard' |
What is the total for player karrie webb? | CREATE TABLE table_59209 ("Player" text,"Country" text,"Year(s) won" text,"Total" real,"To par" real) | SELECT COUNT("Total") FROM table_59209 WHERE "Player" = 'karrie webb' |
Who is the away team that played home team of Perth Wildcats? | CREATE TABLE table_name_12 (away_team VARCHAR,home_team VARCHAR) | SELECT away_team FROM table_name_12 WHERE home_team = "perth wildcats" |
WHAT IS THE PACKAGE VERSION WITH TELUS MOBILITY? | CREATE TABLE table_62085 ("Device" text,"Carrier" text,"Package Version" text,"Applications" text,"Software Platform" text) | SELECT "Package Version" FROM table_62085 WHERE "Carrier" = 'telus mobility' |
No of users who have answered a question. | CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE Badges (Id number,UserId number,Name text,Date time,Class number,TagBased boolean)CREATE TABLE CloseReasonTypes (Id number,Name text,Description text)CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,Use... | SELECT COUNT(user_posts) FROM (SELECT COUNT(*) AS user_posts FROM Posts WHERE NOT OwnerUserId IS NULL AND PostTypeId = 2 GROUP BY OwnerUserId) AS a |
count the number of patients whose admission location is clinic referral/premature and procedure icd9 code is 45? | 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.admission_location = "CLINIC REFERRAL/PREMATURE" AND procedures.icd9_code = "45" |
What is the total combined weight of players from minnetonka, mn? | CREATE TABLE table_9864 ("Name" text,"Position" text,"Height" text,"Weight" real,"Year" text,"Home Town" text) | SELECT SUM("Weight") FROM table_9864 WHERE "Home Town" = 'minnetonka, mn' |
tell me how much urine catheter patient 015-92657 has produced since 04/16/2104. | CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE lab (labid number,p... | SELECT SUM(intakeoutput.cellvaluenumeric) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '015-92657')) AND intakeoutput.celllabel = 'urine... |
how many patients below 77 years of age have undergone the procedure with short title percu endosc gastrostomy? | 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.age < "77" AND procedures.short_title = "Percu endosc gastrostomy" |
count the number of patients who have received a microbiological eye test since 2 years ago. | CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,startdate time,enddate time,drug text,dose_val_rx text,dose_unit_rx text,route text)CREATE TABLE labevents (row_id number,subject_id number,hadm_id numb... | SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE admissions.hadm_id IN (SELECT microbiologyevents.hadm_id FROM microbiologyevents WHERE microbiologyevents.spec_type_desc = 'eye' AND DATETIME(microbiologyevents.charttime) >= DATETIME(CURRENT_TIME(), '-2 year')) |
when was patient 006-227759 first tested at a laboratory until 10/2101? | 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 lab.labresulttime FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '006-227759')) AND STRFTIME('%y-%m', lab.labresulttime) <= '2101-10' ORDER BY lab.la... |
What is the low rebound total for players from Oklahoma before 1975? | CREATE TABLE table_55646 ("Player" text,"Pos." text,"From" real,"School/Country" text,"Rebs" real,"Asts" real) | SELECT MIN("Rebs") FROM table_55646 WHERE "School/Country" = 'oklahoma' AND "From" < '1975' |
Return the id of the staff whose Staff Department Assignment was earlier than that of any Clerical Staff. | CREATE TABLE suppliers (supplier_id number,supplier_name text,supplier_phone text)CREATE TABLE supplier_addresses (supplier_id number,address_id number,date_from time,date_to time)CREATE TABLE customer_orders (order_id number,customer_id number,order_status_code text,order_date time)CREATE TABLE customer_addresses (cus... | SELECT staff_id FROM staff_department_assignments WHERE date_assigned_to < (SELECT MAX(date_assigned_to) FROM staff_department_assignments WHERE job_title_code = 'Clerical Staff') |
How many overalls have a pick greater than 19, with florida as the college? | CREATE TABLE table_name_24 (overall INTEGER,pick VARCHAR,college VARCHAR) | SELECT SUM(overall) FROM table_name_24 WHERE pick > 19 AND college = "florida" |
for the last time, when they came to the hospital first time how much etomidate was prescribed to patient 18677? | CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE transfers (row_id number,subject_id number,hadm_id number,icustay_id number,eventtype text,careunit text,wardid number,intime time,outtime time)CREA... | SELECT prescriptions.dose_val_rx FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 18677 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime LIMIT 1) AND prescriptions.drug = 'etomidate' ORDER BY prescriptions.startdate DESC LIMIT 1 |
What year was Jennifer Tilly's Film of Bullets Over Broadway up in the best supporting actress category? | CREATE TABLE table_name_80 (year VARCHAR,actor VARCHAR,film VARCHAR,category VARCHAR) | SELECT year FROM table_name_80 WHERE film = "bullets over broadway" AND category = "best supporting actress" AND actor = "jennifer tilly" |
next to merritt , who was the top scorer ? | CREATE TABLE table_204_292 (id number,"no." number,"name" text,"class" number,"games" number,"minutes" number,"points" number,"2 points\n(made/attempts)" text,"2 points\n(%)" number,"3 points\n(made/attempts)" text,"3 points\n(%)" number,"free throws\n(made/attempts)" text,"free throws\n(%)" number,"rebounds offensive"... | SELECT "name" FROM table_204_292 WHERE "name" <> 'amber merritt' ORDER BY "points" DESC LIMIT 1 |
who was the tallest player drafted ? | CREATE TABLE table_204_612 (id number,"draft order\nround" number,"draft order\nchoice" number,"player" text,"position" text,"height" text,"weight" text,"college" text) | SELECT "player" FROM table_204_612 ORDER BY "height" DESC LIMIT 1 |
When did I get votes on my post. | CREATE TABLE ReviewTaskResultTypes (Id number,Name text,Description text)CREATE TABLE CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance text,MarkdownPostOwnerGuidance text,MarkdownPrivilegedUserGuidance text,MarkdownConcensusDescription text,CreationDate time,CreationModera... | SELECT CreationDate, Name, COUNT(Votes.Id) FROM Votes INNER JOIN VoteTypes ON VoteTypes.Id = Votes.VoteTypeId WHERE PostId = '##postid:int##' GROUP BY CreationDate, Name ORDER BY CreationDate, Name |
When is the next time the Pharmacotherapeutics will be offered ? | CREATE TABLE jobs (job_id int,job_title varchar,description varchar,requirement varchar,city varchar,state varchar,country varchar,zip int)CREATE TABLE program (program_id int,name varchar,college varchar,introduction varchar)CREATE TABLE requirement (requirement_id int,requirement varchar,college varchar)CREATE TABLE ... | SELECT DISTINCT semester.semester, semester.year FROM semester INNER JOIN course_offering ON semester.semester_id = course_offering.semester INNER JOIN course ON course.course_id = course_offering.course_id WHERE course.name LIKE '%Pharmacotherapeutics%' AND semester.semester_id > (SELECT SEMESTERalias1.semester_id FRO... |
What is Far Eastern College Johnny Abarrientos' Pick number? | CREATE TABLE table_name_55 (pick VARCHAR,college VARCHAR,player VARCHAR) | SELECT pick FROM table_name_55 WHERE college = "far eastern" AND player = "johnny abarrientos" |
In how many different parts was the incumbent Abraham B. Venable? | CREATE TABLE table_2668416_18 (party VARCHAR,incumbent VARCHAR) | SELECT COUNT(party) FROM table_2668416_18 WHERE incumbent = "Abraham B. Venable" |
Provide the number of patients having lab test fluid as pleural that were diagnosed with adv eff benzodiaz tranq. | 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.short_title = "Adv eff benzodiaz tranq" AND lab.fluid = "Pleural" |
Show me about the distribution of All_Neutral and School_ID in a bar chart, rank in ascending by the x-axis. | 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_Neutral, School_ID FROM basketball_match ORDER BY All_Neutral |
What is the number of appearances where the most recent final result is 1999, beat Genk 3-1? | CREATE TABLE table_19468 ("Team" text,"# appearances" real,"years (won in bold)" text,"# wins" real,"# runner-up" real,"Most recent final" text) | SELECT COUNT("# appearances") FROM table_19468 WHERE "Most recent final" = '1999, beat Genk 3-1' |
Who was the visiting team on April 6? | CREATE TABLE table_name_27 (visitor VARCHAR,date VARCHAR) | SELECT visitor FROM table_name_27 WHERE date = "april 6" |
tell me the maximum total cost of a hospital that contains pregnancy since 2104? | CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype tex... | SELECT MAX(t1.c1) FROM (SELECT SUM(cost.cost) AS c1 FROM cost WHERE cost.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.patientunitstayid IN (SELECT diagnosis.patientunitstayid FROM diagnosis WHERE diagnosis.diagnosisname = 'pregnancy')) AND STRFTIME('%y', cost.charget... |
Show different ways to get to attractions and the number of attractions that can be accessed in the corresponding way. Plot them as bar chart. | CREATE TABLE Visits (Visit_ID INTEGER,Tourist_Attraction_ID INTEGER,Tourist_ID INTEGER,Visit_Date DATETIME,Visit_Details VARCHAR(40))CREATE TABLE Tourist_Attraction_Features (Tourist_Attraction_ID INTEGER,Feature_ID INTEGER)CREATE TABLE Royal_Family (Royal_Family_ID INTEGER,Royal_Family_Details VARCHAR(255))CREATE TABL... | SELECT How_to_Get_There, COUNT(*) FROM Tourist_Attractions GROUP BY How_to_Get_There |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.