instruction
stringlengths
0
1.06k
input
stringlengths
11
5.3k
response
stringlengths
2
4.44k
count the number of patients whose religion is catholic and lab test name is monocytes?
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 lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.religion = "CATHOLIC" AND lab.label = "Monocytes"
Top 100 users list in UAE.
CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,CreationDate time,RejectionReasonId number,Comment text)CREATE TABLE Votes (Id number,Pos...
SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation FROM Users WHERE LOWER(Location) LIKE '%pakistan%' ORDER BY Reputation DESC LIMIT 100
Name the population 2010 census for population 2000 census of 920599
CREATE TABLE table_19774 ("Administrative division" text,"Area (km\u00b2)" text,"Population 2000 Census" real,"Population (2010 Census)" real,"Population density 2010 (/km\u00b2)" real)
SELECT "Population (2010 Census)" FROM table_19774 WHERE "Population 2000 Census" = '920599'
How many candidates won the election of john n. sandlin?
CREATE TABLE table_1342426_18 (candidates VARCHAR,incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1342426_18 WHERE incumbent = "John N. Sandlin"
What was the team's position in table when Danny OST was the outgoing manager?
CREATE TABLE table_27374004_4 (position_in_table VARCHAR,outgoing_manager VARCHAR)
SELECT position_in_table FROM table_27374004_4 WHERE outgoing_manager = "Danny Ost"
How many students, on average, does each college have enrolled?
CREATE TABLE tryout (pid number,cname text,ppos text,decision text)CREATE TABLE college (cname text,state text,enr number)CREATE TABLE player (pid number,pname text,ycard text,hs number)
SELECT AVG(enr) FROM college
What is the minimum 2007 USD in Kabardino-Balkaria?
CREATE TABLE table_24364690_1 (federal_subjects VARCHAR)
SELECT MIN(2007 AS __usd_) FROM table_24364690_1 WHERE federal_subjects = "Kabardino-Balkaria"
What is the lowest Wins with a Top-10 that is larger than 9?
CREATE TABLE table_43336 ("Tournament" text,"Wins" real,"Top-5" real,"Top-10" real,"Top-25" real,"Events" real,"Cuts made" real)
SELECT MIN("Wins") FROM table_43336 WHERE "Top-10" > '9'
What is the largest lap number when the time was +31.982?
CREATE TABLE table_11594 ("Rider" text,"Bike" text,"Laps" real,"Time" text,"Grid" real)
SELECT MAX("Laps") FROM table_11594 WHERE "Time" = '+31.982'
What is the name of the customer who has the most policies listed?
CREATE TABLE customers_policies (customer_id VARCHAR)CREATE TABLE customers (customer_name VARCHAR,customer_id VARCHAR)
SELECT t1.customer_name FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id GROUP BY t1.customer_name ORDER BY COUNT(*) DESC LIMIT 1
Who was the music director in 1971 for the movie Kalyani?
CREATE TABLE table_65394 ("Year" real,"Movie (in Kannada)" text,"Director" text,"Cast" text,"Music Director" text)
SELECT "Music Director" FROM table_65394 WHERE "Year" = '1971' AND "Movie (in Kannada )" = 'kalyani'
What was the host for the round in Nashville?
CREATE TABLE table_name_78 (host VARCHAR,city VARCHAR)
SELECT host FROM table_name_78 WHERE city = "nashville"
list all nonstop flights on wednesday from BALTIMORE to NEWARK before 1200
CREATE TABLE code_description (code varchar,description text)CREATE TABLE class_of_service (booking_class varchar,rank int,class_description text)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...
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 = 23 AND date_day.month_number = 4 AND date_day.year = 1991 AND days.day_name = date_day.day_name AND flight.departure_tim...
How many numbers correspond to the score in the final of 6 3, 6 4, 7 6 (13 11)?
CREATE TABLE table_3512 ("Outcome" text,"No." text,"Date" text,"Championship" text,"Surface" text,"Opponent in the final" text,"Score in the final" text)
SELECT COUNT("No.") FROM table_3512 WHERE "Score in the final" = '6–3, 6–4, 7–6 (13–11)'
What was the date of a week larger than 16?
CREATE TABLE table_46494 ("Week" real,"Date" text,"Opponent" text,"Result" text,"TV Time" text)
SELECT "Date" FROM table_46494 WHERE "Week" > '16'
How many patients' prescriptions are made by physician John Dorian?
CREATE TABLE affiliated_with (physician number,department number,primaryaffiliation boolean)CREATE TABLE patient (ssn number,name text,address text,phone text,insuranceid number,pcp number)CREATE TABLE appointment (appointmentid number,patient number,prepnurse number,physician number,start time,end time,examinationroom...
SELECT COUNT(T1.ssn) FROM patient AS T1 JOIN prescribes AS T2 ON T1.ssn = T2.patient JOIN physician AS T3 ON T2.physician = T3.employeeid WHERE T3.name = "John Dorian"
The competition located in Northampton had a resulting score of what?
CREATE TABLE table_name_75 (score VARCHAR,location VARCHAR)
SELECT score FROM table_name_75 WHERE location = "northampton"
How much did the home team st kilda score?
CREATE TABLE table_58010 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text)
SELECT "Home team score" FROM table_58010 WHERE "Home team" = 'st kilda'
What was the largest capacity when the club was F.C. Igea Virtus Barcellona?
CREATE TABLE table_name_30 (capacity INTEGER,club VARCHAR)
SELECT MAX(capacity) FROM table_name_30 WHERE club = "f.c. igea virtus barcellona"
What is the Worldwide Gross of the Film with a Rank of 16?
CREATE TABLE table_76241 ("Rank" real,"Title" text,"Studio" text,"Director" text,"Worldwide Gross" text)
SELECT "Worldwide Gross" FROM table_76241 WHERE "Rank" = '16'
Scatter chart. what is the total amount of grant money given to each organization and what is its id?
CREATE TABLE Research_Outcomes (outcome_code VARCHAR(10),outcome_description VARCHAR(255))CREATE TABLE Project_Staff (staff_id DOUBLE,project_id INTEGER,role_code VARCHAR(10),date_from DATETIME,date_to DATETIME,other_details VARCHAR(255))CREATE TABLE Projects (project_id INTEGER,organisation_id INTEGER,project_details ...
SELECT SUM(grant_amount), organisation_id FROM Grants GROUP BY organisation_id
What is the lowest amount of L in any season?
CREATE TABLE table_26695 ("Season" real,"Pl" real,"W" real,"L" real,"D" real,"Captain" text,"Most runs" text,"Most Wkts" text,"Wkt Keeper" text)
SELECT MIN("L") FROM table_26695
What is the name of the constructor for Grid 1?
CREATE TABLE table_67304 ("Driver" text,"Constructor" text,"Laps" text,"Time/Retired" text,"Grid" text)
SELECT "Constructor" FROM table_67304 WHERE "Grid" = '1'
how many patients whose discharge location is home and procedure long title is percutaneous aspiration of liver?
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 text,flag text,value_unit text,label text,fluid text)CREATE TABLE diagnoses (subject_id text,hadm_id tex...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.discharge_location = "HOME" AND procedures.long_title = "Percutaneous aspiration of liver"
Give me a pie chart to reflect the proportion of state and enr.
CREATE TABLE Player (pID numeric(5,0),pName varchar(20),yCard varchar(3),HS numeric(5,0))CREATE TABLE College (cName varchar(20),state varchar(2),enr numeric(5,0))CREATE TABLE Tryout (pID numeric(5,0),cName varchar(20),pPos varchar(8),decision varchar(3))
SELECT state, enr FROM College ORDER BY enr
Most cited papers on Parsing
CREATE TABLE field (fieldid int)CREATE TABLE writes (paperid int,authorid int)CREATE TABLE paperdataset (paperid int,datasetid int)CREATE TABLE journal (journalid int,journalname varchar)CREATE TABLE paper (paperid int,title varchar,venueid int,year int,numciting int,numcitedby int,journalid int)CREATE TABLE cite (citi...
SELECT DISTINCT cite.citedpaperid, COUNT(cite.citedpaperid) FROM cite, keyphrase, paper, paperkeyphrase WHERE keyphrase.keyphrasename = 'Parsing' AND paperkeyphrase.keyphraseid = keyphrase.keyphraseid AND paper.paperid = cite.citedpaperid AND paper.paperid = paperkeyphrase.paperid GROUP BY cite.citedpaperid ORDER BY CO...
how much is a round trip fare from INDIANAPOLIS to SEATTLE
CREATE TABLE equipment_sequence (aircraft_code_sequence varchar,aircraft_code varchar)CREATE TABLE time_zone (time_zone_code text,time_zone_name text,hours_from_gmt int)CREATE TABLE city (city_code varchar,city_name varchar,state_code varchar,country_name varchar,time_zone_code varchar)CREATE TABLE compartment_class (c...
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 CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'INDIANAPOLIS' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1...
What show that was aired on January 24, 2008 with a rating larger than 3.6 had the lowest viewers? How Many Viewers in the millions?
CREATE TABLE table_57528 ("Episode" text,"Air Date" text,"Time slot (EST)" text,"Rating" real,"Share" real,"18-49 (Rating/Share)" text,"Viewers (m)" real,"Rank (Overall)" text)
SELECT MIN("Viewers (m)") FROM table_57528 WHERE "Air Date" = 'january 24, 2008' AND "Rating" > '3.6'
What is the height for shanghai x-1 financial building?
CREATE TABLE table_name_97 (height_m___feet VARCHAR,name VARCHAR)
SELECT height_m___feet FROM table_name_97 WHERE name = "shanghai x-1 financial building"
How many sections does course ACCT-211 has?
CREATE TABLE CLASS (class_section VARCHAR,crs_code VARCHAR)
SELECT COUNT(DISTINCT class_section) FROM CLASS WHERE crs_code = 'ACCT-211'
which countries were commentated on by gordana bonetti
CREATE TABLE table_22366 ("Voting order" real,"Country" text,"Spokespersons" text,"Commentator" text,"Broadcaster" text)
SELECT "Country" FROM table_22366 WHERE "Commentator" = 'Gordana Bonetti'
Comments regarding rep.
CREATE TABLE PendingFlags (Id number,FlagTypeId number,PostId number,CreationDate time,CloseReasonTypeId number,CloseAsOffTopicReasonTypeId number,DuplicateOfQuestionId number,BelongsOnBaseHostAddress text)CREATE TABLE CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance text,...
SELECT Id, PostId AS "post_link", Text FROM Comments WHERE LOWER(Text) LIKE '% rep %' ORDER BY LENGTH(Text), Id
List the possible children per donor levels for countries where the allowed recipients is no data.
CREATE TABLE table_16175217_1 (children_per_donor VARCHAR,allowed_recipients VARCHAR)
SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = "no data"
get me the number of patients on sc route of drug administration who were diagnosed with hip joint replacement.
CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag text,admission_location text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE diagnoses.short_title = "Joint replaced hip" AND prescriptions.route = "SC"
What team drafted a player from Sweden?
CREATE TABLE table_2897457_1 (nhl_team VARCHAR,nationality VARCHAR)
SELECT nhl_team FROM table_2897457_1 WHERE nationality = "Sweden"
What is the IDOE Profile in North Manchester?
CREATE TABLE table_1984697_85 (idoe_profile VARCHAR,city___town VARCHAR)
SELECT idoe_profile FROM table_1984697_85 WHERE city___town = "North Manchester"
Show all distinct product categories along with the number of mailshots in each category in a pie chart.
CREATE TABLE Mailshot_Customers (mailshot_id INTEGER,customer_id INTEGER,outcome_code VARCHAR(15),mailshot_customer_date DATETIME)CREATE TABLE Customer_Orders (order_id INTEGER,customer_id INTEGER,order_status_code VARCHAR(15),shipping_method_code VARCHAR(15),order_placed_datetime DATETIME,order_delivered_datetime DATE...
SELECT product_category, COUNT(*) FROM Mailshot_Campaigns GROUP BY product_category
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 scatter chart about the correlation between salary and department_id .
CREATE TABLE job_history (EMPLOYEE_ID decimal(6,0),START_DATE date,END_DATE date,JOB_ID varchar(10),DEPARTMENT_ID decimal(4,0))CREATE TABLE locations (LOCATION_ID decimal(4,0),STREET_ADDRESS varchar(40),POSTAL_CODE varchar(12),CITY varchar(30),STATE_PROVINCE varchar(25),COUNTRY_ID varchar(2))CREATE TABLE countries (COU...
SELECT SALARY, DEPARTMENT_ID FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40
How many Ranks have ray pickrell as a Rider?
CREATE TABLE table_74744 ("Rank" real,"Rider" text,"Team" text,"Speed" text,"Time" text)
SELECT COUNT("Rank") FROM table_74744 WHERE "Rider" = 'ray pickrell'
body mass index ( bmi ) between 19 and 30 kg / m2 and weigh at least 50 kg and no more than 100 kg.
CREATE TABLE table_train_100 ("id" int,"systolic_blood_pressure_sbp" int,"stroke" bool,"body_weight" float,"diastolic_blood_pressure_dbp" int,"rosen_modified_hachinski_ischemic_score" int,"body_mass_index_bmi" float,"age" float,"NOUSE" float)
SELECT * FROM table_train_100 WHERE (body_mass_index_bmi >= 19 AND body_mass_index_bmi <= 30) AND (body_weight >= 50 AND body_weight <= 100)
What is Date, when Time is '56.49'?
CREATE TABLE table_name_90 (date VARCHAR,time VARCHAR)
SELECT date FROM table_name_90 WHERE time = "56.49"
Do you know whether SLAVIC 490 is hard ?
CREATE TABLE program_course (program_id int,course_id int,workload int,category varchar)CREATE TABLE program (program_id int,name varchar,college varchar,introduction varchar)CREATE TABLE semester (semester_id int,semester varchar,year int)CREATE TABLE comment_instructor (instructor_id int,student_id int,score int,comm...
SELECT COUNT(*) > 0, program_course.workload FROM course, program_course WHERE course.department = 'SLAVIC' AND course.number = 490 AND program_course.course_id = course.course_id AND program_course.workload > 3
What Opponent played on the Date May 21?
CREATE TABLE table_6471 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Save" text)
SELECT "Opponent" FROM table_6471 WHERE "Date" = 'may 21'
rep loss -1 -> -2.
CREATE TABLE CloseReasonTypes (Id number,Name text,Description text)CREATE TABLE ReviewTaskStates (Id number,Name text,Description text)CREATE TABLE Tags (Id number,TagName text,Count number,ExcerptPostId number,WikiPostId number)CREATE TABLE PendingFlags (Id number,FlagTypeId number,PostId number,CreationDate time,Clo...
SELECT Id, DisplayName, (U.DownVotes * -2) AS Loss1, U.Reputation AS CurrentRep, (U.Reputation + U.DownVotes * -2) AS NewRep FROM Users AS U ORDER BY Loss1 LIMIT 100
Which Game is the highest one that has an Opponent of new york islanders, and a December larger than 10?
CREATE TABLE table_5419 ("Game" real,"December" real,"Opponent" text,"Score" text,"Record" text,"Points" real)
SELECT MAX("Game") FROM table_5419 WHERE "Opponent" = 'new york islanders' AND "December" > '10'
Which School/Club Team has a Round smaller than 5, a Pick larger than 1, and a Player of reggie mckenzie?
CREATE TABLE table_44235 ("Round" real,"Pick" real,"Player" text,"Position" text,"School/Club Team" text)
SELECT "School/Club Team" FROM table_44235 WHERE "Round" < '5' AND "Pick" > '1' AND "Player" = 'reggie mckenzie'
show me the number of non-hospitalized patients who had urine potassium lab test.
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 text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.days_stay > "0" AND lab.label = "Potassium, Urine"
Which Office has a Party of rep, and a Representative of brian bosma?
CREATE TABLE table_name_9 (office VARCHAR,party VARCHAR,representative VARCHAR)
SELECT office FROM table_name_9 WHERE party = "rep" AND representative = "brian bosma"
For which school/club team did the player in the position of Guard/Forward play?
CREATE TABLE table_name_35 (school_club_team VARCHAR,position VARCHAR)
SELECT school_club_team FROM table_name_35 WHERE position = "guard/forward"
What is the average number of rounds for billy hicks who had an overall pick number bigger than 310?
CREATE TABLE table_77231 ("Round" real,"Pick" real,"Overall" real,"Name" text,"Position" text,"College" text)
SELECT AVG("Round") FROM table_77231 WHERE "Overall" > '310' AND "Name" = 'billy hicks'
281 , does it have a lab ?
CREATE TABLE program_course (program_id int,course_id int,workload int,category varchar)CREATE TABLE course (course_id int,name varchar,department varchar,number varchar,credits varchar,advisory_requirement varchar,enforced_requirement varchar,description varchar,num_semesters int,num_enrolled int,has_discussion varcha...
SELECT COUNT(*) > 0 FROM course WHERE department = 'EECS' AND has_lab = 'Y' AND number = 281
Find the ids of orders whose status is 'Success'.
CREATE TABLE actual_orders (actual_order_id VARCHAR,order_status_code VARCHAR)
SELECT actual_order_id FROM actual_orders WHERE order_status_code = 'Success'
How many staffs have contacted with each engineer? Give me a bar chart grouping by each engineer's first name, and could you display by the y-axis from low to high?
CREATE TABLE Engineer_Skills (engineer_id INTEGER,skill_id INTEGER)CREATE TABLE Engineer_Visits (engineer_visit_id INTEGER,contact_staff_id INTEGER,engineer_id INTEGER,fault_log_entry_id INTEGER,fault_status VARCHAR(10),visit_start_datetime DATETIME,visit_end_datetime DATETIME,other_visit_details VARCHAR(255))CREATE TA...
SELECT first_name, COUNT(first_name) FROM Staff AS T1 JOIN Engineer_Visits AS T2 ON T1.staff_id = T2.contact_staff_id JOIN Maintenance_Engineers AS T3 ON T2.engineer_id = T3.engineer_id GROUP BY first_name ORDER BY COUNT(first_name)
in what year did he win the most titles ?
CREATE TABLE table_204_399 (id number,"outcome" text,"no." number,"year" number,"championship" text,"opponent in the final" text,"score" text)
SELECT "year" FROM table_204_399 WHERE "outcome" = 'winner' GROUP BY "year" ORDER BY COUNT(*) DESC LIMIT 1
What is the method against Bj rn Bregy?
CREATE TABLE table_name_29 (method VARCHAR,opponent VARCHAR)
SELECT method FROM table_name_29 WHERE opponent = "björn bregy"
What is the Nationality of the player who had Position of guard from School/Club Team Notre Dame?
CREATE TABLE table_51728 ("Player" text,"Nationality" text,"Position" text,"Years for Jazz" text,"School/Club Team" text)
SELECT "Nationality" FROM table_51728 WHERE "Position" = 'guard' AND "School/Club Team" = 'notre dame'
Compare the total number of trains in each name by a bar graph, sort by the total number in ascending.
CREATE TABLE railway (Railway_ID int,Railway text,Builder text,Built text,Wheels text,Location text,ObjectNumber text)CREATE TABLE manager (Manager_ID int,Name text,Country text,Working_year_starts text,Age int,Level int)CREATE TABLE railway_manage (Railway_ID int,Manager_ID int,From_Year text)CREATE TABLE train (Train...
SELECT Name, COUNT(Name) FROM train GROUP BY Name ORDER BY COUNT(Name)
Jimmie Lee Sloas was the composer for what album?
CREATE TABLE table_62359 ("Year" real,"Single" text,"CHR chart peak" real,"Album" text,"Composer(s)" text)
SELECT "Album" FROM table_62359 WHERE "Composer(s)" = 'jimmie lee sloas'
What is the country when the date shows October 24, 2008?
CREATE TABLE table_name_30 (country VARCHAR,date VARCHAR)
SELECT country FROM table_name_30 WHERE date = "october 24, 2008"
Which league has an FA cup greater than 0, with a total greater than 21?
CREATE TABLE table_name_76 (league VARCHAR,fa_cup VARCHAR,total VARCHAR)
SELECT league FROM table_name_76 WHERE fa_cup > 0 AND total > 21
What nation has a total less than 2, silver of 1 and bronze less than 1?
CREATE TABLE table_name_32 (nation VARCHAR,silver VARCHAR,total VARCHAR,bronze VARCHAR)
SELECT nation FROM table_name_32 WHERE total < 2 AND bronze < 1 AND silver = 1
What was the visiting team on october 23?
CREATE TABLE table_11095 ("Date" text,"Visiting Team" text,"Final Score" text,"Host Team" text,"Stadium" text)
SELECT "Visiting Team" FROM table_11095 WHERE "Date" = 'october 23'
Which constructor has Chuck Weyant as a driver, 45 laps, and a qual of less than 142.29?
CREATE TABLE table_name_28 (constructor VARCHAR,driver VARCHAR,laps VARCHAR,qual VARCHAR)
SELECT constructor FROM table_name_28 WHERE laps = 45 AND qual < 142.29 AND driver = "chuck weyant"
What was the TV time for the game where the Giants had 14 points?
CREATE TABLE table_43089 ("Game" real,"Date" text,"Opponent" text,"Result" text,"Giants' points" text,"Opponents' Points" text,"Record" text,"TV Time" text,"Attendance" text)
SELECT "TV Time" FROM table_43089 WHERE "Giants' points" = '14'
When bas van erp was the athlete what was the quarterfinals?
CREATE TABLE table_22496 ("Athlete" text,"Class" text,"Event" text,"Round of 64" text,"Round of 32" text,"Round of 16" text,"Quarterfinals" text,"Semifinals" text,"Final/ Bronze medal match" text)
SELECT "Quarterfinals" FROM table_22496 WHERE "Athlete" = 'Bas van Erp'
Top comments of all time.
CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)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,L...
SELECT PostId AS "post_link", Score, Text FROM Comments ORDER BY Score DESC LIMIT 250
What is the L2 cache of the microprocessor with model number pentium dual-core t3400?
CREATE TABLE table_56644 ("Model number" text,"sSpec number" text,"Frequency" text,"L2 cache" text,"Mult." text,"Voltage" text,"Socket" text,"Release date" text,"Part number(s)" text,"Release price (USD)" text)
SELECT "L2 cache" FROM table_56644 WHERE "Model number" = 'pentium dual-core t3400'
What are the notes recorded for the model HIS HD4850 (512MB)?
CREATE TABLE table_19161046_1 (notes VARCHAR,model VARCHAR)
SELECT notes FROM table_19161046_1 WHERE model = "HIS HD4850 (512MB)"
How many individuals watched the show that had a bbc ranking of 6?
CREATE TABLE table_26809 ("Episode no." real,"Airdate" text,"Viewers" text,"BBC Three weekly ranking" text,"Cable rank" text)
SELECT COUNT("Viewers") FROM table_26809 WHERE "BBC Three weekly ranking" = '6'
A bar chart about how many different locations does each school have?
CREATE TABLE ENROLL (CLASS_CODE varchar(5),STU_NUM int,ENROLL_GRADE varchar(50))CREATE TABLE DEPARTMENT (DEPT_CODE varchar(10),DEPT_NAME varchar(30),SCHOOL_CODE varchar(8),EMP_NUM int,DEPT_ADDRESS varchar(20),DEPT_EXTENSION varchar(4))CREATE TABLE COURSE (CRS_CODE varchar(10),DEPT_CODE varchar(10),CRS_DESCRIPTION varch...
SELECT SCHOOL_CODE, COUNT(DISTINCT DEPT_ADDRESS) FROM DEPARTMENT
In week 9 who were the opponent?
CREATE TABLE table_72572 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Game site" text,"Record" text,"Attendance" real)
SELECT "Opponent" FROM table_72572 WHERE "Week" = '9'
Show the race class and number of races in each class with a bar chart, and list x axis in asc order please.
CREATE TABLE track (Track_ID int,Name text,Location text,Seating real,Year_Opened real)CREATE TABLE race (Race_ID int,Name text,Class text,Date text,Track_ID text)
SELECT Class, COUNT(*) FROM race GROUP BY Class ORDER BY Class
What is the hometown of Cody Zeller?
CREATE TABLE table_name_83 (hometown VARCHAR,player VARCHAR)
SELECT hometown FROM table_name_83 WHERE player = "cody zeller"
when was patient 013-33898's heartrate less than 121.0 for the last time today?
CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE treatment (treatmentid number,patientunitstayi...
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 = '013-33898')) AND vitalperiodic.heartrate < 121.0 AN...
Tell me the lowest round for total combat 15
CREATE TABLE table_31838 ("Res." text,"Record" text,"Opponent" text,"Method" text,"Event" text,"Round" real,"Time" text,"Location" text)
SELECT MIN("Round") FROM table_31838 WHERE "Event" = 'total combat 15'
tell me the type that has the marostica to bibione course.
CREATE TABLE table_66691 ("Date" text,"Course" text,"Distance" text,"Type" text,"Winner" text)
SELECT "Type" FROM table_66691 WHERE "Course" = 'marostica to bibione'
Bar chart of sum amount payment from each payment method code, and could you sort in asc by the Y?
CREATE TABLE Settlements (Settlement_ID INTEGER,Claim_ID INTEGER,Date_Claim_Made DATE,Date_Claim_Settled DATE,Amount_Claimed INTEGER,Amount_Settled INTEGER,Customer_Policy_ID INTEGER)CREATE TABLE Payments (Payment_ID INTEGER,Settlement_ID INTEGER,Payment_Method_Code VARCHAR(255),Date_Payment_Made DATE,Amount_Payment IN...
SELECT Payment_Method_Code, SUM(Amount_Payment) FROM Payments GROUP BY Payment_Method_Code ORDER BY SUM(Amount_Payment)
How many players are injured in each day? Show a bar chart, and I want to order from high to low by the x-axis.
CREATE TABLE injury_accident (game_id int,id int,Player text,Injury text,Number_of_matches text,Source text)CREATE TABLE stadium (id int,name text,Home_Games int,Average_Attendance real,Total_Attendance real,Capacity_Percentage real)CREATE TABLE game (stadium_id int,id int,Season int,Date text,Home_team text,Away_team ...
SELECT Date, COUNT(Date) FROM game AS T1 JOIN injury_accident AS T2 ON T1.id = T2.game_id GROUP BY Date ORDER BY Date DESC
Bar chart x axis event details y axis how many event details, and I want to sort by the X-axis in descending.
CREATE TABLE Events (Event_ID INTEGER,Service_ID INTEGER,Event_Details VARCHAR(255))CREATE TABLE Participants_in_Events (Event_ID INTEGER,Participant_ID INTEGER)CREATE TABLE Participants (Participant_ID INTEGER,Participant_Type_Code CHAR(15),Participant_Details VARCHAR(255))CREATE TABLE Services (Service_ID INTEGER,Ser...
SELECT Event_Details, COUNT(Event_Details) FROM Events GROUP BY Event_Details ORDER BY Event_Details DESC
tell me the age and religious background of patient with patient id 1121.
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 demographic.age, demographic.religion FROM demographic WHERE demographic.subject_id = "1121"
What are the characters of actors in descending order of age?
CREATE TABLE actor (actor_id number,name text,musical_id number,character text,duration text,age number)CREATE TABLE musical (musical_id number,name text,year number,award text,category text,nominee text,result text)
SELECT character FROM actor ORDER BY age DESC
Name the player for new orleans saints
CREATE TABLE table_2508633_2 (player VARCHAR,nfl_team VARCHAR)
SELECT player FROM table_2508633_2 WHERE nfl_team = "New Orleans Saints"
What's the total number of directors whose episodes have been seen by 9.14 million viewers?
CREATE TABLE table_17870 ("#" real,"Episode" text,"Writer" text,"Director" text,"Viewers(millions)" text,"Original airdate" text)
SELECT COUNT("Director") FROM table_17870 WHERE "Viewers(millions)" = '9.14'
What is the magnitude with epicenter at Vrancea County, unknown intensity and which happened at 06:36?
CREATE TABLE table_name_67 (magnitude VARCHAR,time__utc_ VARCHAR,epicenter VARCHAR,intensity VARCHAR)
SELECT magnitude FROM table_name_67 WHERE epicenter = "vrancea county" AND intensity = "unknown" AND time__utc_ = "06:36"
are rolled wafers in many episodes
CREATE TABLE table_15187735_17 (series_ep VARCHAR,segment_a VARCHAR)
SELECT series_ep FROM table_15187735_17 WHERE segment_a = "Rolled Wafers"
provide me with the number of patients younger than 36 years who are diagnosed with hypotension of hemodialysis.
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 demographic (subject_id text,hadm_id text,name text,marital...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.age < "36" AND diagnoses.long_title = "Hypotension of hemodialysis"
Tell me the competition that happened on 14 june 2008
CREATE TABLE table_name_54 (competition VARCHAR,date VARCHAR)
SELECT competition FROM table_name_54 WHERE date = "14 june 2008"
how many patients until 2102 were staying in the careunit ccu?
CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type text,event_id number,chargetime time,cost number)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)CREATE TABLE procedures_icd (row_id n...
SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE admissions.hadm_id IN (SELECT transfers.hadm_id FROM transfers WHERE transfers.careunit = 'ccu' AND STRFTIME('%y', transfers.intime) <= '2102')
yes i'm looking for a flight between OAKLAND and BOSTON with a stopover in DALLAS FORT WORTH do you have one of those
CREATE TABLE equipment_sequence (aircraft_code_sequence varchar,aircraft_code varchar)CREATE TABLE restriction (restriction_code text,advance_purchase int,stopovers text,saturday_stay_required text,minimum_stay int,maximum_stay int,application text,no_discounts text)CREATE TABLE code_description (code varchar,descripti...
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, airport_service AS AIRPORT_SERVICE_2, airport_service AS AIRPORT_SERVICE_3, city AS CITY_0, city AS CITY_1, city AS CITY_2, city AS CITY_3, flight, flight_stop AS FLIGHT_STOP_0, flight_stop AS FLIGHT_STOP_1...
Which venue did the runner have a note of 1:23:07?
CREATE TABLE table_48004 ("Year" real,"Competition" text,"Venue" text,"Position" text,"Event" text,"Notes" text)
SELECT "Venue" FROM table_48004 WHERE "Notes" = '1:23:07'
Name the score for philadelphia flyers
CREATE TABLE table_16864968_9 (score VARCHAR,opponent VARCHAR)
SELECT score FROM table_16864968_9 WHERE opponent = "Philadelphia Flyers"
in which class is the position forward
CREATE TABLE table_19897896_7 (class VARCHAR,position VARCHAR)
SELECT class FROM table_19897896_7 WHERE position = "Forward"
Name the score for san diego
CREATE TABLE table_23944006_4 (score VARCHAR,championship VARCHAR)
SELECT score FROM table_23944006_4 WHERE championship = "San Diego"
How many locations did the team play at on week 7?
CREATE TABLE table_26598 ("Week" real,"Date" text,"Opponent" text,"Location" text,"Final Score" text,"Attendance" real,"Record" text)
SELECT COUNT("Location") FROM table_26598 WHERE "Week" = '7'
how many patients whose diagnoses icd9 code is 0380?
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 diagnoses.icd9_code = "0380"
Out of total number of patients admitted in or after the year 2190, how many of them were married?
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 MAX(demographic.age) FROM demographic WHERE demographic.marital_status = "MARRIED" AND demographic.admityear >= "2190"
which district has the highest population density ?
CREATE TABLE table_200_33 (id number,"district" text,"area size\n(km2)" text,"population" text,"density\nper km2" number)
SELECT "district" FROM table_200_33 ORDER BY "density\nper km2" DESC LIMIT 1
Name the winner for london tournament
CREATE TABLE table_10647 ("Tournament" text,"Winner" text,"Runner-up" text,"Score" text,"Third Place" text)
SELECT "Winner" FROM table_10647 WHERE "Tournament" = 'london'
Which Skip has Ends Lost larger than 44, and Blank Ends of 10?
CREATE TABLE table_name_80 (skip VARCHAR,ends_lost VARCHAR,blank_ends VARCHAR)
SELECT skip FROM table_name_80 WHERE ends_lost > 44 AND blank_ends = 10
Name the marriagefor ceased to be consort of 29 september 1898
CREATE TABLE table_68309 ("Name" text,"Birth" text,"Marriage" text,"Became Consort" text,"Ceased to be Consort" text,"Spouse" text)
SELECT "Marriage" FROM table_68309 WHERE "Ceased to be Consort" = '29 september 1898'