answer stringlengths 6 3.91k | question stringlengths 7 766 | context stringlengths 27 7.14k |
|---|---|---|
SELECT MIN(week) FROM table_name_80 WHERE opponent = "new england patriots" | When was the earliest that New England Patriots played? | CREATE TABLE table_name_80 (week INTEGER, opponent VARCHAR) |
SELECT "Rank" FROM table_71569 WHERE "Name" = 'svetlana fedorenko' | What was the rank of Svetlana Fedorenko? | CREATE TABLE table_71569 (
"Rank" real,
"Name" text,
"Nationality" text,
"Score" text,
"Perfection" text
) |
SELECT number_one_single_s_ FROM table_27441210_17 WHERE artist = "Pep's" | What number-one single is performed by artist Pep's? | CREATE TABLE table_27441210_17 (number_one_single_s_ VARCHAR, artist VARCHAR) |
SELECT AVG(week) FROM table_name_99 WHERE opponent = "st. louis cardinals" AND attendance < 80 OFFSET 010 | What is the average week with St. Louis Cardinals with less than 80,010 attendance? | CREATE TABLE table_name_99 (week INTEGER, opponent VARCHAR, attendance VARCHAR) |
SELECT T1.Code, T1.Price FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Headquarter | For those records from the products and each product's manufacturer, visualize a scatter chart about the correlation between code and price , and group by attribute headquarter. | 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
) |
SELECT audition_city FROM table_27455867_1 WHERE episode_air_date = "January 27, 2011" | Where were the auditions held in the episode that aired on january 27, 2011? | CREATE TABLE table_27455867_1 (audition_city VARCHAR, episode_air_date VARCHAR) |
SELECT MAX(runs) FROM table_name_75 WHERE match > 63 AND venue = "national stadium, karachi" AND year < 1996 | Which Runs is the highest one that has a Match larger than 63, and a Venue of national stadium, karachi, and a Year smaller than 1996? | CREATE TABLE table_name_75 (runs INTEGER, year VARCHAR, match VARCHAR, venue VARCHAR) |
SELECT SUM("Capacity") FROM table_78872 WHERE "Head Coach" = 'farhad kazemi' | What is the Capacity of the Venue of Head Coach Farhad Kazemi? | CREATE TABLE table_78872 (
"Team" text,
"City" text,
"Venue" text,
"Capacity" real,
"Head Coach" text,
"Team Captain" text,
"Past Season" text
) |
SELECT COUNT(audition_city) FROM table_27455867_1 WHERE audition_venue = "Bridgestone Arena" | In how many different audition cities were the Bridgestone arena auditions held? | CREATE TABLE table_27455867_1 (audition_city VARCHAR, audition_venue VARCHAR) |
SELECT year FROM table_name_82 WHERE match = 63 | Which Year has a Match of 63? | CREATE TABLE table_name_82 (year VARCHAR, match VARCHAR) |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.short_title = "Pyelonephritis NOS" AND lab.flag = "delta" | count the number of patients whose diagnosis short title is pyelonephritis nos and lab test abnormal status is delta. | 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 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,
ethnicity text,
expire_flag text,
admission_location text,
discharge_location text,
diagnosis text,
dod text,
dob_year text,
dod_year text,
admittime text,
dischtime text,
admityear text
)
CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
) |
SELECT callback_audition_date FROM table_27455867_1 WHERE episode_air_date = "February 2, 2011" | When was the callback audition date for the audition city from the episode aired on February 2, 2011? | CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, episode_air_date VARCHAR) |
SELECT SUM(match) FROM table_name_14 WHERE runs = 100 AND year > 1994 | Which Match has Runs of 100, and a Year larger than 1994? | CREATE TABLE table_name_14 (match INTEGER, runs VARCHAR, year VARCHAR) |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.age < "31" AND diagnoses.icd9_code = "2809" | what is the number of patients whose age is less than 31 and diagnoses icd9 code is 2809? | 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,
ethnicity text,
expire_flag text,
admission_location text,
discharge_location text,
diagnosis text,
dod text,
dob_year text,
dod_year text,
admittime text,
dischtime text,
admityear 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 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
) |
SELECT callback_audition_date FROM table_27455867_1 WHERE callback_venue = "Hilton Riverside Hotel" | When were the callback auditions at Hilton Riverside Hotel held? | CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, callback_venue VARCHAR) |
SELECT COUNT(match) FROM table_name_63 WHERE city_country = "karachi, pakistan" AND year > 1996 | How many matches have a City/Country of karachi, pakistan, and a Year larger than 1996? | CREATE TABLE table_name_63 (match VARCHAR, city_country VARCHAR, year VARCHAR) |
SELECT Vice AS president FROM table_name_29 WHERE president = "daniel masny" AND treasurer = "rebecca t. altmann" | Which Vice President has a President of daniel masny, and a Treasurer of rebecca t. altmann? | CREATE TABLE table_name_29 (
Vice VARCHAR,
president VARCHAR,
treasurer VARCHAR
) |
SELECT callback_venue FROM table_27455867_1 WHERE episode_air_date = "January 20, 2011" | What was the callback venue for the audition city in the episode aired on January 20, 2011? | CREATE TABLE table_27455867_1 (callback_venue VARCHAR, episode_air_date VARCHAR) |
SELECT MAX(silver) FROM table_name_37 WHERE bronze < 1 AND gold = 1 AND rank = "7" | What is the highest number of Silvers for rank 7 teams with 1 gold and under 1 bronze? | CREATE TABLE table_name_37 (silver INTEGER, rank VARCHAR, bronze VARCHAR, gold VARCHAR) |
SELECT score FROM table_name_78 WHERE home = "detroit" AND date = "december 9" | What score has detroit as the home, and December 9 as the date? | CREATE TABLE table_name_78 (
score VARCHAR,
home VARCHAR,
date VARCHAR
) |
SELECT callback_audition_date FROM table_27455867_1 WHERE episode_air_date = "February 9, 2011" | When were the callback auditions for the audition city in the episode aired on February 9, 2011? | CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, episode_air_date VARCHAR) |
SELECT MIN(silver) FROM table_name_56 WHERE bronze > 4 AND gold > 21 | What is the fewest number of silvers for teams with more than 21 gold and more than 4 bronze? | CREATE TABLE table_name_56 (silver INTEGER, bronze VARCHAR, gold VARCHAR) |
SELECT place FROM table_name_22 WHERE score = 71 - 69 - 71 = 211 | What was the place when the score was 71-69-71=211? | CREATE TABLE table_name_22 (
place VARCHAR,
score VARCHAR
) |
SELECT COUNT(no_in_series) FROM table_27462177_1 WHERE written_by = "Eve Weston" | How many episodes did Eve Weston write? | CREATE TABLE table_27462177_1 (no_in_series VARCHAR, written_by VARCHAR) |
SELECT AVG(silver) FROM table_name_31 WHERE rank = "5" AND bronze < 0 | What is the average number of silvers for teams ranked 5 with 0 bronze? | CREATE TABLE table_name_31 (silver INTEGER, rank VARCHAR, bronze VARCHAR) |
SELECT "Home team score" FROM table_55963 WHERE "Crowd" > '12,240' AND "Away team" = 'carlton' | What was the Home team score when the crowd was larger than 12,240 and Carlton was the away team? | CREATE TABLE table_55963 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) |
SELECT us_viewers__millions_ FROM table_27462177_1 WHERE written_by = "Jack Sanderson" | How many millions of US viewers watched the episode written by Jack Sanderson? | CREATE TABLE table_27462177_1 (us_viewers__millions_ VARCHAR, written_by VARCHAR) |
SELECT venue FROM table_name_6 WHERE result = "won 5-0" | Where was the game with a result of won 5-0? | CREATE TABLE table_name_6 (venue VARCHAR, result VARCHAR) |
SELECT MAX("Roll") FROM table_69120 WHERE "Authority" = 'state' AND "Decile" < '8' | What is the highest roll number of the school with a state authority and a decile smaller than 8? | CREATE TABLE table_69120 (
"Name" text,
"Years" text,
"Gender" text,
"Area" text,
"Authority" text,
"Decile" real,
"Roll" real
) |
SELECT written_by FROM table_27462209_1 WHERE prod_code = 322 | Name who wrote the production code 322 | CREATE TABLE table_27462209_1 (written_by VARCHAR, prod_code VARCHAR) |
SELECT date FROM table_name_15 WHERE result = "won 4-2" | What was the date of the game with a result of won 4-2? | CREATE TABLE table_name_15 (date VARCHAR, result VARCHAR) |
SELECT score FROM table_name_40 WHERE high_assists = "whalen (5)" | Which Score has a High assists of whalen (5)? | CREATE TABLE table_name_40 (
score VARCHAR,
high_assists VARCHAR
) |
SELECT television_network FROM table_27469019_2 WHERE television_channel = "Astro Pelangi & Astro Bintang" | What is the television network with the television channel of Astro Pelangi & Astro Bintang? | CREATE TABLE table_27469019_2 (television_network VARCHAR, television_channel VARCHAR) |
SELECT date FROM table_name_60 WHERE opponent = "hayes & yeading united" | What was the date of the game against Hayes & Yeading United? | CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR) |
SELECT "Challenge Leader" FROM table_74400 WHERE "Winner" = 'Boston College (88-76)' | Who were the challenge leaders of the games won by boston college (88-76)? | CREATE TABLE table_74400 (
"Date" text,
"Time" text,
"ACC Team" text,
"Big Ten Team" text,
"Location" text,
"Television" text,
"Attendance" real,
"Winner" text,
"Challenge Leader" text
) |
SELECT status FROM table_27469019_2 WHERE television_channel = "MediaCorp TV12 Suria" | What was the status of the series that was run by tv channel Mediacorp tv12 Suria? | CREATE TABLE table_27469019_2 (status VARCHAR, television_channel VARCHAR) |
SELECT venue FROM table_name_25 WHERE result = "won 5-0" | Where was the game with a result of won 5-0? | CREATE TABLE table_name_25 (venue VARCHAR, result VARCHAR) |
SELECT DISTINCT num_enrolled FROM course WHERE department = 'EECS' AND number = 542 | 542 is what size ? | CREATE TABLE program_requirement (
program_id int,
category varchar,
min_credit int,
additional_req 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 varchar,
has_lab varchar,
has_projects varchar,
has_exams varchar,
num_reviews int,
clarity_score int,
easiness_score int,
helpfulness_score int
)
CREATE TABLE offering_instructor (
offering_instructor_id int,
offering_id int,
instructor_id int
)
CREATE TABLE program_course (
program_id int,
course_id int,
workload int,
category 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,
test_id varchar
)
CREATE TABLE area (
course_id int,
area varchar
)
CREATE TABLE semester (
semester_id int,
semester varchar,
year int
)
CREATE TABLE student (
student_id int,
lastname varchar,
firstname varchar,
program_id int,
declare_major varchar,
total_credit int,
total_gpa float,
entered_as varchar,
admit_term int,
predicted_graduation_semester int,
degree varchar,
minor varchar,
internship varchar
)
CREATE TABLE instructor (
instructor_id int,
name varchar,
uniqname varchar
)
CREATE TABLE comment_instructor (
instructor_id int,
student_id int,
score int,
comment_text varchar
)
CREATE TABLE jobs (
job_id int,
job_title varchar,
description varchar,
requirement varchar,
city varchar,
state varchar,
country varchar,
zip int
)
CREATE TABLE course_tags_count (
course_id int,
clear_grading int,
pop_quiz int,
group_projects int,
inspirational int,
long_lectures int,
extra_credit int,
few_tests int,
good_feedback int,
tough_tests int,
heavy_papers int,
cares_for_students int,
heavy_assignments int,
respected int,
participation int,
heavy_reading int,
tough_grader int,
hilarious int,
would_take_again int,
good_lecture int,
no_skip int
)
CREATE TABLE course_offering (
offering_id int,
course_id int,
semester int,
section_number int,
start_time time,
end_time time,
monday varchar,
tuesday varchar,
wednesday varchar,
thursday varchar,
friday varchar,
saturday varchar,
sunday varchar,
has_final_project varchar,
has_final_exam varchar,
textbook varchar,
class_address varchar,
allow_audit varchar
)
CREATE TABLE ta (
campus_job_id int,
student_id int,
location varchar
)
CREATE TABLE gsi (
course_offering_id int,
student_id int
)
CREATE TABLE requirement (
requirement_id int,
requirement varchar,
college varchar
)
CREATE TABLE program (
program_id int,
name varchar,
college varchar,
introduction varchar
)
CREATE TABLE course_prerequisite (
pre_course_id int,
course_id int
) |
SELECT world_rank_by_qs_, _2013 FROM table_27484208_1 WHERE members = "University of Otago" | What was the world rank by QS in 2013 for the University of Otago? | CREATE TABLE table_27484208_1 (world_rank_by_qs_ VARCHAR, _2013 VARCHAR, members VARCHAR) |
SELECT AVG(appeared) FROM table_name_56 WHERE rr_w_rate < 0.75 AND result = "rr:08,09" | If the RR Rate is less than 0.75 with a result of RR:08,09, what is the average appeared? | CREATE TABLE table_name_56 (appeared INTEGER, rr_w_rate VARCHAR, result VARCHAR) |
SELECT "% 75 +" FROM table_26178 WHERE "% 0-19" = '19,75%' | What is every value for % 75 + if % 0-19 is 19,75%? | CREATE TABLE table_26178 (
"Neighbourhood" text,
"% 0-19" text,
"% 20-39" text,
"% 40-59" text,
"% 60-74" text,
"% 75 +" text
) |
SELECT world_rank_by_arwu_, _2013 FROM table_27484208_1 WHERE members = "University of Tübingen" | What was the world rank by ARWU in 2013 of the University of Tübingen? | CREATE TABLE table_27484208_1 (world_rank_by_arwu_ VARCHAR, _2013 VARCHAR, members VARCHAR) |
SELECT SUM(appeared) FROM table_name_95 WHERE rr_w_rate < 0.17 | What's the total appeared that has an RR Rate less than 0.17? | CREATE TABLE table_name_95 (appeared INTEGER, rr_w_rate INTEGER) |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.days_stay > "6" AND procedures.long_title = "Biopsy of bone marrow" | Find the number of patients who had biopsy of bone marrow that stayed in the hospital for more than 6 days. | 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_flag text,
admission_location text,
discharge_location text,
diagnosis text,
dod text,
dob_year text,
dod_year text,
admittime text,
dischtime text,
admityear 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 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
) |
SELECT COUNT(no_in_series) FROM table_27481781_2 WHERE viewers__millions_ = "18.73" | How many episodes have 18.73 million viewers? | CREATE TABLE table_27481781_2 (no_in_series VARCHAR, viewers__millions_ VARCHAR) |
SELECT SUM(appeared) FROM table_name_87 WHERE rr_w_rate < 0.33 AND player = "angelique kerber" | For Angelique Kerber who had an RR Rate of less than 0.33, what's the appeared? | CREATE TABLE table_name_87 (appeared INTEGER, rr_w_rate VARCHAR, player VARCHAR) |
SELECT "State" FROM table_50916 WHERE "Elected/assumed office" = '2013' | What state had an elected/assumed office in 2013? | CREATE TABLE table_50916 (
"Governor" text,
"State" text,
"Past" text,
"Party" text,
"Elected/assumed office" real,
"Seat up" real
) |
SELECT result FROM table_27487712_1 WHERE district = "Georgia's 3rd" | What was the result of the election for georgia's 3rd district? | CREATE TABLE table_27487712_1 (result VARCHAR, district VARCHAR) |
SELECT SUM(area__km²_) FROM table_name_34 WHERE county = "nairnshire" AND population < 11 OFFSET 050 | What is the area (km²) of Nairnshire county, which has a population less than 11,050? | CREATE TABLE table_name_34 (area__km²_ INTEGER, county VARCHAR, population VARCHAR) |
SELECT MAX(goals_for) FROM table_name_27 WHERE team = "congleton town" AND lost > 11 | Which Goals For has a Team of congleton town, and a Lost larger than 11? | CREATE TABLE table_name_27 (
goals_for INTEGER,
team VARCHAR,
lost VARCHAR
) |
SELECT incumbent FROM table_27487712_1 WHERE district = "Georgia's 8th" | Who was the incumbent from georgia's 8th district? | CREATE TABLE table_27487712_1 (incumbent VARCHAR, district VARCHAR) |
SELECT attendance FROM table_name_14 WHERE date = "august 26" | What was the Attendance of August 26? | CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR) |
SELECT "Series Ep." FROM table_5565 WHERE "Segment D" = 'darts' | Name the series ep for darts | CREATE TABLE table_5565 (
"Series Ep." text,
"Episode" real,
"Netflix" text,
"Segment A" text,
"Segment B" text,
"Segment C" text,
"Segment D" text
) |
SELECT result FROM table_27487712_1 WHERE incumbent = "Bob Barr" | What was the result of the election with incumbent bob barr? | CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR) |
SELECT MAX(Severe) AS tropical_cyclones FROM table_name_78 WHERE tropical_cyclones = 10 AND tropical_lows = 14 | What is the highest number of severe tropical cyclones when there are 10 tropical cyclones and 14 tropical lows? | CREATE TABLE table_name_78 (Severe INTEGER, tropical_cyclones VARCHAR, tropical_lows VARCHAR) |
SELECT hometown FROM table_name_19 WHERE player = "ray drew" | Which hometown has a player of Ray Drew? | CREATE TABLE table_name_19 (
hometown VARCHAR,
player VARCHAR
) |
SELECT result FROM table_27487712_1 WHERE incumbent = "John Lewis" | What was the result of the election with incumbent john lewis? | CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR) |
SELECT track FROM table_name_82 WHERE bobsleigh_skeleton_curves = "14" AND country = "austria" | Which track in Austria has Bobsleigh-skeleton curves with a grade of 14%? | CREATE TABLE table_name_82 (track VARCHAR, bobsleigh_skeleton_curves VARCHAR, country VARCHAR) |
SELECT MIN(year) FROM table_name_42 WHERE venue = "rio de janeiro, brazil" | What is the lowest Year, when Venue is Rio De Janeiro, Brazil? | CREATE TABLE table_name_42 (
year INTEGER,
venue VARCHAR
) |
SELECT incumbent FROM table_27487712_1 WHERE elected = 1978 | Who was the incumbent for the election in 1978? | CREATE TABLE table_27487712_1 (incumbent VARCHAR, elected VARCHAR) |
SELECT MIN(length__m_) FROM table_name_72 WHERE maximum_grade___percentage_ = "15" AND vertical_drop__m_ < 122.22 AND country = "norway" | What is the shortest length of a track in Norway that has a maximum grade of 15% and a vertical drop less than 122.22 m? | CREATE TABLE table_name_72 (length__m_ INTEGER, country VARCHAR, maximum_grade___percentage_ VARCHAR, vertical_drop__m_ VARCHAR) |
SELECT COUNT(*) > 0 FROM microbiologyevents WHERE microbiologyevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 56490) AND microbiologyevents.spec_type_desc = 'blood culture' AND DATETIME(microbiologyevents.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year') AND STRFTIME('%m', microbiologyevents.charttime) = '09' | has there been any blood culture microbiology test done for patient 56490 in 09/last year? | 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 inputevents_cv (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
charttime time,
itemid number,
amount number
)
CREATE TABLE diagnoses_icd (
row_id number,
subject_id number,
hadm_id number,
icd9_code text,
charttime time
)
CREATE TABLE d_icd_diagnoses (
row_id number,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE d_icd_procedures (
row_id number,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE prescriptions (
row_id number,
subject_id number,
hadm_id number,
startdate time,
enddate time,
drug text,
dose_val_rx text,
dose_unit_rx text,
route text
)
CREATE TABLE labevents (
row_id number,
subject_id number,
hadm_id number,
itemid number,
charttime time,
valuenum number,
valueuom text
)
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 microbiologyevents (
row_id number,
subject_id number,
hadm_id number,
charttime time,
spec_type_desc text,
org_name text
)
CREATE TABLE icustays (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
first_careunit text,
last_careunit text,
first_wardid number,
last_wardid number,
intime time,
outtime time
)
CREATE TABLE d_labitems (
row_id number,
itemid number,
label text
)
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 outputevents (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
charttime time,
itemid number,
value number
)
CREATE TABLE procedures_icd (
row_id number,
subject_id number,
hadm_id number,
icd9_code text,
charttime time
)
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 d_items (
row_id number,
itemid number,
label text,
linksto text
) |
SELECT judges FROM table_27487310_5 WHERE country = "Netherlands" AND air_dates = "28 November 2011 – 24 December 2011" | Who are the judges in the Netherlands for the season airing 28 November 2011 – 24 December 2011? | CREATE TABLE table_27487310_5 (judges VARCHAR, country VARCHAR, air_dates VARCHAR) |
SELECT MAX(vertical_drop__m_) FROM table_name_9 WHERE length__m_ = 1 OFFSET 200 | What is the highest vertical drop among the 1,200 meter long tracks? | CREATE TABLE table_name_9 (vertical_drop__m_ INTEGER, length__m_ VARCHAR) |
SELECT "Record" FROM table_47775 WHERE "Game" = '52' | What was the Maple Leafs' record on game 52? | CREATE TABLE table_47775 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"Record" text
) |
SELECT name FROM table_27487310_5 WHERE network = "SBS 6" | What is the version aired on SBS 6 called? | CREATE TABLE table_27487310_5 (name VARCHAR, network VARCHAR) |
SELECT SUM(attendance) FROM table_name_79 WHERE opponent = "west bromwich albion" AND result = "3 – 3" AND match > 20 | How many Attendance has a Opponent of west bromwich albion, and a Result of 3 – 3, and a Match larger than 20? | CREATE TABLE table_name_79 (attendance INTEGER, match VARCHAR, opponent VARCHAR, result VARCHAR) |
SELECT p.Tags FROM Posts AS p, PostTags AS pt, Tags AS t WHERE pt.PostId = p.Id AND pt.TagId = t.Id AND t.TagName = 'scan' GROUP BY p.Tags | Top tags related to JavaScript. | CREATE TABLE ReviewRejectionReasons (
Id number,
Name text,
Description text,
PostTypeId number
)
CREATE TABLE PostTypes (
Id number,
Name text
)
CREATE TABLE ReviewTaskStates (
Id number,
Name text,
Description text
)
CREATE TABLE FlagTypes (
Id number,
Name text,
Description text
)
CREATE TABLE ReviewTaskTypes (
Id number,
Name text,
Description text
)
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 ReviewTaskResultTypes (
Id number,
Name text,
Description text
)
CREATE TABLE Votes (
Id number,
PostId number,
VoteTypeId number,
UserId number,
CreationDate time,
BountyAmount number
)
CREATE TABLE CloseReasonTypes (
Id number,
Name text,
Description text
)
CREATE TABLE PostHistoryTypes (
Id number,
Name text
)
CREATE TABLE PostTags (
PostId number,
TagId number
)
CREATE TABLE PostNoticeTypes (
Id number,
ClassId number,
Name text,
Body text,
IsHidden boolean,
Predefined boolean,
PostNoticeDurationId number
)
CREATE TABLE PostLinks (
Id number,
CreationDate time,
PostId number,
RelatedPostId number,
LinkTypeId number
)
CREATE TABLE ReviewTasks (
Id number,
ReviewTaskTypeId number,
CreationDate time,
DeletionDate time,
ReviewTaskStateId number,
PostId number,
SuggestedEditId number,
CompletedByReviewTaskId number
)
CREATE TABLE ReviewTaskResults (
Id number,
ReviewTaskId number,
ReviewTaskResultTypeId number,
CreationDate time,
RejectionReasonId number,
Comment text
)
CREATE TABLE CloseAsOffTopicReasonTypes (
Id number,
IsUniversal boolean,
InputTitle text,
MarkdownInputGuidance text,
MarkdownPostOwnerGuidance text,
MarkdownPrivilegedUserGuidance text,
MarkdownConcensusDescription text,
CreationDate time,
CreationModeratorId number,
ApprovalDate time,
ApprovalModeratorId number,
DeactivationDate time,
DeactivationModeratorId number
)
CREATE TABLE Badges (
Id number,
UserId number,
Name text,
Date time,
Class number,
TagBased boolean
)
CREATE TABLE PostsWithDeleted (
Id number,
PostTypeId number,
AcceptedAnswerId number,
ParentId number,
CreationDate time,
DeletionDate time,
Score number,
ViewCount number,
Body text,
OwnerUserId number,
OwnerDisplayName text,
LastEditorUserId number,
LastEditorDisplayName text,
LastEditDate time,
LastActivityDate time,
Title text,
Tags text,
AnswerCount number,
CommentCount number,
FavoriteCount number,
ClosedDate time,
CommunityOwnedDate time,
ContentLicense text
)
CREATE TABLE VoteTypes (
Id number,
Name text
)
CREATE TABLE TagSynonyms (
Id number,
SourceTagName text,
TargetTagName text,
CreationDate time,
OwnerUserId number,
AutoRenameCount number,
LastAutoRename time,
Score number,
ApprovedByUserId number,
ApprovalDate time
)
CREATE TABLE PostNotices (
Id number,
PostId number,
PostNoticeTypeId number,
CreationDate time,
DeletionDate time,
ExpiryDate time,
Body text,
OwnerUserId number,
DeletionUserId number
)
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 PostHistory (
Id number,
PostHistoryTypeId number,
PostId number,
RevisionGUID other,
CreationDate time,
UserId number,
UserDisplayName text,
Comment text,
Text text,
ContentLicense text
)
CREATE TABLE Comments (
Id number,
PostId number,
Score number,
Text text,
CreationDate time,
UserDisplayName text,
UserId number,
ContentLicense text
)
CREATE TABLE Posts (
Id number,
PostTypeId number,
AcceptedAnswerId number,
ParentId number,
CreationDate time,
DeletionDate time,
Score number,
ViewCount number,
Body text,
OwnerUserId number,
OwnerDisplayName text,
LastEditorUserId number,
LastEditorDisplayName text,
LastEditDate time,
LastActivityDate time,
Title text,
Tags text,
AnswerCount number,
CommentCount number,
FavoriteCount number,
ClosedDate time,
CommunityOwnedDate time,
ContentLicense text
)
CREATE TABLE Tags (
Id number,
TagName text,
Count number,
ExcerptPostId number,
WikiPostId number
)
CREATE TABLE SuggestedEditVotes (
Id number,
SuggestedEditId number,
UserId number,
VoteTypeId number,
CreationDate time,
TargetUserId number,
TargetRepChange number
)
CREATE TABLE PendingFlags (
Id number,
FlagTypeId number,
PostId number,
CreationDate time,
CloseReasonTypeId number,
CloseAsOffTopicReasonTypeId number,
DuplicateOfQuestionId number,
BelongsOnBaseHostAddress text
)
CREATE TABLE PostFeedback (
Id number,
PostId number,
IsAnonymous boolean,
VoteTypeId number,
CreationDate time
) |
SELECT air_dates FROM table_27487310_5 WHERE network = "ABS-CBN" | What are the air dates of the show in ABS-CBN? | CREATE TABLE table_27487310_5 (air_dates VARCHAR, network VARCHAR) |
SELECT MAX(match) FROM table_name_99 WHERE venue = "h" AND date = "22 september 1888" AND attendance < 4 OFFSET 000 | WHich Match has a Venue of h on 22 september 1888 with Attendances smaller than 4,000? | CREATE TABLE table_name_99 (match INTEGER, attendance VARCHAR, venue VARCHAR, date VARCHAR) |
SELECT DISTINCT department, name, number FROM course WHERE credits = 6 AND department = 'LACS' AND number < 400 + 100 AND number >= 400 | On the LACS 400 -level , what 6 -credit courses are there ? | CREATE TABLE gsi (
course_offering_id int,
student_id int
)
CREATE TABLE course_tags_count (
course_id int,
clear_grading int,
pop_quiz int,
group_projects int,
inspirational int,
long_lectures int,
extra_credit int,
few_tests int,
good_feedback int,
tough_tests int,
heavy_papers int,
cares_for_students int,
heavy_assignments int,
respected int,
participation int,
heavy_reading int,
tough_grader int,
hilarious int,
would_take_again int,
good_lecture int,
no_skip int
)
CREATE TABLE program_course (
program_id int,
course_id int,
workload int,
category varchar
)
CREATE TABLE course_offering (
offering_id int,
course_id int,
semester int,
section_number int,
start_time time,
end_time time,
monday varchar,
tuesday varchar,
wednesday varchar,
thursday varchar,
friday varchar,
saturday varchar,
sunday varchar,
has_final_project varchar,
has_final_exam varchar,
textbook varchar,
class_address varchar,
allow_audit varchar
)
CREATE TABLE course_prerequisite (
pre_course_id int,
course_id int
)
CREATE TABLE student (
student_id int,
lastname varchar,
firstname varchar,
program_id int,
declare_major varchar,
total_credit int,
total_gpa float,
entered_as varchar,
admit_term int,
predicted_graduation_semester int,
degree varchar,
minor varchar,
internship varchar
)
CREATE TABLE instructor (
instructor_id int,
name varchar,
uniqname 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,
test_id varchar
)
CREATE TABLE area (
course_id int,
area varchar
)
CREATE TABLE jobs (
job_id int,
job_title varchar,
description varchar,
requirement varchar,
city varchar,
state varchar,
country varchar,
zip int
)
CREATE TABLE offering_instructor (
offering_instructor_id int,
offering_id int,
instructor_id int
)
CREATE TABLE semester (
semester_id int,
semester varchar,
year int
)
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 varchar,
has_lab varchar,
has_projects varchar,
has_exams varchar,
num_reviews int,
clarity_score int,
easiness_score int,
helpfulness_score int
)
CREATE TABLE program (
program_id int,
name varchar,
college varchar,
introduction varchar
)
CREATE TABLE program_requirement (
program_id int,
category varchar,
min_credit int,
additional_req varchar
)
CREATE TABLE comment_instructor (
instructor_id int,
student_id int,
score int,
comment_text varchar
)
CREATE TABLE requirement (
requirement_id int,
requirement varchar,
college varchar
)
CREATE TABLE ta (
campus_job_id int,
student_id int,
location varchar
) |
SELECT host_s_ FROM table_27487310_5 WHERE air_dates = "18 January 2012" | Who is the host on the series aired on 18 January 2012? | CREATE TABLE table_27487310_5 (host_s_ VARCHAR, air_dates VARCHAR) |
SELECT venue FROM table_name_45 WHERE date = "5 april 2000" | What is the venue of the match on 5 April 2000? | CREATE TABLE table_name_45 (venue VARCHAR, date VARCHAR) |
SELECT HIRE_DATE, AVG(DEPARTMENT_ID) FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY AVG(DEPARTMENT_ID) DESC | For those employees who do not work in departments with managers that have ids between 100 and 200, give me the comparison about the average of department_id over the hire_date bin hire_date by weekday, and could you list in descending by the y-axis please? | CREATE TABLE countries (
COUNTRY_ID varchar(2),
COUNTRY_NAME varchar(40),
REGION_ID decimal(10,0)
)
CREATE TABLE employees (
EMPLOYEE_ID decimal(6,0),
FIRST_NAME varchar(20),
LAST_NAME varchar(25),
EMAIL varchar(25),
PHONE_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(4,0)
)
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 departments (
DEPARTMENT_ID decimal(4,0),
DEPARTMENT_NAME varchar(30),
MANAGER_ID decimal(6,0),
LOCATION_ID decimal(4,0)
)
CREATE TABLE regions (
REGION_ID decimal(5,0),
REGION_NAME varchar(25)
)
CREATE TABLE jobs (
JOB_ID varchar(10),
JOB_TITLE varchar(35),
MIN_SALARY decimal(6,0),
MAX_SALARY decimal(6,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)
) |
SELECT name FROM table_27487310_5 WHERE host_s_ = "unknown" | What is the name of the series with the unknown host? | CREATE TABLE table_27487310_5 (name VARCHAR, host_s_ VARCHAR) |
SELECT round FROM table_name_66 WHERE opponent = "michael buell" | What is the round number of the match with Michael Buell as the opponent? | CREATE TABLE table_name_66 (round VARCHAR, opponent VARCHAR) |
SELECT "To par" FROM table_24380 WHERE "Date" = '20 Feb 2005' | Name the to par for 20 feb 2005 | CREATE TABLE table_24380 (
"No." real,
"Date" text,
"Tournament" text,
"Winning score" text,
"To par" text,
"Margin of victory" text,
"Runner(s)-up" text
) |
SELECT points_per_game FROM table_27487336_1 WHERE passing_yards_per_game = "179.6" | What is every value for points per game if passing yards per game is 179.6? | CREATE TABLE table_27487336_1 (points_per_game VARCHAR, passing_yards_per_game VARCHAR) |
SELECT time FROM table_name_74 WHERE res = "win" AND round > 2 AND opponent = "makoto ishikawa" | What is the time of the match with a win result, more than 2 rounds, and Makoto Ishikawa as the opponent? | CREATE TABLE table_name_74 (time VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR) |
SELECT "U.S. viewers (millions)" FROM table_30457 WHERE "Production code" = '2T7004' | How many million u.s. viewers watched the episode with a production code of 2t7004? | CREATE TABLE table_30457 (
"Series #" real,
"Title" text,
"Written by" text,
"Directed by" text,
"Original air date" text,
"Production code" text,
"U.S. viewers (millions)" text
) |
SELECT sacks FROM table_27487336_1 WHERE interceptions = "19" | What is every value for sacks if interceptions is 19? | CREATE TABLE table_27487336_1 (sacks VARCHAR, interceptions VARCHAR) |
SELECT date FROM table_name_83 WHERE record = "65-87" | what team scored 65-87 | CREATE TABLE table_name_83 (date VARCHAR, record VARCHAR) |
SELECT "Name" FROM table_52735 WHERE "Number" < '6' AND "Date" < '1993' | What is the name of the train numbered less than 6 before 1993? | CREATE TABLE table_52735 (
"Number" real,
"Name" text,
"Builder" text,
"Type" text,
"Date" real
) |
SELECT passing_yards_per_game FROM table_27487336_1 WHERE rushing_yards_per_game = "113.6" | What is every value for passing yards per game if rushing yards per game is 113.6? | CREATE TABLE table_27487336_1 (passing_yards_per_game VARCHAR, rushing_yards_per_game VARCHAR) |
SELECT score FROM table_name_43 WHERE date = "september 14" | what was the score on september 14 | CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR) |
SELECT "Official Name" FROM table_45223 WHERE "Area km 2" = '16.13' | What is the Official Name of the Community with an Area km 2 of 16.13? | CREATE TABLE table_45223 (
"Official Name" text,
"Status" text,
"Area km 2" real,
"Population" real,
"Census Ranking" text
) |
SELECT rushing_yards_per_game FROM table_27487336_1 WHERE sacks = "25" | What is every value for rushing yards per game if sacks if 25? | CREATE TABLE table_27487336_1 (rushing_yards_per_game VARCHAR, sacks VARCHAR) |
SELECT form_factor FROM table_name_65 WHERE capacities__gb_ = "60/120/180/240" | What form factor has capacities at 60/120/180/240? | CREATE TABLE table_name_65 (form_factor VARCHAR, capacities__gb_ VARCHAR) |
SELECT DISTINCT airline_code FROM airline WHERE airline_code = 'AC' | what airline is AC | CREATE TABLE days (
days_code varchar,
day_name varchar
)
CREATE TABLE airline (
airline_code varchar,
airline_name text,
note text
)
CREATE TABLE time_zone (
time_zone_code text,
time_zone_name text,
hours_from_gmt int
)
CREATE TABLE time_interval (
period text,
begin_time int,
end_time int
)
CREATE TABLE airport (
airport_code varchar,
airport_name text,
airport_location text,
state_code varchar,
country_name varchar,
time_zone_code varchar,
minimum_connect_time int
)
CREATE TABLE compartment_class (
compartment varchar,
class_type varchar
)
CREATE TABLE city (
city_code varchar,
city_name varchar,
state_code varchar,
country_name varchar,
time_zone_code varchar
)
CREATE TABLE month (
month_number int,
month_name text
)
CREATE TABLE flight_fare (
flight_id int,
fare_id int
)
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,
round_trip_required varchar
)
CREATE TABLE date_day (
month_number int,
day_number int,
year int,
day_name varchar
)
CREATE TABLE state (
state_code text,
state_name text,
country_name text
)
CREATE TABLE dual_carrier (
main_airline varchar,
low_flight_number int,
high_flight_number int,
dual_airline varchar,
service_name text
)
CREATE TABLE ground_service (
city_code text,
airport_code text,
transport_type text,
ground_fare int
)
CREATE TABLE aircraft (
aircraft_code varchar,
aircraft_description varchar,
manufacturer varchar,
basic_type varchar,
engines int,
propulsion varchar,
wide_body varchar,
wing_span int,
length int,
weight int,
capacity int,
pay_load int,
cruising_speed int,
range_miles int,
pressurized varchar
)
CREATE TABLE code_description (
code varchar,
description text
)
CREATE TABLE food_service (
meal_code text,
meal_number int,
compartment text,
meal_description varchar
)
CREATE TABLE flight_leg (
flight_id int,
leg_number int,
leg_flight int
)
CREATE TABLE airport_service (
city_code varchar,
airport_code varchar,
miles_distant int,
direction varchar,
minutes_distant int
)
CREATE TABLE fare_basis (
fare_basis_code text,
booking_class text,
class_type text,
premium text,
economy text,
discounted text,
night text,
season text,
basis_days text
)
CREATE TABLE flight (
aircraft_code_sequence text,
airline_code varchar,
airline_flight text,
arrival_time int,
connections int,
departure_time int,
dual_carrier text,
flight_days text,
flight_id int,
flight_number int,
from_airport varchar,
meal_code text,
stops int,
time_elapsed int,
to_airport 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 equipment_sequence (
aircraft_code_sequence varchar,
aircraft_code varchar
)
CREATE TABLE flight_stop (
flight_id int,
stop_number int,
stop_days text,
stop_airport text,
arrival_time int,
arrival_airline text,
arrival_flight_number int,
departure_time int,
departure_airline text,
departure_flight_number int,
stop_time int
)
CREATE TABLE class_of_service (
booking_class varchar,
rank int,
class_description text
) |
SELECT rushing_yards_per_game FROM table_27487336_1 WHERE season = "1984" | What is every value for rushing yards per game if the season is 1984? | CREATE TABLE table_27487336_1 (rushing_yards_per_game VARCHAR, season VARCHAR) |
SELECT form_factor FROM table_name_84 WHERE controller = "sandforce" AND capacities__gb_ = "80/120/180/240/360/480" AND introduced = "july 2013" | Which value for Form factor has Sandforce with Capacity 80/120/180/240/360/480 introduced in July 2013? | CREATE TABLE table_name_84 (form_factor VARCHAR, introduced VARCHAR, controller VARCHAR, capacities__gb_ VARCHAR) |
SELECT "Song choice" FROM table_73927 WHERE "Theme" = 'Auditioner''s Choice' | The theme Auditioner's Choice has what song choice? | CREATE TABLE table_73927 (
"Episode" text,
"Theme" text,
"Song choice" text,
"Original artist" text,
"Order #" text,
"Result" text
) |
SELECT COUNT(season) FROM table_27487336_1 WHERE sacks = "39" | How many seasons have a sacks of 39? | CREATE TABLE table_27487336_1 (season VARCHAR, sacks VARCHAR) |
SELECT controller FROM table_name_37 WHERE interface = "pcie 2.0 × 8" | Which controller has an interface of pcie 2.0 × 8? | CREATE TABLE table_name_37 (controller VARCHAR, interface VARCHAR) |
SELECT date FROM table_name_4 WHERE score_in_the_final = "3–6, 2–6, 4–6" | What Date has a Score in the final of 3 6, 2 6, 4 6? | CREATE TABLE table_name_4 (
date VARCHAR,
score_in_the_final VARCHAR
) |
SELECT average FROM table_27496841_3 WHERE rank_by_average = 3 | Name the average for rank of 3 | CREATE TABLE table_27496841_3 (average VARCHAR, rank_by_average VARCHAR) |
SELECT controller FROM table_name_67 WHERE nand_type = "25nm mlc-het" AND seq_read_write_mb_s = "270/210" | Which controller is NAND type 25nm mlc-het with sequential read/write MB/s of 270/210? | CREATE TABLE table_name_67 (controller VARCHAR, nand_type VARCHAR, seq_read_write_mb_s VARCHAR) |
SELECT "Proper velocity w dx/d\u03c4 in units of c" FROM table_19993 WHERE "Condition/Parameter" = 'Rapidity of 1 hyperbolic radian' | If the condition/parameter is rapidity of 1 hyperbolic radian, what is the proper velocity w dx/d in units of c? | CREATE TABLE table_19993 (
"Condition/Parameter" text,
"Coordinate velocity v dx/dt in units of c" text,
"Velocity angle \u03b7 in i-radians" text,
"Proper velocity w dx/d\u03c4 in units of c" text,
"Lorentz factor \u03b3 dt/d\u03c4 = E/mc 2" text
) |
SELECT total_points FROM table_27496841_3 WHERE place = 2 | Name the total points for 2 | CREATE TABLE table_27496841_3 (total_points VARCHAR, place VARCHAR) |
SELECT interface FROM table_name_27 WHERE controller = "sandforce" AND codename = "sierra star" | Which interface uses Sandforce with a code name of Sierra Star? | CREATE TABLE table_name_27 (interface VARCHAR, controller VARCHAR, codename VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.