table stringlengths 33 7.14k | question stringlengths 4 1.06k | output stringlengths 2 4.44k ⌀ |
|---|---|---|
CREATE TABLE table_60188 (
"Year" real,
"Champion" text,
"Finalist" text,
"Score" text,
"Place" text
) | What is Champion, when Year is greater than 2007, and when Finalist is 'Asvel'? | SELECT "Champion" FROM table_60188 WHERE "Year" > '2007' AND "Finalist" = 'asvel' |
CREATE TABLE table_17355716_5 (
team VARCHAR,
date VARCHAR
) | Name the team where the date is november 17 | SELECT team FROM table_17355716_5 WHERE date = "November 17" |
CREATE TABLE table_name_1 (
week VARCHAR,
result VARCHAR
) | Which week was there a w 23 14 result? | SELECT week FROM table_name_1 WHERE result = "w 23–14" |
CREATE TABLE table_69007 (
"Country" text,
"2006" real,
"2005" real,
"2004" real,
"2003" real
) | What Country has a number smaller than 3 in 2004 and larger than 1 in 2005? | SELECT COUNT("2006") FROM table_69007 WHERE "2004" < '3' AND "2005" > '1' |
CREATE TABLE table_20928649_1 (
date VARCHAR,
game VARCHAR
) | What was the date of game 6? | SELECT date FROM table_20928649_1 WHERE game = 6 |
CREATE TABLE table_50357 (
"Team" text,
"Head Coach" text,
"Team Captain" text,
"Kitmaker" text,
"Shirt sponsor" text
) | Which team uses the kitmaker Saller and has Krombacher as their shirt sponsor? | SELECT "Team" FROM table_50357 WHERE "Kitmaker" = 'saller' AND "Shirt sponsor" = 'krombacher' |
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,
... | find out the status of marriage and days for which patient jerry deberry stayed in hospital. | SELECT demographic.marital_status, demographic.days_stay FROM demographic WHERE demographic.name = "Jerry Deberry" |
CREATE TABLE table_name_40 (
sack INTEGER,
player VARCHAR,
fumr VARCHAR
) | what is the total sack for mike green when fumr is less than 0? | SELECT SUM(sack) FROM table_name_40 WHERE player = "mike green" AND fumr < 0 |
CREATE TABLE Ref_Locations (
Location_Code CHAR(15),
Location_Name VARCHAR(255),
Location_Description VARCHAR(255)
)
CREATE TABLE Employees (
Employee_ID INTEGER,
Role_Code CHAR(15),
Employee_Name VARCHAR(255),
Gender_MFU CHAR(1),
Date_of_Birth DATETIME,
Other_Details VARCHAR(255)
)... | Pie. what is the code of each location and the number of documents in that location? | SELECT Location_Code, COUNT(*) FROM Document_Locations GROUP BY Location_Code |
CREATE TABLE d_labitems (
row_id number,
itemid number,
label text
)
CREATE TABLE microbiologyevents (
row_id number,
subject_id number,
hadm_id number,
charttime time,
spec_type_desc text,
org_name text
)
CREATE TABLE d_icd_procedures (
row_id number,
icd9_code text,
s... | count the number of patients who have been on contrast via ng intake in this year. | SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE admissions.hadm_id IN (SELECT icustays.hadm_id FROM icustays WHERE icustays.icustay_id IN (SELECT inputevents_cv.icustay_id FROM inputevents_cv WHERE inputevents_cv.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'contrast via ng' AN... |
CREATE TABLE producer (
pid int,
gender text,
name text,
nationality text,
birth_city text,
birth_year int
)
CREATE TABLE tv_series (
sid int,
title text,
release_year int,
num_of_seasons int,
num_of_episodes int,
title_aka text,
budget text
)
CREATE TABLE keyword (... | Find all movies about Autism | SELECT movie.title FROM keyword, movie, tags WHERE keyword.keyword = 'Autism' AND tags.kid = keyword.id AND tags.msid = movie.mid |
CREATE TABLE table_23915973_1 (
frequency VARCHAR,
callsign VARCHAR
) | What is the frequency when callsign is dxru-fm? | SELECT frequency FROM table_23915973_1 WHERE callsign = "DXRU-FM" |
CREATE TABLE allergy (
allergyid number,
patientunitstayid number,
drugname text,
allergyname text,
allergytime time
)
CREATE TABLE cost (
costid number,
uniquepid text,
patienthealthsystemstayid number,
eventtype text,
eventid number,
chargetime time,
cost number
)
CRE... | did patient 022-158213 visit the emergency room since 6 years ago? | SELECT COUNT(*) > 0 FROM patient WHERE patient.uniquepid = '022-158213' AND patient.hospitaladmitsource = 'emergency department' AND DATETIME(patient.unitadmittime) >= DATETIME(CURRENT_TIME(), '-6 year') |
CREATE TABLE schedule (
Cinema_ID int,
Film_ID int,
Date text,
Show_times_per_day int,
Price float
)
CREATE TABLE cinema (
Cinema_ID int,
Name text,
Openning_year int,
Capacity int,
Location text
)
CREATE TABLE film (
Film_ID int,
Rank_in_series int,
Number_in_seaso... | What is the number of films of each director? Return a bar chart, and could you order from high to low by the x axis? | SELECT Directed_by, COUNT(Directed_by) FROM film GROUP BY Directed_by ORDER BY Directed_by DESC |
CREATE TABLE table_2282444_1 (
t_c__ VARCHAR,
magnet VARCHAR
) | When nd 2 fe 14 b (bonded) is the magnet how many measurements of tc ( c)? | SELECT COUNT(t_c__) AS °c_ FROM table_2282444_1 WHERE magnet = "Nd 2 Fe 14 B (bonded)" |
CREATE TABLE table_15128 (
"Hindi" text,
"Romani" text,
"Domari" text,
"Lomavren" text,
"Persian" text
) | What Persian word(s) has the same meaning as the Romani word duj? | SELECT "Persian" FROM table_15128 WHERE "Romani" = 'duj' |
CREATE TABLE table_58873 (
"Rank" real,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
) | How many totals have a Gold larger than 0, and a Bronze smaller than 0? | SELECT COUNT("Total") FROM table_58873 WHERE "Gold" > '0' AND "Bronze" < '0' |
CREATE TABLE table_42520 (
"Company" text,
"Type" text,
"Principal activities" text,
"Incorporated in" text,
"Group's Equity Shareholding" text
) | What company focuses on Engine Overhaul for their principal activity? | SELECT "Company" FROM table_42520 WHERE "Principal activities" = 'engine overhaul' |
CREATE TABLE Investors (
investor_id INTEGER,
Investor_details VARCHAR(255)
)
CREATE TABLE Ref_Transaction_Types (
transaction_type_code VARCHAR(10),
transaction_type_description VARCHAR(80)
)
CREATE TABLE Sales (
sales_transaction_id INTEGER,
sales_details VARCHAR(255)
)
CREATE TABLE Transac... | Find the transaction type descriptions and dates if the share count is smaller than 10, group by transaction type, count the date of transaction, and bin the date into the weekday interval Show the result with a grouping line chart, sort date_of_transaction from low to high order. | SELECT T2.date_of_transaction, COUNT(T2.date_of_transaction) FROM Ref_Transaction_Types AS T1 JOIN Transactions AS T2 ON T1.transaction_type_code = T2.transaction_type_code WHERE T2.share_count < 10 GROUP BY transaction_type_description ORDER BY date_of_transaction |
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,... | give me the number of patients whose diagnoses icd9 code is 496 and drug type is main? | 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.icd9_code = "496" AND prescriptions.drug_type = "MAIN" |
CREATE TABLE table_name_92 (
championships INTEGER,
established VARCHAR
) | How many championships did the team or teams established in 1976 win? | SELECT SUM(championships) FROM table_name_92 WHERE established = 1976 |
CREATE TABLE table_name_26 (
away_team VARCHAR,
venue VARCHAR
) | What is the away team at corio oval? | SELECT away_team FROM table_name_26 WHERE venue = "corio oval" |
CREATE TABLE table_44830 (
"Game" text,
"Date" text,
"Team" text,
"Score" text,
"Location Attendance" text,
"Series" text
) | What is the playoffs Game number on April 26? | SELECT "Game" FROM table_44830 WHERE "Date" = 'april 26' |
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 ta (
campus_job_id int,
student_id int,
location varchar
)
CREATE TAB... | Once I take RUSSIAN 201 , what classes will I be able to take ? | SELECT DISTINCT COURSE_0.department, COURSE_0.name, COURSE_0.number FROM course AS COURSE_0 INNER JOIN course_prerequisite ON COURSE_0.course_id = course_prerequisite.course_id INNER JOIN course AS COURSE_1 ON COURSE_1.course_id = course_prerequisite.pre_course_id WHERE COURSE_1.department = 'RUSSIAN' AND COURSE_1.numb... |
CREATE TABLE table_62525 (
"Date" text,
"Name" text,
"Local Name" text,
"2012 Date" text,
"2013 Date" text
) | What is the local name for January 7, 2013? | SELECT "Local Name" FROM table_62525 WHERE "2013 Date" = 'january 7' |
CREATE TABLE Events (
Event_ID INTEGER,
Service_ID INTEGER,
Event_Details VARCHAR(255)
)
CREATE TABLE Participants (
Participant_ID INTEGER,
Participant_Type_Code CHAR(15),
Participant_Details VARCHAR(255)
)
CREATE TABLE Services (
Service_ID INTEGER,
Service_Type_Code CHAR(15)
)
CREA... | Compare the number of participants in each participant type code using a bar chart. | SELECT Participant_Type_Code, COUNT(Participant_Type_Code) FROM Participants GROUP BY Participant_Type_Code |
CREATE TABLE table_name_31 (
laps INTEGER,
grid VARCHAR
) | What is the average number of laps for a grid of 6? | SELECT AVG(laps) FROM table_name_31 WHERE grid = 6 |
CREATE TABLE Courses (
course_id INTEGER,
author_id INTEGER,
subject_id INTEGER,
course_name VARCHAR(120),
course_description VARCHAR(255)
)
CREATE TABLE Students (
student_id INTEGER,
date_of_registration DATETIME,
date_of_latest_logon DATETIME,
login_name VARCHAR(40),
password... | Give me the comparison about author_tutor_ATB over the personal_name . | SELECT personal_name, author_tutor_ATB FROM Course_Authors_and_Tutors ORDER BY personal_name |
CREATE TABLE table_name_67 (
score VARCHAR,
country VARCHAR,
place VARCHAR
) | What is the score of T5 place in the United States? | SELECT score FROM table_name_67 WHERE country = "united states" AND place = "t5" |
CREATE TABLE table_name_87 (
name VARCHAR,
rank VARCHAR,
begin_date VARCHAR
) | what name has a Rank of lieutenant colonel, and a Begin Date of 1904-02-22 22 february 1904? | SELECT name FROM table_name_87 WHERE rank = "lieutenant colonel" AND begin_date = "1904-02-22 22 february 1904" |
CREATE TABLE d_labitems (
row_id number,
itemid number,
label text
)
CREATE TABLE microbiologyevents (
row_id number,
subject_id number,
hadm_id number,
charttime time,
spec_type_desc text,
org_name text
)
CREATE TABLE cost (
row_id number,
subject_id number,
hadm_id nu... | had patient 31243 received a replace trach tube treatment since 2105? | SELECT COUNT(*) > 0 FROM procedures_icd WHERE procedures_icd.icd9_code = (SELECT d_icd_procedures.icd9_code FROM d_icd_procedures WHERE d_icd_procedures.short_title = 'replace trach tube') AND procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 31243) AND STRFTIME('%y', pr... |
CREATE TABLE table_23286223_8 (
record VARCHAR,
high_assists VARCHAR
) | What was the record at the game where Deron Williams (6) did the high assists? | SELECT record FROM table_23286223_8 WHERE high_assists = "Deron Williams (6)" |
CREATE TABLE table_32295 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) | What was the smallest crowd for a Carlton away game? | SELECT MIN("Crowd") FROM table_32295 WHERE "Away team" = 'carlton' |
CREATE TABLE table_12407 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text
) | Who is the player with a 70-68-74=212 score? | SELECT "Player" FROM table_12407 WHERE "Score" = '70-68-74=212' |
CREATE TABLE table_40552 (
"Race" text,
"Pole position" text,
"Fastest lap" text,
"Most laps led" text,
"Winning driver" text,
"Winning team" text,
"Report" text
) | What is Winning Driver, when Fastest Lap is Ryan Hunter-Reay, and when Most Laps Led is Ryan Briscoe? | SELECT "Winning driver" FROM table_40552 WHERE "Fastest lap" = 'ryan hunter-reay' AND "Most laps led" = 'ryan briscoe' |
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 l... | when was first time patient 013-866 was diagnosed in 2105 with acute pulmonary edema? | SELECT diagnosis.diagnosistime FROM diagnosis WHERE diagnosis.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '013-866')) AND diagnosis.diagnosisname = 'acute pulmonary edema' ... |
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 CLASS (
CLASS_CODE varchar(5),
CRS_CODE varchar(10),
CLASS_SECTION varchar(2),
CLASS_TIME varchar(20),
... | How many students are in each department. Visualize by bar chart. | SELECT DEPT_CODE, COUNT(*) FROM STUDENT GROUP BY DEPT_CODE |
CREATE TABLE table_name_22 (
crowd INTEGER,
venue VARCHAR
) | What is the smallest crowd at victoria park? | SELECT MIN(crowd) FROM table_name_22 WHERE venue = "victoria park" |
CREATE TABLE table_255885_1 (
municipality VARCHAR,
area__km²_ VARCHAR
) | What is the municipality that has an area of exactly 214.44 sq. km? | SELECT municipality FROM table_255885_1 WHERE area__km²_ = "214.44" |
CREATE TABLE table_34205 (
"Year" text,
"Flagship Station" text,
"Play-by-play" text,
"Color commentator(s)" text,
"Studio host" text
) | Year of 2006-07 had what studio host? | SELECT "Studio host" FROM table_34205 WHERE "Year" = '2006-07' |
CREATE TABLE table_name_99 (
bronze INTEGER,
total VARCHAR,
gold VARCHAR
) | What is the most bronze when the total is 14, and there are more than 6 gold? | SELECT MAX(bronze) FROM table_name_99 WHERE total = 14 AND gold > 6 |
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 te... | what is days of hospital stay and discharge location of subject id 17787? | SELECT demographic.days_stay, demographic.discharge_location FROM demographic WHERE demographic.subject_id = "17787" |
CREATE TABLE table_name_38 (
cpc_blend_kazakhstan INTEGER,
draugen_north_sea VARCHAR
) | What is the lowest CPC Blend Kazakhstan number when Draugen North Sea is 17? | SELECT MIN(cpc_blend_kazakhstan) FROM table_name_38 WHERE draugen_north_sea = 17 |
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 jobs (
JOB_ID varchar(10),
JOB_TITLE varchar(35),
MIN_SALARY decimal(6,0),
MAX_SALARY decimal(6,0)
)
CREATE TABLE departments (
DEP... | For those employees who did not have any job in the past, show me about the distribution of job_id and the average of salary , and group by attribute job_id in a bar chart, and rank by the total number in ascending. | SELECT JOB_ID, AVG(SALARY) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history) GROUP BY JOB_ID ORDER BY AVG(SALARY) |
CREATE TABLE train (
Train_ID int,
Train_Num text,
Name text,
From text,
Arrival text,
Railway_ID int
)
CREATE TABLE railway_manage (
Railway_ID int,
Manager_ID int,
From_Year text
)
CREATE TABLE railway (
Railway_ID int,
Railway text,
Builder text,
Built text,
... | Visualize a bar chart, the x-axis is the arrival time, and the y-axis is the total number of trains in each arrival time. | SELECT Arrival, COUNT(Arrival) FROM train GROUP BY Arrival |
CREATE TABLE table_name_26 (
Id VARCHAR
) | What is the 2007 value at the 2012 Grand Slam Tournaments? | SELECT 2007 FROM table_name_26 WHERE 2012 = "grand slam tournaments" |
CREATE TABLE table_2401326_1 (
kerry_percentage VARCHAR,
county VARCHAR
) | What percentage of the votes in Oneida did Kerry win? | SELECT kerry_percentage FROM table_2401326_1 WHERE county = "Oneida" |
CREATE TABLE table_14209455_1 (
mon_26_may VARCHAR,
fri_30_may VARCHAR
) | what time is mon may 26 and fri may 30 is 18' 28.27 122.599mph? | SELECT mon_26_may FROM table_14209455_1 WHERE fri_30_may = "18' 28.27 122.599mph" |
CREATE TABLE course_prerequisite (
pre_course_id int,
course_id int
)
CREATE TABLE program (
program_id int,
name varchar,
college varchar,
introduction varchar
)
CREATE TABLE gsi (
course_offering_id int,
student_id int
)
CREATE TABLE requirement (
requirement_id int,
require... | What are all of the courses that Lisa Neidert has ever taught or will teach ? | SELECT DISTINCT course.department, course.name, course.number FROM course, course_offering, instructor, offering_instructor WHERE course.course_id = course_offering.course_id AND instructor.name LIKE '%Lisa Neidert%' AND offering_instructor.instructor_id = instructor.instructor_id AND offering_instructor.offering_id = ... |
CREATE TABLE table_55004 (
"Year" text,
"Make & Model" text,
"Length" text,
"Engine Type" text,
"Numbers" text
) | What is the lenth of a 2003 Make & Model of nabi 35-lfw? | SELECT "Length" FROM table_55004 WHERE "Year" = '2003' AND "Make & Model" = 'nabi 35-lfw' |
CREATE TABLE table_name_3 (
cultural_and_educational_panel INTEGER,
university_of_dublin VARCHAR,
administrative_panel VARCHAR,
agricultural_panel VARCHAR
) | What is the sum of the Cultural and Educational Panels that have an Administrative Panel greater than 1, an Agricultural Panel of 11 and a University of Dublin smaller than 3? | SELECT SUM(cultural_and_educational_panel) FROM table_name_3 WHERE administrative_panel > 1 AND agricultural_panel = 11 AND university_of_dublin < 3 |
CREATE TABLE table_27293285_2 (
points_against VARCHAR,
points_for VARCHAR
) | How many points against did the club who had 353 points for have? | SELECT points_against FROM table_27293285_2 WHERE points_for = "353" |
CREATE TABLE table_11209 (
"Player" text,
"Pos." text,
"From" text,
"School/Country" text,
"Rebs" real,
"Asts" real
) | What is the school/country of the player with 337 assists? | SELECT "School/Country" FROM table_11209 WHERE "Asts" = '337' |
CREATE TABLE table_name_6 (
result VARCHAR,
competition VARCHAR,
date VARCHAR
) | WHat was the result of the friendly match that was played on october 8, 2012? | SELECT result FROM table_name_6 WHERE competition = "friendly match" AND date = "october 8, 2012" |
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,
... | number of answers per month. | SELECT CAST(TIME_TO_STR(CreationDate, '%Y-%m-%d %H:%M:%S') AS TEXT(7)) AS date, COUNT(1) AS answers FROM Posts WHERE PostTypeId = 2 GROUP BY CAST(TIME_TO_STR(CreationDate, '%Y-%m-%d %H:%M:%S') AS TEXT(7)) ORDER BY date |
CREATE TABLE table_name_83 (
career_w_l VARCHAR,
tournament VARCHAR
) | What is the value for Career W-L for the Grand Slam Tournaments? | SELECT career_w_l FROM table_name_83 WHERE tournament = "grand slam tournaments" |
CREATE TABLE table_55643 (
"Round" real,
"Grand Prix" text,
"Date" text,
"Location" text,
"Pole Position" text,
"Fastest Lap" text,
"Winning Driver" text,
"Winning Constructor" text,
"Report" text
) | Name the date for the australian grand prix. | SELECT "Date" FROM table_55643 WHERE "Grand Prix" = 'australian grand prix' |
CREATE TABLE table_54601 (
"Year" real,
"Date" text,
"Type" text,
"President" text,
"Location" text
) | What is the Location with a Year larger than 2011, and a President with herman van rompuy (2nd term), and a Date of 28 29 june, and a Type with scheduled? | SELECT "Location" FROM table_54601 WHERE "Year" > '2011' AND "President" = 'herman van rompuy (2nd term)' AND "Date" = '28–29 june' AND "Type" = 'scheduled' |
CREATE TABLE table_name_42 (
penalty VARCHAR,
team VARCHAR,
player VARCHAR
) | What is the penalty for the DET team player Andreas Lilja? | SELECT penalty FROM table_name_42 WHERE team = "det" AND player = "andreas lilja" |
CREATE TABLE cite (
citingpaperid int,
citedpaperid int
)
CREATE TABLE paper (
paperid int,
title varchar,
venueid int,
year int,
numciting int,
numcitedby int,
journalid int
)
CREATE TABLE journal (
journalid int,
journalname varchar
)
CREATE TABLE dataset (
datasetid... | Multiuser Receiver in Decision Feedback papers | SELECT DISTINCT paperkeyphrase.paperid FROM keyphrase, paperkeyphrase WHERE keyphrase.keyphrasename IN ('Multiuser Receiver', 'Decision Feedback') GROUP BY paperkeyphrase.paperid HAVING COUNT(DISTINCT keyphrase.keyphraseid) = 1 |
CREATE TABLE table_name_78 (
name VARCHAR,
snatch VARCHAR
) | Who has a Snatch of 157.0? | SELECT name FROM table_name_78 WHERE snatch = "157.0" |
CREATE TABLE CloseReasonTypes (
Id number,
Name text,
Description text
)
CREATE TABLE SuggestedEdits (
Id number,
PostId number,
CreationDate time,
ApprovalDate time,
RejectionDate time,
OwnerUserId number,
Comment text,
Text text,
Title text,
Tags text,
Revision... | Questions grouped by # of favourite votes. | SELECT FavoriteCount, COUNT(*), MIN(Id) AS "post_link" FROM Posts WHERE PostTypeId = 1 GROUP BY FavoriteCount ORDER BY FavoriteCount |
CREATE TABLE Manufacturers (
Code INTEGER,
Name VARCHAR(255),
Headquarter VARCHAR(255),
Founder VARCHAR(255),
Revenue REAL
)
CREATE TABLE Products (
Code INTEGER,
Name VARCHAR(255),
Price DECIMAL,
Manufacturer INTEGER
) | Compare the prices of each manufacturer's most expensive product with a bar chart, and could you order x-axis in descending order? | SELECT T2.Name, MAX(T1.Price) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T2.Name ORDER BY Name DESC |
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),
DEPARTMENT_ID decimal(... | 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, find hire_date and the sum of manager_id bin hire_date by weekday, and visualize them by a bar chart. | SELECT HIRE_DATE, SUM(MANAGER_ID) FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40 |
CREATE TABLE CloseAsOffTopicReasonTypes (
Id number,
IsUniversal boolean,
InputTitle text,
MarkdownInputGuidance text,
MarkdownPostOwnerGuidance text,
MarkdownPrivilegedUserGuidance text,
MarkdownConcensusDescription text,
CreationDate time,
CreationModeratorId number,
ApprovalDa... | which posts have a flag. | SELECT p.Id AS "post_link", CASE WHEN vt.Id = 15 THEN 'moderator review' WHEN vt.Id = 4 THEN 'offenisive' WHEN vt.Id = 12 THEN 'spam' END FROM Votes AS v INNER JOIN VoteTypes AS vt ON v.VoteTypeId = vt.Id INNER JOIN Posts AS p ON p.Id = v.PostId WHERE vt.Id IN (15, 4, 12) AND p.OwnerUserId = '##userid##' |
CREATE TABLE outputevents (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
charttime time,
itemid number,
value number
)
CREATE TABLE d_icd_diagnoses (
row_id number,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE d_items (
row_id... | when has patient 46590 first had the ptt minimum value during their first hospital encounter? | SELECT labevents.charttime FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 46590 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime LIMIT 1) AND labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'ptt'... |
CREATE TABLE table_3356 (
"meas. num." real,
"passed" text,
"YES votes" real,
"NO votes" real,
"% YES" text,
"Const. Amd.?" text,
"type" text,
"description" text
) | What is every entry for description when the value of %yes is 51.82%? | SELECT "description" FROM table_3356 WHERE "% YES" = '51.82%' |
CREATE TABLE weather (
zip_code VARCHAR,
max_wind_Speed_mph VARCHAR
) | For each zip code, return how many times max wind speed reached 25? | SELECT zip_code, COUNT(*) FROM weather WHERE max_wind_Speed_mph >= 25 GROUP BY zip_code |
CREATE TABLE table_name_71 (
built VARCHAR,
name VARCHAR
) | Who built the conant creek pegram truss railroad bridge? | SELECT built FROM table_name_71 WHERE name = "conant creek pegram truss railroad bridge" |
CREATE TABLE PostLinks (
Id number,
CreationDate time,
PostId number,
RelatedPostId number,
LinkTypeId number
)
CREATE TABLE PostTypes (
Id number,
Name text
)
CREATE TABLE PostNotices (
Id number,
PostId number,
PostNoticeTypeId number,
CreationDate time,
DeletionDate ... | Users' first questions by specific tag. | WITH FirstQuestions AS (SELECT * FROM Posts AS Q WHERE Q.PostTypeId = 1 AND NOT EXISTS(SELECT * FROM Posts AS P WHERE P.OwnerUserId = Q.OwnerUserId AND P.PostTypeId = 1 AND P.CreationDate < Q.CreationDate)), UserQuestions AS (SELECT U.*, (CASE WHEN Q.Tags LIKE @Pattern THEN 1 ELSE 0 END) AS "isid" FROM Users AS U INNER... |
CREATE TABLE ship (
ship_id number,
name text,
type text,
built_year number,
class text,
flag text
)
CREATE TABLE captain (
captain_id number,
name text,
ship_id number,
age text,
class text,
rank text
) | Give the classes that have more than two captains. | SELECT class FROM captain GROUP BY class HAVING COUNT(*) > 2 |
CREATE TABLE table_1874 (
"Species" text,
"Common name" text,
"Trinidad" text,
"Tobago" text,
"Bocas Is." text,
"Other" text
) | are in tobago species liophis cobellus cobellus? | SELECT "Tobago" FROM table_1874 WHERE "Species" = 'Liophis cobellus cobellus' |
CREATE TABLE table_1067441_1 (
_in_€_ VARCHAR,
gdp_per_cap__2003 INTEGER,
province VARCHAR
) | What is Friesland's gdp per capita? | SELECT MIN(gdp_per_cap__2003), _in_€_ FROM table_1067441_1 WHERE province = "Friesland" |
CREATE TABLE table_name_64 (
winning_score VARCHAR,
runner_s__up VARCHAR
) | What winning score has in-kyung kim as the runner(s)-up? | SELECT winning_score FROM table_name_64 WHERE runner_s__up = "in-kyung kim" |
CREATE TABLE comment_instructor (
instructor_id int,
student_id int,
score int,
comment_text varchar
)
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... | What are some classes that are upper-level offering 8 credits . | SELECT DISTINCT course.department, course.name, course.number FROM course INNER JOIN program_course ON program_course.course_id = course.course_id WHERE course.credits = 8 AND program_course.category LIKE 'ULCS' |
CREATE TABLE table_58794 (
"Name" text,
"Tournaments" real,
"Pro Debut" text,
"Top division debut" text,
"Highest rank" text
) | What is Pro Debut, when Tournament is greater than 11, and when Highest Rank is 'Maegashira 1'? | SELECT "Pro Debut" FROM table_58794 WHERE "Tournaments" > '11' AND "Highest rank" = 'maegashira 1' |
CREATE TABLE grapes (
id number,
grape text,
color text
)
CREATE TABLE appellations (
no number,
appelation text,
county text,
state text,
area text,
isava text
)
CREATE TABLE wine (
no number,
grape text,
winery text,
appelation text,
state text,
name text,... | How many wines are produced at Robert Biale winery? | SELECT COUNT(*) FROM wine WHERE winery = "Robert Biale" |
CREATE TABLE table_73432 (
"P" real,
"Player" text,
"League" real,
"Scottish Cup" real,
"League Cup" real,
"Challenge Cup" real,
"Total" real
) | How many points did player 7 score in the challenge cup? | SELECT COUNT("Challenge Cup") FROM table_73432 WHERE "P" = '7' |
CREATE TABLE table_39558 (
"Paul McCartney" text,
"Stuart" text,
"McIntosh" text,
"Whitten" text,
"Linda McCartney" text
) | Which Paul McCartney has a Linda McCartney of keyboards? | SELECT "Paul McCartney" FROM table_39558 WHERE "Linda McCartney" = 'keyboards' |
CREATE TABLE table_1597866_3 (
regular_judge VARCHAR,
host VARCHAR
) | Name the regular judge when host is anja rubik | SELECT regular_judge FROM table_1597866_3 WHERE host = "Anja Rubik" |
CREATE TABLE jobs (
JOB_ID varchar(10),
JOB_TITLE varchar(35),
MIN_SALARY decimal(6,0),
MAX_SALARY decimal(6,0)
)
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... | For those employees who do not work in departments with managers that have ids between 100 and 200, give me the comparison about the amount of hire_date over the hire_date bin hire_date by weekday, and sort how many hire date in ascending order. | SELECT HIRE_DATE, COUNT(HIRE_DATE) FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY COUNT(HIRE_DATE) |
CREATE TABLE table_76811 (
"1976" text,
"1977" text,
"1978" text,
"1979" text,
"1980" text
) | what is 1976 when 1980 is 2.0? | SELECT "1976" FROM table_76811 WHERE "1980" = '2.0' |
CREATE TABLE table_name_30 (
visitor VARCHAR,
home VARCHAR,
decision VARCHAR
) | Which Visitor has a Home of vancouver, and a Decision of cloutier? | SELECT visitor FROM table_name_30 WHERE home = "vancouver" AND decision = "cloutier" |
CREATE TABLE table_23248967_5 (
location_attendance VARCHAR,
game VARCHAR
) | How many locations was game 3 played at? | SELECT COUNT(location_attendance) FROM table_23248967_5 WHERE game = 3 |
CREATE TABLE student (
student_id int,
lastname varchar,
firstname varchar,
program_id int,
declare_major varchar,
total_credit int,
total_gpa float,
entered_as varchar,
admit_term int,
predicted_graduation_semester int,
degree varchar,
minor varchar,
internship varch... | Can you show me my transcript ? | SELECT DISTINCT course.department, course.name, course.number, semester.semester, semester.year, student_record.grade FROM course, semester, student_record WHERE student_record.course_id = course.course_id AND student_record.semester = semester.semester_id AND student_record.student_id = 1 |
CREATE TABLE table_1998037_9 (
television_commentator VARCHAR,
radio_commentator VARCHAR
) | Who is the television commentator when the radio commentator is Galyna Babiy? | SELECT television_commentator FROM table_1998037_9 WHERE radio_commentator = "Galyna Babiy" |
CREATE TABLE table_17483 (
"Rd." real,
"Grand Prix" text,
"Pole position" text,
"Fastest lap" text,
"Winning driver" text,
"Winning constructor" text,
"Report" text
) | what's the report with fastest lap being felipe massa and winning driver being jenson button | SELECT "Report" FROM table_17483 WHERE "Fastest lap" = 'Felipe Massa' AND "Winning driver" = 'Jenson Button' |
CREATE TABLE table_name_33 (
high_rebounds VARCHAR,
game VARCHAR
) | Who had the highest rebounds on game 5? | SELECT high_rebounds FROM table_name_33 WHERE game = 5 |
CREATE TABLE table_70525 (
"Name" text,
"Country" text,
"Status" text,
"Transfer window" text,
"Transfer fee" text
) | What shows as the status for the name of de la red? | SELECT "Status" FROM table_70525 WHERE "Name" = 'de la red' |
CREATE TABLE table_name_76 (
draw INTEGER,
english_translation VARCHAR
) | For the English translation Someone Like You, what is the lowest draw? | SELECT MIN(draw) FROM table_name_76 WHERE english_translation = "someone like you" |
CREATE TABLE table_name_87 (
bronze_medals VARCHAR,
silver_medals VARCHAR,
gold_medals VARCHAR,
total_medals VARCHAR
) | Name the total number of bronze medals when gold medals was 2, total medals more than 4 and silver medals less than 5 | SELECT COUNT(bronze_medals) FROM table_name_87 WHERE gold_medals = 2 AND total_medals > 4 AND silver_medals < 5 |
CREATE TABLE table_9396 (
"Year" real,
"Manufacturer" text,
"Start" text,
"Finish" text,
"Team" text
) | What's the start when the finish is 1? | SELECT "Start" FROM table_9396 WHERE "Finish" = '1' |
CREATE TABLE ReviewTaskResults (
Id number,
ReviewTaskId number,
ReviewTaskResultTypeId number,
CreationDate time,
RejectionReasonId number,
Comment text
)
CREATE TABLE PostTags (
PostId number,
TagId number
)
CREATE TABLE SuggestedEditVotes (
Id number,
SuggestedEditId number,... | how much data is SEDE 'missing'? (due to updates being only weekly) ...Answer: %. SEDE data is updated Sundays mornings so data is up to 7 days behind. What % of the 'actual' (live) data is missing, at most? (based on recordcount in POSTS) (ANSWER: Less than 1/4 of 1%, at most) | SELECT MAX(CreationDate) FROM Comments |
CREATE TABLE table_name_74 (
host_city VARCHAR,
silver VARCHAR,
total VARCHAR
) | Which Host City has more than 6 Silver and a Total of 22? | SELECT host_city FROM table_name_74 WHERE silver > 6 AND total = 22 |
CREATE TABLE table_394 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
) | What was the location attendance when High points was by Pierce (22)? | SELECT "Location Attendance" FROM table_394 WHERE "High points" = 'Pierce (22)' |
CREATE TABLE table_name_40 (
novelty VARCHAR,
name VARCHAR,
status VARCHAR,
location VARCHAR
) | What is the novel that has a valid status, located in Mongolia, and named Prenocephale? | SELECT novelty FROM table_name_40 WHERE status = "valid" AND location = "mongolia" AND name = "prenocephale" |
CREATE TABLE diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE prescriptions (
subject_id text,
hadm_id text,
icustay_id text,
drug_type text,
drug text,
formulary_drug_cd text,
route text,
drug_dose text
)
C... | how many patients whose procedure short title is opn rt hemicolectomy nec? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE procedures.short_title = "Opn rt hemicolectomy NEC" |
CREATE TABLE files (
f_id number,
artist_name text,
file_size text,
duration text,
formats text
)
CREATE TABLE song (
song_name text,
artist_name text,
country text,
f_id number,
genre_is text,
rating number,
languages text,
releasedate time,
resolution number
)
... | What country is the artist who made the fewest songs from? | SELECT T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name GROUP BY T2.artist_name ORDER BY COUNT(*) LIMIT 1 |
CREATE TABLE table_203_640 (
id number,
"name" text,
"college" text,
"years" text,
"reign" text
) | which monarchs attended the same college at the university of oxford as seretse khama ? | SELECT "name" FROM table_203_640 WHERE "name" <> 'seretse khama' AND "college" = (SELECT "college" FROM table_203_640 WHERE "name" = 'seretse khama') |
CREATE TABLE table_2560 (
"Year" real,
"Starts" real,
"Wins" real,
"Top 5" real,
"Top 10" real,
"Poles" real,
"Avg. Start" text,
"Avg. Finish" text,
"Winnings" text,
"Position" text,
"Team(s)" text
) | What is his lowest number of wins? | SELECT MIN("Wins") FROM table_2560 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.