instruction
stringlengths
0
1.06k
input
stringlengths
11
5.3k
response
stringlengths
2
4.44k
give me the number of patients whose marital status is divorced and lab test name is alkaline phosphatase?
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 procedures (subject_id text,hadm_id te...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.marital_status = "DIVORCED" AND lab.label = "Alkaline Phosphatase"
Who had the highest number of rebounds on February 14?
CREATE TABLE table_name_42 (high_rebounds VARCHAR,date VARCHAR)
SELECT high_rebounds FROM table_name_42 WHERE date = "february 14"
how many patients whose admission type is newborn and diagnoses long title is loss of weight?
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 WHERE demographic.admission_type = "NEWBORN" AND diagnoses.long_title = "Loss of weight"
has patient 73075 had any surgeries since 2103?
CREATE TABLE admissions (row_id number,subject_id number,hadm_id number,admittime time,dischtime time,admission_type text,admission_location text,discharge_location text,insurance text,language text,marital_status text,ethnicity text,age number)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,i...
SELECT COUNT(*) > 0 FROM procedures_icd WHERE procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 73075) AND STRFTIME('%y', procedures_icd.charttime) >= '2103'
How often is reprex, mcve, mwe, sscce, mvce, example used in comments on SO?.
CREATE TABLE Users (Id number,Reputation number,CreationDate time,DisplayName text,LastAccessDate time,WebsiteUrl text,Location text,AboutMe text,Views number,UpVotes number,DownVotes number,ProfileImageUrl text,EmailHash text,AccountId number)CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResu...
SELECT COUNT(sel.Id) FROM (SELECT c.Id FROM Comments AS c WHERE YEAR(c.CreationDate) >= 2019) AS sel
what is the name of drug that patient 3369 was prescribed within 2 days after being diagnosed with alcohol cirrhosis liver until 58 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 procedures_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE outputevents (row_id number,subject_id number,hadm_...
SELECT t2.drug FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions.hadm_id WHERE admissions.subject_id = 3369 AND diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'alcohol...
What is the Opponent of the game with a Score of 74-66?
CREATE TABLE table_76531 ("Date" text,"Opponent" text,"Score" text,"Result" text,"Record" text)
SELECT "Opponent" FROM table_76531 WHERE "Score" = '74-66'
A line chart shows the change of the sum of monthly_rental over date_address_to , and group by attribute date_address_to
CREATE TABLE Students (student_id INTEGER,address_id INTEGER,first_name VARCHAR(80),middle_name VARCHAR(40),last_name VARCHAR(40),cell_mobile_number VARCHAR(40),email_address VARCHAR(40),date_first_rental DATETIME,date_left_university DATETIME,other_student_details VARCHAR(255))CREATE TABLE Behavior_Incident (incident_...
SELECT date_address_to, SUM(monthly_rental) FROM Student_Addresses GROUP BY date_address_to ORDER BY monthly_rental DESC
Which Rd took place at the Indianapolis 500?
CREATE TABLE table_10706961_2 (rd VARCHAR,name VARCHAR)
SELECT rd FROM table_10706961_2 WHERE name = "Indianapolis 500"
Give me a pie chart to reflect the proportion of other_details and the sum of monthly_rental.
CREATE TABLE Student_Addresses (student_id INTEGER,address_id INTEGER,date_address_from DATETIME,date_address_to DATETIME,monthly_rental DECIMAL(19,4),other_details VARCHAR(255))CREATE TABLE Students (student_id INTEGER,address_id INTEGER,first_name VARCHAR(80),middle_name VARCHAR(40),last_name VARCHAR(40),cell_mobile_...
SELECT other_details, SUM(monthly_rental) FROM Student_Addresses GROUP BY other_details ORDER BY monthly_rental DESC
What is the weight with a cross section area of 25.3?
CREATE TABLE table_2285 ("Type" text,"Beam height (mm)" real,"Flange width (mm)" real,"Web thickness (mm)" text,"Flange thickness (mm)" text,"Weight (kg/m)" text,"Cross-section area (cm 2)" text,"Moment of inertia in torsion (J) (cm 4)" text)
SELECT "Weight (kg/m)" FROM table_2285 WHERE "Cross-section area (cm 2 )" = '25.3'
Who was the home team on April 20 against Boston?
CREATE TABLE table_name_36 (home_team VARCHAR,road_team VARCHAR,date VARCHAR)
SELECT home_team FROM table_name_36 WHERE road_team = "boston" AND date = "april 20"
what is the capital with the Voivodeship Separate city of bia ostockie?
CREATE TABLE table_57093 ("car plates (since 1937)" text,"Voivodeship Separate city" text,"Capital" text,"Area in 1000km\u00b2 (1930)" text,"Population in 1000 (1931)" text)
SELECT "Capital" FROM table_57093 WHERE "Voivodeship Separate city" = 'białostockie'
who is the character when the artist is take and the year is before 2006?
CREATE TABLE table_9574 ("Year" real,"Character" text,"Title" text,"Author" text,"Artist" text,"Imprint" text)
SELECT "Character" FROM table_9574 WHERE "Artist" = 'take' AND "Year" < '2006'
what is the discharge location and time of the patient melinda miers?
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 demographic.discharge_location, demographic.dischtime FROM demographic WHERE demographic.name = "Melinda Miers"
Who is the player with a 68-67-75=210 score?
CREATE TABLE table_12406 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text)
SELECT "Player" FROM table_12406 WHERE "Score" = '68-67-75=210'
which party/alliance has more than 300,000 votes ?
CREATE TABLE table_204_28 (id number,"election" text,"name of the party/alliance" text,"number of votes" number,"percentage" text,"seats in the parliament" number)
SELECT "name of the party/alliance" FROM table_204_28 WHERE "number of votes" > 300000
how many patients whose admission type is urgent and diagnoses short title is hemochromatos-rbc trans?
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 COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admission_type = "URGENT" AND diagnoses.short_title = "Hemochromatos-rbc trans"
What city of license has a Frequency under 107.7, and a call sign of w247aq?
CREATE TABLE table_name_52 (city_of_license VARCHAR,frequency_mhz VARCHAR,call_sign VARCHAR)
SELECT city_of_license FROM table_name_52 WHERE frequency_mhz < 107.7 AND call_sign = "w247aq"
Unanswered, uncommented and unclosed questions.
CREATE TABLE ReviewTasks (Id number,ReviewTaskTypeId number,CreationDate time,DeletionDate time,ReviewTaskStateId number,PostId number,SuggestedEditId number,CompletedByReviewTaskId number)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPostId number,...
SELECT Id AS "post_link", CreationDate, Score, ViewCount FROM Posts WHERE PostTypeId = 1 AND AnswerCount = 0 AND CommentCount = 0 AND ClosedDate IS NULL ORDER BY ViewCount
What's the average destroyed with a 1990 over 12, more than 1 damaged, 6 survivors, and a to Iran less than 4?
CREATE TABLE table_59153 ("Aircraft" text,"1990" real,"destroyed" real,"damaged" real,"to Iran" real,"survived" real)
SELECT AVG("destroyed") FROM table_59153 WHERE "1990" > '12' AND "damaged" > '1' AND "to Iran" < '4' AND "survived" = '6'
provide the number of patients with the item id 50902 and who were born before 2109.
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 lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.dob_year < "2109" AND lab.itemid = "50902"
What is team 1 in group h?
CREATE TABLE table_name_45 (team__number1 VARCHAR,round VARCHAR)
SELECT team__number1 FROM table_name_45 WHERE round = "group h"
Reputation and Percentile Rank.
CREATE TABLE ReviewTaskTypes (Id number,Name text,Description text)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE PostTags (PostId number,TagId number)CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE PostFeedback (Id number,PostId number,IsAnonymous boolean,VoteTypeId number,CreationDate time)CREATE T...
WITH Rankings AS (SELECT Id, DisplayName, Reputation, Ranking = ROW_NUMBER() OVER (ORDER BY Reputation DESC) FROM Users), Counts AS (SELECT Count = COUNT(*) FROM Users WHERE Reputation > 100) SELECT Id, DisplayName, Reputation, CAST(Ranking AS FLOAT(20, 5)) / (SELECT Count FROM Counts) AS Percentile FROM Rankings
when on the current hospital visit did patient 005-87465 receive a prescription for the first time?
CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE patient (uniquepid text,patienthealthsystemsta...
SELECT medication.drugstarttime FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '005-87465' AND patient.hospitaldischargetime IS NULL)) ORDER B...
when was patient 007-11182 for the first time prescribed a drug?
CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature number,sao2 number,heartrate number,respiration number,systemicsystolic number,systemicdiastolic number,systemicmean number,observationtime time)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,...
SELECT medication.drugstarttime FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '007-11182')) ORDER BY medication.drugstarttime LIMIT 1
how many of the patients aged below 81 were treated with drug code prismab32k25000?
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 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 prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.age < "81" AND prescriptions.formulary_drug_cd = "PRISMAB32K25000"
count the number of times sodium chloride 0.9 % iv solp had been prescribed to patient 010-37499.
CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routea...
SELECT COUNT(*) FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '010-37499')) AND medication.drugname = 'sodium chloride 0.9 % iv solp'
Who is the Player for School/Club Team Illinois?
CREATE TABLE table_40972 ("Player" text,"Nationality" text,"Position" text,"Years in Orlando" text,"School/Club Team" text)
SELECT "Player" FROM table_40972 WHERE "School/Club Team" = 'illinois'
what is the fare on 11 7 going one way from DALLAS to SAN FRANCISCO
CREATE TABLE airport_service (city_code varchar,airport_code varchar,miles_distant int,direction varchar,minutes_distant int)CREATE TABLE days (days_code varchar,day_name varchar)CREATE TABLE airline (airline_code varchar,airline_name text,note text)CREATE TABLE equipment_sequence (aircraft_code_sequence varchar,aircra...
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, date_day AS DATE_DAY_0, date_day AS DATE_DAY_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 C...
What was Jeff's finish in 2011?
CREATE TABLE table_name_35 (finish INTEGER,year VARCHAR)
SELECT SUM(finish) FROM table_name_35 WHERE year = 2011
how many patients are admitted before the year 2190 and tested in lab for abnormal status?
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 INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admityear < "2190" AND lab.flag = "abnormal"
What's the total Lost with Games that's less than 4?
CREATE TABLE table_name_23 (lost INTEGER,games INTEGER)
SELECT SUM(lost) FROM table_name_23 WHERE games < 4
what were the top three most common diagnoses for patients of the 30s since 2100?
CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE treatment (treatmentid number,patientunitstayid ...
SELECT t1.diagnosisname FROM (SELECT diagnosis.diagnosisname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM diagnosis WHERE diagnosis.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.age BETWEEN 30 AND 39) AND STRFTIME('%y', diagnosis.diagnosistime) >= '2100' GROUP BY diagnosis....
how many patients have expired after they have been diagnosed with crnry athrscl natve vssl within the same hospital visit since 2103?
CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE procedures_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,st...
SELECT COUNT(DISTINCT t2.subject_id) FROM (SELECT t1.subject_id, t1.charttime, t1.hadm_id 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 FRO...
What is the production code of the episode written by Cathryn Humphris?
CREATE TABLE table_24938621_3 (production_code VARCHAR,written_by VARCHAR)
SELECT production_code FROM table_24938621_3 WHERE written_by = "Cathryn Humphris"
How many points have @ new york islanders as the opponent, with a game greater than 35?
CREATE TABLE table_5674 ("Game" real,"December" real,"Opponent" text,"Score" text,"Record" text,"Points" real)
SELECT COUNT("Points") FROM table_5674 WHERE "Opponent" = '@ new york islanders' AND "Game" > '35'
Which Part number(s) has a L3 cache of 8 mb and a sSpec number of sr0pl(e1)?
CREATE TABLE table_name_71 (part_number_s_ VARCHAR,l3_cache VARCHAR,sspec_number VARCHAR)
SELECT part_number_s_ FROM table_name_71 WHERE l3_cache = "8 mb" AND sspec_number = "sr0pl(e1)"
who was the commentator when spokesperson was claude darget
CREATE TABLE table_22368 ("Voting order" real,"Country" text,"Spokespersons" text,"Commentator" text,"Broadcaster" text)
SELECT "Commentator" FROM table_22368 WHERE "Spokespersons" = 'Claude Darget'
amount of seasons with a winning record
CREATE TABLE table_204_32 (id number,"season" number,"division" text,"w-l" text,"finish" text,"home" text,"road" text,"gf" number,"ga" number,"coach" text,"playoffs" text,"avg attendance" number)
SELECT COUNT("season") FROM table_204_32 WHERE "w-l" > "w-l"
How many of the male patients are less than 74 years old?
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 WHERE demographic.gender = "M" AND demographic.age < "74"
what other publication was released in the same month as jean gray ?
CREATE TABLE table_204_696 (id number,"issue" number,"volume" number,"title" text,"main feature story" text,"first/early appearance story/stories" text,"release date" text)
SELECT "title" FROM table_204_696 WHERE "title" <> 'jean grey' AND "release date" = (SELECT "release date" FROM table_204_696 WHERE "title" = 'jean grey')
what is maximum days of hospital stay of patients whose primary disease is squamous cell carcinoma oral tongue/sda?
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 demographic (subject_id text,hadm_id t...
SELECT MAX(demographic.days_stay) FROM demographic WHERE demographic.diagnosis = "SQUAMOUS CELL CARCINOMA ORAL TONGUE/SDA"
i would like information information on flights from SAN FRANCISCO to DENVER on thursday morning
CREATE TABLE month (month_number int,month_name text)CREATE TABLE city (city_code varchar,city_name varchar,state_code varchar,country_name varchar,time_zone_code varchar)CREATE TABLE airline (airline_code varchar,airline_name text,note text)CREATE TABLE ground_service (city_code text,airport_code text,transport_type t...
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 = 24 AND date_day.month_number = 5 AND d...
What is the 3rd participle of the verb whose 2nd participle is band?
CREATE TABLE table_21713 ("Class" text,"Part 1" text,"Part 2" text,"Part 3" text,"Part 4" text,"Verb meaning" text)
SELECT "Part 3" FROM table_21713 WHERE "Part 2" = 'band'
What is the enrollment for the colors green & black?
CREATE TABLE table_28393 ("Institution" text,"Location" text,"Founded" real,"Type" text,"Enrollment" real,"Nickname" text,"Joined" text,"Primary Conference" text,"Colors" text)
SELECT "Enrollment" FROM table_28393 WHERE "Colors" = 'Green & Black'
The minimum average number of dancers is 34.1 how many times
CREATE TABLE table_806 ("Rank by average" real,"Competition finish" real,"Couple" text,"Total" real,"Number of dances" real,"Average" text)
SELECT MIN("Number of dances") FROM table_806 WHERE "Average" = '34.1'
Which player(s) is from South Africa?
CREATE TABLE table_48337 ("Place" text,"Player" text,"Country" text,"Score" real,"To par" text)
SELECT "Player" FROM table_48337 WHERE "Country" = 'south africa'
give me the number of patients whose age is less than 41 and lab test fluid is urine?
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 lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.age < "41" AND lab.fluid = "Urine"
For those employees who do not work in departments with managers that have ids between 100 and 200, find hire_date and the average of employee_id bin hire_date by time, and visualize them by a bar chart, I want to rank in ascending by the y-axis.
CREATE TABLE regions (REGION_ID decimal(5,0),REGION_NAME varchar(25))CREATE TABLE departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_ID decimal(4,0))CREATE TABLE job_history (EMPLOYEE_ID decimal(6,0),START_DATE date,END_DATE date,JOB_ID varchar(10),DEPARTMENT_ID decimal...
SELECT HIRE_DATE, AVG(EMPLOYEE_ID) FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY AVG(EMPLOYEE_ID)
In which Age Category is Marco Manenti?
CREATE TABLE table_33806 ("Year" real,"Name" text,"Nationality" text,"Time" text,"Age category" text)
SELECT "Age category" FROM table_33806 WHERE "Name" = 'marco manenti'
What is the result of the game with 68,436 attending?
CREATE TABLE table_name_98 (result VARCHAR,attendance VARCHAR)
SELECT result FROM table_name_98 WHERE attendance = "68,436"
My score and number of non-CW answers per tag.
CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE PostNoticeTypes (Id number,ClassId number,Name text,Body text,IsHidden boolean,Predefined boolean,PostNoticeDurationId number)CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)CREATE TABLE ReviewReje...
SELECT t.TagName, SUM(a.Score) AS "total_score", COUNT(a.Id) AS "answer_count" FROM Posts AS a INNER JOIN Posts AS q ON q.Id = a.ParentId INNER JOIN PostTags AS pt ON q.Id = pt.PostId INNER JOIN Tags AS t ON pt.TagId = t.Id WHERE (a.OwnerUserId = '##userid##') AND (a.CommunityOwnedDate IS NULL) GROUP BY t.TagName ORDER...
What GEO ID has a longitude of -102.693028?
CREATE TABLE table_64883 ("Township" text,"County" text,"Pop. (2010)" real,"Land (sqmi)" real,"Water (sqmi)" real,"Latitude" real,"Longitude" real,"GEO ID" real,"ANSI code" real)
SELECT "GEO ID" FROM table_64883 WHERE "Longitude" = '-102.693028'
What was the highest attendance of games that resulted in L 23-20?
CREATE TABLE table_name_64 (attendance INTEGER,result VARCHAR)
SELECT MAX(attendance) FROM table_name_64 WHERE result = "l 23-20"
What is the average nominated of the composition nominated by Taioseach with an Industrial and Commercial panel less than 9, an administrative panel greater than 0, a cultural and educational panel greater than 2, and a total less than 29?
CREATE TABLE table_name_99 (nominated_by_the_taoiseach INTEGER,total VARCHAR,cultural_and_educational_panel VARCHAR,industrial_and_commercial_panel VARCHAR,administrative_panel VARCHAR)
SELECT AVG(nominated_by_the_taoiseach) FROM table_name_99 WHERE industrial_and_commercial_panel < 9 AND administrative_panel > 0 AND cultural_and_educational_panel > 2 AND total < 29
How many Total matches have a Year of career, and a Points won larger than 25?
CREATE TABLE table_name_61 (total_matches INTEGER,year VARCHAR,points_won VARCHAR)
SELECT SUM(total_matches) FROM table_name_61 WHERE year = "career" AND points_won > 25
Name the scottish premier league georgios samaras
CREATE TABLE table_25363 ("R" real,"Player" text,"Scottish Premier League" real,"Scottish Cup" real,"Scottish League Cup" real,"Champions League (qualifying)" real,"Europa League" real,"Total" real)
SELECT "Scottish Premier League" FROM table_25363 WHERE "Player" = 'Georgios Samaras'
sql php injection query (phpsqlquery1).
CREATE TABLE SuggestedEdits (Id number,PostId number,CreationDate time,ApprovalDate time,RejectionDate time,OwnerUserId number,Comment text,Text text,Title text,Tags text,RevisionGUID other)CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,CreationDate time,RejectionReasonId nu...
SELECT Body FROM Posts WHERE Posts.Body LIKE '%sql%' AND Posts.Body LIKE '%php%' AND Posts.Body LIKE '%<code>%' AND (Posts.Body LIKE '%sql injectable%' OR Posts.Body LIKE '%inject%' OR Posts.Body LIKE '%injectable%') LIMIT 100
Just how big do you think 579 is ?
CREATE TABLE student_record (student_id int,course_id int,semester int,grade varchar,how varchar,transfer_source varchar,earn_credit varchar,repeat_term varchar,test_id varchar)CREATE TABLE gsi (course_offering_id int,student_id int)CREATE TABLE instructor (instructor_id int,name varchar,uniqname varchar)CREATE TABLE p...
SELECT DISTINCT num_enrolled FROM course WHERE department = 'EECS' AND number = 579
what was patient 22245's daily average value of body weight this year?
CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type text,event_id number,chargetime time,cost number)CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE transfers (row_id number,subject...
SELECT AVG(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 = 22245)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'admi...
Name the present share for australia
CREATE TABLE table_23195_5 (present_share VARCHAR,producing_nation VARCHAR)
SELECT present_share FROM table_23195_5 WHERE producing_nation = "Australia"
What year has a make & model of mci d4000n?
CREATE TABLE table_name_79 (year VARCHAR,make_ VARCHAR,_model VARCHAR)
SELECT year FROM table_name_79 WHERE make_ & _model = "mci d4000n"
intracranial bleed or intracranial hypertension during this hospital admission
CREATE TABLE table_train_7 ("id" int,"bleeding" int,"hypotension" bool,"burn_injury" int,"hypoperfusion" bool,"hypertension" bool,"age" float,"lactate" int,"NOUSE" float)
SELECT * FROM table_train_7 WHERE bleeding = 1 OR hypertension = 1
Which Capacity has a School of windlehurst school, and an Ofsted smaller than 131889?
CREATE TABLE table_8484 ("School" text,"Locality" text,"Ages" text,"Capacity" real,"Ofsted" real)
SELECT SUM("Capacity") FROM table_8484 WHERE "School" = 'windlehurst school' AND "Ofsted" < '131889'
What moving has fra as the country?
CREATE TABLE table_name_63 (moving_from VARCHAR,country VARCHAR)
SELECT moving_from FROM table_name_63 WHERE country = "fra"
What is the minimum if 40 to 44?
CREATE TABLE table_1470 ("C/W 15+" real,"Oblast\\Age" text,"15 to 17" real,"18 to 19" real,"20 to 24" real,"25 to 29" real,"30 to 34" real,"35 to 39" real,"40 to 44" real,"45 to 49" real,"50 to 54" real,"55 to 59" real,"60 to 64" real,"65 to 69" real,"70+" real)
SELECT MIN("40 to 44") FROM table_1470
A bar chart shows the distribution of password and gender_mf .
CREATE TABLE Course_Authors_and_Tutors (author_id INTEGER,author_tutor_ATB VARCHAR(3),login_name VARCHAR(40),password VARCHAR(40),personal_name VARCHAR(80),middle_name VARCHAR(80),family_name VARCHAR(80),gender_mf VARCHAR(1),address_line_1 VARCHAR(80))CREATE TABLE Courses (course_id INTEGER,author_id INTEGER,subject_id...
SELECT password, gender_mf FROM Course_Authors_and_Tutors ORDER BY personal_name
What is shintaro ishiwatari's time?
CREATE TABLE table_name_6 (time VARCHAR,opponent VARCHAR)
SELECT time FROM table_name_6 WHERE opponent = "shintaro ishiwatari"
What was the latest week with a result of l 14-3?
CREATE TABLE table_name_83 (week INTEGER,result VARCHAR)
SELECT MAX(week) FROM table_name_83 WHERE result = "l 14-3"
how many population estimate 2005 are for majene?
CREATE TABLE table_name_86 (population_estimate_2005 VARCHAR,capital VARCHAR)
SELECT COUNT(population_estimate_2005) FROM table_name_86 WHERE capital = "majene"
On what date did the Pistons play @ toronto?
CREATE TABLE table_22822559_4 (date VARCHAR,team VARCHAR)
SELECT date FROM table_22822559_4 WHERE team = "@ Toronto"
Where was match 8 played?
CREATE TABLE table_69970 ("Match" real,"Date" text,"Competition or tour" text,"Ground" text,"Opponent" text,"Score1" text)
SELECT "Ground" FROM table_69970 WHERE "Match" = '8'
give me the number of patients whose primary disease is hyperglycemia;hyponatremia and age is less than 62?
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 WHERE demographic.diagnosis = "HYPERGLYCEMIA;HYPONATREMIA" AND demographic.age < "62"
provide the number of patients whose admission type is emergency and diagnoses long title is chronic pulmonary heart disease, unspecified?
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 WHERE demographic.admission_type = "EMERGENCY" AND diagnoses.long_title = "Chronic pulmonary heart disease, unspecified"
For those records from the products and each product's manufacturer, find headquarter and the sum of code , and group by attribute headquarter, and visualize them by a bar chart, and I want to sort y axis from low to high order.
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 T2.Headquarter, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T2.Headquarter ORDER BY T1.Code
What is Champion, when Year is greater than 2007, and when Finalist is 'Asvel'?
CREATE TABLE table_name_71 (champion VARCHAR,year VARCHAR,finalist VARCHAR)
SELECT champion FROM table_name_71 WHERE year > 2007 AND finalist = "asvel"
What was the surface tye during the match with the opponent of richard fromberg?
CREATE TABLE table_9054 ("Outcome" text,"Date" real,"Championship" text,"Surface" text,"Opponent" text,"Score" text)
SELECT "Surface" FROM table_9054 WHERE "Opponent" = 'richard fromberg'
What all capacities have turbines between 50-60?
CREATE TABLE table_73953 ("Name" text,"Turbines" text,"Capacity (MW)" text,"Power (MW\u00b7hr/yr)" text,"Location (county)" text,"Year Operational" real,"Status" text)
SELECT "Capacity (MW)" FROM table_73953 WHERE "Turbines" = '50-60'
What is the date of the tournament with 5 strokes as the margin of victory?
CREATE TABLE table_name_62 (date VARCHAR,margin_of_victory VARCHAR)
SELECT date FROM table_name_62 WHERE margin_of_victory = "5 strokes"
Name the to par for score of 74-74-74-71=293
CREATE TABLE table_name_64 (to_par VARCHAR,score VARCHAR)
SELECT to_par FROM table_name_64 WHERE score = 74 - 74 - 74 - 71 = 293
When did tav rez lose?
CREATE TABLE table_77857 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" text,"Record" text)
SELECT "Date" FROM table_77857 WHERE "Loss" = 'tavárez'
What were the notes for the time 45.74?
CREATE TABLE table_71189 ("Event" text,"Time" text,"Venue" text,"Date" text,"Notes" text)
SELECT "Notes" FROM table_71189 WHERE "Time" = '45.74'
How many seasons did Barking Birmingham & Solihull Stourbridge were relegated from league?
CREATE TABLE table_26407 ("Season" text,"Name" text,"Teams" real,"Relegated to league" text,"Promoted to league" text,"Promoted from league" text,"Relegated from league" text)
SELECT COUNT("Season") FROM table_26407 WHERE "Relegated from league" = 'Barking Birmingham & Solihull Stourbridge'
Which Opponent has a February larger than 7 and Record of 37-16-4?
CREATE TABLE table_5896 ("Game" real,"February" real,"Opponent" text,"Score" text,"Record" text)
SELECT "Opponent" FROM table_5896 WHERE "February" > '7' AND "Record" = '37-16-4'
What is the percentage of La Canada Flintridge when Tujunga is 7%?
CREATE TABLE table_78543 ("Tujunga" text,"La Crescenta- Montrose" text,"Glendale" text,"La Ca\u00f1ada Flintridge" text,"Pasadena" text)
SELECT "La Ca\u00f1ada Flintridge" FROM table_78543 WHERE "Tujunga" = '7%'
have patient 61527's been prescribed docusate sodium, potassium chloride, or spironolactone in the last year?
CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)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 tex...
SELECT COUNT(*) > 0 FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 61527) AND prescriptions.drug IN ('docusate sodium', 'potassium chloride', 'spironolactone') AND DATETIME(prescriptions.startdate, 'start of year') = DATETIME(CURRENT_TIME(), 's...
Just list the resident id and details in a bar chart.
CREATE TABLE Customer_Event_Notes (Customer_Event_Note_ID INTEGER,Customer_Event_ID INTEGER,service_type_code CHAR(15),resident_id INTEGER,property_id INTEGER,date_moved_in DATETIME)CREATE TABLE Properties (property_id INTEGER,property_type_code CHAR(15),property_address VARCHAR(255),other_details VARCHAR(255))CREATE T...
SELECT other_details, resident_id FROM Residents
What are the name of rooms that cost more than the average.
CREATE TABLE rooms (roomid text,roomname text,beds number,bedtype text,maxoccupancy number,baseprice number,decor text)CREATE TABLE reservations (code number,room text,checkin text,checkout text,rate number,lastname text,firstname text,adults number,kids number)
SELECT roomname FROM rooms WHERE baseprice > (SELECT AVG(baseprice) FROM rooms)
Who is the owner of Icabad Crane?
CREATE TABLE table_name_53 (owner VARCHAR,horse_name VARCHAR)
SELECT owner FROM table_name_53 WHERE horse_name = "icabad crane"
how many total wins did the team have in 1949 ?
CREATE TABLE table_204_795 (id number,"date" text,"opponent" text,"score" text,"result" text,"location" text,"attendance" number)
SELECT COUNT(*) FROM table_204_795 WHERE "result" = 'win' AND "date" = 1949
Who is that player from South Africa who had a total score under 293?
CREATE TABLE table_name_93 (player VARCHAR,total VARCHAR,country VARCHAR)
SELECT player FROM table_name_93 WHERE total < 293 AND country = "south africa"
How many episodes were written by Alexander Woo and directed by Scott Winant?
CREATE TABLE table_26493520_1 (title VARCHAR,written_by VARCHAR,directed_by VARCHAR)
SELECT COUNT(title) FROM table_26493520_1 WHERE written_by = "Alexander Woo" AND directed_by = "Scott Winant"
What is High Rebounds, when Date is 'March 12'?
CREATE TABLE table_50540 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text)
SELECT "High rebounds" FROM table_50540 WHERE "Date" = 'march 12'
What was the record after the January 18 game?
CREATE TABLE table_name_86 (record VARCHAR,date VARCHAR)
SELECT record FROM table_name_86 WHERE date = "january 18"
Which Runner(s)-up has a Margin of victory of 1 stroke, and a Tournament of world seniors invitational?
CREATE TABLE table_35305 ("Date" text,"Tournament" text,"Winning score" text,"Margin of victory" text,"Runner(s)-up" text)
SELECT "Runner(s)-up" FROM table_35305 WHERE "Margin of victory" = '1 stroke' AND "Tournament" = 'world seniors invitational'
How many laps had a grid over 16 and a Time of +1:35.890?
CREATE TABLE table_name_79 (laps VARCHAR,grid VARCHAR,time VARCHAR)
SELECT laps FROM table_name_79 WHERE grid > 16 AND time = "+1:35.890"
Who made the comments for radio broadcast when Jan Gabrielsson made them for television broadcast?
CREATE TABLE table_30128 ("Year(s)" real,"Television commentator" text,"Dual Television commentator" text,"Radio commentator" text,"Spokesperson" text)
SELECT "Radio commentator" FROM table_30128 WHERE "Television commentator" = 'Jan Gabrielsson'
Name the brand for pick number 15
CREATE TABLE table_3557 ("Pick #" real,"Brand (to)" text,"Employee (Real name)" text,"Role(s)" text,"Brand (from)" text)
SELECT "Brand (to)" FROM table_3557 WHERE "Pick #" = '15'
How many climbers are there?
CREATE TABLE climber (Id VARCHAR)
SELECT COUNT(*) FROM climber