context stringlengths 11 9.12k | question stringlengths 0 1.06k | SQL stringlengths 2 4.44k | source stringclasses 28
values |
|---|---|---|---|
CREATE TABLE table_21386 (
"Series #" real,
"Season #" real,
"Title" text,
"Directed by" text,
"Original air date" text,
"Prod. code" real
) | How many episodes have the season number of 1? | SELECT COUNT("Series #") FROM table_21386 WHERE "Season #" = '1' | wikisql |
CREATE TABLE Staff (
staff_id INTEGER,
staff_address_id INTEGER,
nickname VARCHAR(80),
first_name VARCHAR(80),
middle_name VARCHAR(80),
last_name VARCHAR(80),
date_of_birth DATETIME,
date_joined_staff DATETIME,
date_left_staff DATETIME
)
CREATE TABLE Customer_Payments (
customer... | What is the date of birth of every customer whose status code is 'Good Customer', and count them by a line chart, rank in desc by the X-axis. | SELECT date_of_birth, COUNT(date_of_birth) FROM Customers WHERE customer_status_code = 'Good Customer' ORDER BY date_of_birth DESC | nvbench |
CREATE TABLE table_name_5 (
location___state VARCHAR,
circuit VARCHAR
) | What is the location/state that has adelaide international raceway as the circuit? | SELECT location___state FROM table_name_5 WHERE circuit = "adelaide international raceway" | sql_create_context |
CREATE TABLE table_2880 (
"Rank" real,
"Rider" text,
"Mon 24 Aug" text,
"Tues 25 Aug" text,
"Wed 26 Aug" text,
"Thurs 27 Aug" text,
"Fri 28 Aug" text,
"Sat 29 Aug" text
) | When roy richardson 476cc aermacchi is the rider what is the time for saturday august 9th? | SELECT "Sat 29 Aug" FROM table_2880 WHERE "Rider" = 'Roy Richardson 476cc Aermacchi' | wikisql |
CREATE TABLE table_61289 (
"Name of ground" text,
"Location" text,
"Year" text,
"FC matches" text,
"LA matches" text,
"T20 matches" text,
"Total" text
) | What year was the total 9? | SELECT "Year" FROM table_61289 WHERE "Total" = '9' | wikisql |
CREATE TABLE church (
open_date VARCHAR
) | Show the opening year in whcih at least two churches opened. | SELECT open_date FROM church GROUP BY open_date HAVING COUNT(*) >= 2 | sql_create_context |
CREATE TABLE d_icd_diagnoses (
row_id number,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE microbiologyevents (
row_id number,
subject_id number,
hadm_id number,
charttime time,
spec_type_desc text,
org_name text
)
CREATE TABLE prescriptions (
row_id num... | count the number of patients who have been on sc 24 fe ng intake the last 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 = 'sc 24 fe ng' AND d_... | mimic_iii |
CREATE TABLE table_train_109 (
"id" int,
"serum_potassium" float,
"systolic_blood_pressure_sbp" int,
"body_mass_index_bmi" float,
"hypertension" bool,
"NOUSE" float
) | treated hypertension ( systolic blood pressure >= 110 mmhg systolic and <= 170 mmhg | SELECT * FROM table_train_109 WHERE hypertension = 1 OR (systolic_blood_pressure_sbp >= 110 AND systolic_blood_pressure_sbp <= 170) | criteria2sql |
CREATE TABLE employee (
emp_num number,
emp_lname text,
emp_fname text,
emp_initial text,
emp_jobcode text,
emp_hiredate time,
emp_dob time
)
CREATE TABLE department (
dept_code text,
dept_name text,
school_code text,
emp_num number,
dept_address text,
dept_extension... | What are the first names of all students who took ACCT-211 and received a C? | SELECT T3.stu_fname FROM class AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211' AND T2.enroll_grade = 'C' | spider |
CREATE TABLE table_name_37 (
country VARCHAR,
player VARCHAR,
score VARCHAR
) | What country did Bart Bryant with a score of 69-70=139 belong to? | SELECT country FROM table_name_37 WHERE score = 69 - 70 = 139 AND player = "bart bryant" | sql_create_context |
CREATE TABLE region (
region_id number,
region_code text,
region_name text
)
CREATE TABLE affected_region (
region_id number,
storm_id number,
number_city_affected number
)
CREATE TABLE storm (
storm_id number,
name text,
dates_active text,
max_speed number,
damage_millions... | What is the total number of deaths and damage for all storms with a max speed greater than the average? | SELECT SUM(number_deaths), SUM(damage_millions_usd) FROM storm WHERE max_speed > (SELECT AVG(max_speed) FROM storm) | spider |
CREATE TABLE table_12146637_1 (
episode_title VARCHAR,
us_viewers__millions_ VARCHAR
) | How many episodes had 9.90 million viewers? | SELECT COUNT(episode_title) FROM table_12146637_1 WHERE us_viewers__millions_ = "9.90" | sql_create_context |
CREATE TABLE table_22844 (
"Year" real,
"Iowa" text,
"Kansas" text,
"Minnesota" text,
"Missouri" text,
"Nebraska" text,
"North/South Dakota" text
) | Name the missouri for 2002 | SELECT "Missouri" FROM table_22844 WHERE "Year" = '2002' | wikisql |
CREATE TABLE table_name_58 (
chinese_name VARCHAR,
english_name VARCHAR
) | What is the Chinese name for the English name Andy Lau? | SELECT chinese_name FROM table_name_58 WHERE english_name = "andy lau" | sql_create_context |
CREATE TABLE table_28634206_1 (
country VARCHAR
) | How many times was taiwan 3rd runner-up? | SELECT MAX(3 AS rd_runner_up) FROM table_28634206_1 WHERE country = "Taiwan" | sql_create_context |
CREATE TABLE table_11023 (
"Country" text,
"Alternate title/Translation" text,
"TV network(s)" text,
"Series premiere" text,
"Weekly schedule" text
) | What is the alternate title/translation of the series that premiered on December 12, 2006? | SELECT "Alternate title/Translation" FROM table_11023 WHERE "Series premiere" = 'december 12, 2006' | wikisql |
CREATE TABLE diagnosis (
diagnosisid number,
patientunitstayid number,
diagnosisname text,
diagnosistime time,
icd9code text
)
CREATE TABLE patient (
uniquepid text,
patienthealthsystemstayid number,
patientunitstayid number,
gender text,
age text,
ethnicity text,
hospit... | how much does a procedure known as antibacterials - cephalosporin cost? | SELECT DISTINCT cost.cost FROM cost WHERE cost.eventtype = 'treatment' AND cost.eventid IN (SELECT treatment.treatmentid FROM treatment WHERE treatment.treatmentname = 'antibacterials - cephalosporin') | eicu |
CREATE TABLE CloseAsOffTopicReasonTypes (
Id number,
IsUniversal boolean,
InputTitle text,
MarkdownInputGuidance text,
MarkdownPostOwnerGuidance text,
MarkdownPrivilegedUserGuidance text,
MarkdownConcensusDescription text,
CreationDate time,
CreationModeratorId number,
ApprovalDa... | users who took a long break from posting on an SE site?. http://meta.stackexchange.com/questions/245972/how-to-find-the-users-who-took-a-long-break-from-posting-on-an-se-site#245972 | SELECT Users.Id, Users.EmailHash, Users.WebsiteUrl FROM Users WHERE Users.CreationDate >= '##year:int##' AND Users.Location LIKE '%##location##%' | sede |
CREATE TABLE food_service (
meal_code text,
meal_number int,
compartment text,
meal_description varchar
)
CREATE TABLE aircraft (
aircraft_code varchar,
aircraft_description varchar,
manufacturer varchar,
basic_type varchar,
engines int,
propulsion varchar,
wide_body varchar... | what are the flights from DENVER to SAN FRANCISCO | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, flight WHERE CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'DENVER' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'SAN FRA... | atis |
CREATE TABLE table_name_52 (
gold INTEGER,
bronze VARCHAR,
total VARCHAR,
silver VARCHAR,
rank VARCHAR
) | What is the gold when silver is 1, rank is larger than 3, total is smaller than 2, bronze is smaller than 0? | SELECT SUM(gold) FROM table_name_52 WHERE silver = 1 AND rank > 3 AND total < 2 AND bronze < 0 | sql_create_context |
CREATE TABLE table_13178 (
"7:00 am" text,
"7:30 am" text,
"8:00 am" text,
"9:00 am" text,
"10:00 am" text,
"11:00 am" text,
"noon" text,
"12:30 pm" text,
"1:00 pm" text,
"1:30 pm" text,
"2:00 pm" text,
"3:00 pm" text,
"4:30 pm" text,
"5:00 pm" text,
"6:30 pm"... | What airs at 7:00 am when The Big Cartoonie Show airs at 3pm? | SELECT "7:00 am" FROM table_13178 WHERE "3:00 pm" = 'the big cartoonie show' | wikisql |
CREATE TABLE table_71868 (
"Team" text,
"1st Match" text,
"Matches" text,
"Lost" text,
"% Won" text
) | Name the matches for gold coast | SELECT "Matches" FROM table_71868 WHERE "Team" = 'gold coast' | wikisql |
CREATE TABLE table_2233 (
"Pos" text,
"No" text,
"Driver" text,
"Constructor" text,
"Part 1" text,
"Part 2" text,
"Part 3" text,
"Grid" text
) | Who was the driver when the time in part 3 was 1:31.386? | SELECT "Driver" FROM table_2233 WHERE "Part 1" = '1:31.386' | wikisql |
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,
... | what is diagnoses icd9 code of subject id 19420? | SELECT diagnoses.icd9_code FROM diagnoses WHERE diagnoses.subject_id = "19420" | mimicsql_data |
CREATE TABLE table_name_26 (
tie_no VARCHAR,
date VARCHAR,
away_team VARCHAR
) | What is the tie number in the game on 5 January 1986 where Exeter City is the away team? | SELECT tie_no FROM table_name_26 WHERE date = "5 january 1986" AND away_team = "exeter city" | sql_create_context |
CREATE TABLE table_11501 (
"party" text,
"Manhattan" text,
"The Bronx" text,
"Brooklyn" text,
"Queens" text,
"Richmond [Staten Is.]" text,
"Total" real
) | How many voters were in Manhattan when 181,639 people voted in the Bronx? | SELECT "Richmond [Staten Is.]" FROM table_11501 WHERE "The Bronx" = '181,639' | wikisql |
CREATE TABLE table_10595 (
"Location" text,
"Venue" text,
"Promotion" text,
"Event" text,
"Inductee(s)" text
) | What is the promotion when the event was Acid-fest? | SELECT "Promotion" FROM table_10595 WHERE "Event" = 'acid-fest' | wikisql |
CREATE TABLE table_48846 (
"Result" text,
"Opponent" text,
"Method" text,
"Date" text,
"Round" real
) | Which Round has a Method of ko, and a Date of 1958? | SELECT MIN("Round") FROM table_48846 WHERE "Method" = 'ko' AND "Date" = '1958' | wikisql |
CREATE TABLE table_12206918_2 (
opponent VARCHAR,
date VARCHAR
) | How many opponents fought on 1982-12-03? | SELECT COUNT(opponent) FROM table_12206918_2 WHERE date = "1982-12-03" | sql_create_context |
CREATE TABLE table_15984 (
"Week" real,
"Dance/song" text,
"Horwood" text,
"Goodman" text,
"Dixon" text,
"Tonioli" text,
"Total" text,
"Result" text
) | How many songs received a 10 from Goodman and were rated by Tonioli? | SELECT COUNT("Tonioli") FROM table_15984 WHERE "Goodman" = '10' | wikisql |
CREATE TABLE plays_games (
stuid number,
gameid number,
hours_played number
)
CREATE TABLE video_games (
gameid number,
gname text,
gtype text
)
CREATE TABLE sportsinfo (
stuid number,
sportname text,
hoursperweek number,
gamesplayed number,
onscholarship text
)
CREATE TAB... | How many different students play games? | SELECT COUNT(DISTINCT stuid) FROM plays_games | spider |
CREATE TABLE table_name_83 (
played INTEGER,
drawn VARCHAR,
points VARCHAR
) | Which average Played has a Drawn smaller than 1, and Points larger than 4? | SELECT AVG(played) FROM table_name_83 WHERE drawn < 1 AND points > 4 | sql_create_context |
CREATE TABLE hz_info (
KH text,
KLX number,
YLJGDM text,
RYBH text
)
CREATE TABLE zyjzjlb (
YLJGDM text,
JZLSH text,
MZJZLSH text,
KH text,
KLX number,
HZXM text,
WDBZ number,
RYDJSJ time,
RYTJDM number,
RYTJMC text,
JZKSDM text,
JZKSMC text,
RZBQDM t... | 在检验结果指标记录03911398238中结果定性和结果定量还有其定量单位是如何记录的? | SELECT JCZBJGDX, JCZBJGDL, JCZBJGDW FROM jyjgzbb WHERE JYZBLSH = '03911398238' | css |
CREATE TABLE table_46201 (
"Lane" real,
"Name" text,
"Country" text,
"Mark" text,
"React" real,
"Points" real
) | What mark has over 813 points in the United States, and a 0.152 react? | SELECT "Mark" FROM table_46201 WHERE "Points" > '813' AND "Country" = 'united states' AND "React" > '0.152' | wikisql |
CREATE TABLE table_name_11 (
grid VARCHAR,
laps VARCHAR,
driver VARCHAR
) | How many grids have less than 41 laps and a Driver of pedro de la rosa? | SELECT COUNT(grid) FROM table_name_11 WHERE laps < 41 AND driver = "pedro de la rosa" | sql_create_context |
CREATE TABLE table_7670 (
"Rank" real,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
) | What kind of Silver has a Nation of norway and a Gold smaller than 3? | SELECT SUM("Silver") FROM table_7670 WHERE "Nation" = 'norway' AND "Gold" < '3' | wikisql |
CREATE TABLE table_name_36 (
name VARCHAR,
launch VARCHAR,
hanzi VARCHAR
) | Which company launched in 1996 and has a Hanzi of ? | SELECT name FROM table_name_36 WHERE launch = "1996" AND hanzi = "凤凰卫视中文台" | sql_create_context |
CREATE TABLE table_10749367_3 (
test_taker VARCHAR,
_number VARCHAR
) | Who took test #4? | SELECT test_taker FROM table_10749367_3 WHERE _number = 4 | sql_create_context |
CREATE TABLE t_kc22 (
AMOUNT number,
CHA_ITEM_LEV number,
DATA_ID text,
DIRE_TYPE number,
DOSE_FORM text,
DOSE_UNIT text,
EACH_DOSAGE text,
EXP_OCC_DATE time,
FLX_MED_ORG_ID text,
FXBZ number,
HOSP_DOC_CD text,
HOSP_DOC_NM text,
MED_CLINIC_ID text,
MED_DIRE_CD tex... | 编号为6281887的这个医院的医疗记录中,入院诊断为J30.696的最少医疗费总额是多少?最多医疗费总额是多少 | SELECT MIN(t_kc24.MED_AMOUT), MAX(t_kc24.MED_AMOUT) FROM t_kc24 WHERE t_kc24.MED_CLINIC_ID IN (SELECT t_kc24.MED_CLINIC_ID FROM t_kc24 WHERE t_kc24.t_kc21_MED_SER_ORG_NO = '6281887' AND t_kc24.t_kc21_IN_DIAG_DIS_CD = 'J30.696') | css |
CREATE TABLE table_14278 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"Location" text,
"Record" text
) | Who is the opponent of the game with a game number larger than 5 on June 22? | SELECT "Opponent" FROM table_14278 WHERE "Game" > '5' AND "Date" = 'june 22' | wikisql |
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 TAB... | Try and find deleted BLCR question. | SELECT Body FROM Posts WHERE LOWER(Body) LIKE '%blcr%' | sede |
CREATE TABLE ReviewRejectionReasons (
Id number,
Name text,
Description text,
PostTypeId number
)
CREATE TABLE VoteTypes (
Id number,
Name text
)
CREATE TABLE Posts (
Id number,
PostTypeId number,
AcceptedAnswerId number,
ParentId number,
CreationDate time,
DeletionDate... | Number of Questions answered by Users In MonthWise. | SELECT COUNT(A.Id) AS Answers FROM Posts AS A INNER JOIN Users AS U ON A.OwnerUserId = U.Id WHERE NOT A.ParentId IS NULL AND U.Id = '##UserId##' | sede |
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
)
C... | give me the number of patients whose year of birth is less than 2041 and drug route is sc? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.dob_year < "2041" AND prescriptions.route = "SC" | mimicsql_data |
CREATE TABLE ReviewTaskResultTypes (
Id number,
Name text,
Description text
)
CREATE TABLE ReviewTaskResults (
Id number,
ReviewTaskId number,
ReviewTaskResultTypeId number,
CreationDate time,
RejectionReasonId number,
Comment text
)
CREATE TABLE PostHistoryTypes (
Id number,
... | Questions with lots of answers, but none upvoted. Shows questions that have no upvoted answers, sorted by the number of answers. | SELECT q.Id AS "post_link", COUNT(a.Id) AS Answers FROM Posts AS q INNER JOIN Posts AS a ON a.ParentId = q.Id WHERE NOT EXISTS(SELECT Id FROM Posts AS a WHERE a.ParentId = q.Id AND a.Score > 0) GROUP BY q.Id ORDER BY COUNT(a.Id) DESC, q.Id | sede |
CREATE TABLE Roles (
Role_Code CHAR(15),
Role_Name VARCHAR(255),
Role_Description VARCHAR(255)
)
CREATE TABLE Ref_Locations (
Location_Code CHAR(15),
Location_Name VARCHAR(255),
Location_Description VARCHAR(255)
)
CREATE TABLE Documents_to_be_Destroyed (
Document_ID INTEGER,
Destructio... | How many documents are stored? Bin the store date by weekday in a bar chart, and order by the y-axis from low to high. | SELECT Date_Stored, COUNT(Date_Stored) FROM All_Documents AS T1 JOIN Ref_Calendar AS T2 ON T1.Date_Stored = T2.Calendar_Date ORDER BY COUNT(Date_Stored) | nvbench |
CREATE TABLE table_name_79 (
name VARCHAR,
nationality VARCHAR,
rank VARCHAR,
heat VARCHAR
) | Who is from the united states, has a rank less than 9, and heat more than 5? | SELECT name FROM table_name_79 WHERE rank < 9 AND heat > 5 AND nationality = "united states" | sql_create_context |
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 a... | when was the first time in the previous day that patient 027-203413 has had a versed intake? | SELECT intakeoutput.intakeoutputtime FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '027-203413')) AND intakeoutput.cellpath LIKE '%intake... | eicu |
CREATE TABLE table_name_89 (
year INTEGER,
accolade VARCHAR,
rank VARCHAR
) | Name the highest year with rank of 22 and accolade of singles of 1999 | SELECT MAX(year) FROM table_name_89 WHERE accolade = "singles of 1999" AND rank = "22" | sql_create_context |
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 cost (
costid number,
uniquepi... | count the number of patients who have been on enteral tube intake: nasogastric nostril, l 12fr intake. | SELECT COUNT(DISTINCT patient.uniquepid) FROM patient WHERE patient.patientunitstayid IN (SELECT intakeoutput.patientunitstayid FROM intakeoutput WHERE intakeoutput.celllabel = 'enteral tube intake: nasogastric nostril, l 12fr' AND intakeoutput.cellpath LIKE '%input%') | eicu |
CREATE TABLE table_28344 (
"Road race" text,
"Distance" text,
"Location" text,
"Country" text,
"Month held" text
) | What are all of the area where distance is marathon and month held is february | SELECT "Location" FROM table_28344 WHERE "Distance" = 'Marathon' AND "Month held" = 'February' | wikisql |
CREATE TABLE table_29942205_1 (
country_territory VARCHAR
) | How many women has got the first runner-up position in representation of Philippines? | SELECT 1 AS st_runner_up FROM table_29942205_1 WHERE country_territory = "Philippines" | sql_create_context |
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 procedures_icd (
row_id number,
subject_id number,
hadm_id number,
icd9_code text,
... | who is diagnosed with tot anom pulm ven connec? | SELECT admissions.subject_id FROM admissions WHERE admissions.hadm_id IN (SELECT diagnoses_icd.hadm_id FROM diagnoses_icd WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'tot anom pulm ven connec')) | mimic_iii |
CREATE TABLE program (
program_id int,
name varchar,
college varchar,
introduction 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... | When will they be offering Latin American Society and Culture ? | SELECT DISTINCT course_offering.end_time, course_offering.friday, course_offering.monday, course_offering.saturday, course_offering.start_time, course_offering.sunday, course_offering.thursday, course_offering.tuesday, course_offering.wednesday FROM semester INNER JOIN course_offering ON semester.semester_id = course_o... | advising |
CREATE TABLE jyjgzbb (
BGDH text,
BGRQ time,
CKZFWDX text,
CKZFWSX number,
CKZFWXX number,
JCFF text,
JCRGH text,
JCRXM text,
JCXMMC text,
JCZBDM text,
JCZBJGDL number,
JCZBJGDW text,
JCZBJGDX text,
JCZBMC text,
JLDW text,
JYRQ time,
JYZBLSH text,
... | 在医院4316976中列举出患者81533659门诊诊断名称包含相的门诊就诊记录有哪些? | SELECT * FROM hz_info JOIN mzjzjlb JOIN person_info_hz_info JOIN person_info ON hz_info.YLJGDM = mzjzjlb.YLJGDM AND hz_info.KH = mzjzjlb.KH AND hz_info.KLX = mzjzjlb.KLX AND person_info_hz_info.KH = hz_info.KH AND person_info_hz_info.KLX = hz_info.KLX AND person_info_hz_info.YLJGDM = hz_info.YLJGDM AND person_info_hz_i... | css |
CREATE TABLE table_204_312 (
id number,
"stage" text,
"date" text,
"route" text,
"terrain" text,
"length" text,
"winner" text
) | how many miles is the metz - nancy route ? | SELECT "length" FROM table_204_312 WHERE "route" = 'metz - nancy' | squall |
CREATE TABLE table_7497 (
"Unemployment" text,
"2007-03" real,
"2008-03" real,
"2009-03" real,
"2010-03" real,
"2011-03" real,
"2012-03" real
) | What is the highest 2010-03, when 2008-03 is less than 9.9, when 2011-03 is less than 11.8, and when Unemployment is Czech Republic? | SELECT MAX("2010-03") FROM table_7497 WHERE "2008-03" < '9.9' AND "2011-03" < '11.8' AND "Unemployment" = 'czech republic' | wikisql |
CREATE TABLE table_23392257_4 (
original_airdate VARCHAR,
_number VARCHAR
) | What date did Episode 22 originally air? | SELECT COUNT(original_airdate) FROM table_23392257_4 WHERE _number = 22 | sql_create_context |
CREATE TABLE table_203_269 (
id number,
"season" text,
"competition" text,
"round" text,
"club" text,
"home" text,
"away" text,
"aggregate" text
) | what is the last competition they competed in ? | SELECT "competition" FROM table_203_269 ORDER BY id DESC LIMIT 1 | squall |
CREATE TABLE table_203_695 (
id number,
"draw" number,
"artist" text,
"song" text,
"points" number,
"place" text
) | in the irish national final for the eurovision song contest in 1990 , the artist singing which song received third place ? | SELECT "artist" FROM table_203_695 WHERE "place" = 3 | squall |
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,
... | Out of the total number of patients who died in or before the year 2174, how many of them had neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues\bone marrow transplant as their primary disease? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "NEOPLASM OF UNCERTAIN BEHAVIOR OF OTHER LYMPHATIC AND HEMATOPOIETIC TISSUES\BONE MARROW TRANSPLANT" AND demographic.dod_year <= "2174.0" | mimicsql_data |
CREATE TABLE table_name_75 (
week INTEGER,
winning_team VARCHAR,
event VARCHAR
) | How many weeks have a Winning team of yellow team, and an Event of foos it or lose it? | SELECT SUM(week) FROM table_name_75 WHERE winning_team = "yellow team" AND event = "foos it or lose it" | sql_create_context |
CREATE TABLE bdmzjzjlb (
HXPLC number,
HZXM text,
JLSJ time,
JZJSSJ time,
JZKSBM text,
JZKSMC text,
JZKSRQ time,
JZLSH number,
JZZDBM text,
JZZDSM text,
JZZTDM number,
JZZTMC text,
KH text,
KLX number,
MJZH text,
ML number,
MZZYZDZZBM text,
MZZYZDZ... | 在医院7400991就诊的病号尤安晏其就诊的科室名称包含肝胆科的全部门诊就诊记录的流水号是什么? | SELECT wdmzjzjlb.JZLSH FROM person_info JOIN hz_info JOIN wdmzjzjlb ON person_info.RYBH = hz_info.RYBH AND hz_info.YLJGDM = wdmzjzjlb.YLJGDM AND hz_info.KH = wdmzjzjlb.KH AND hz_info.KLX = wdmzjzjlb.KLX WHERE person_info.XM = '尤安晏' AND hz_info.YLJGDM = '7400991' AND wdmzjzjlb.JZKSMC LIKE '%肝胆科%' UNION SELECT bdmzjzjlb.... | css |
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 procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
... | what is the number of patients whose ethnicity is white - russian and drug name is topiramate (topamax)? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.ethnicity = "WHITE - RUSSIAN" AND prescriptions.drug = "Topiramate (Topamax)" | mimicsql_data |
CREATE TABLE table_28704 (
"Rank" real,
"Athlete" text,
"Country" text,
"Distance (metres)" text,
"Points" text,
"Adjusted Points" real
) | What is the total number of times points were listed when the distance was 41.05 metres? | SELECT COUNT("Points") FROM table_28704 WHERE "Distance (metres)" = '41.05' | wikisql |
CREATE TABLE table_35523 (
"Position" real,
"Team" text,
"Played" real,
"Wins" real,
"Draws" real,
"Losses" real,
"Scored" real,
"Conceded" real,
"Points" real
) | What was the lowest number of wins for the team that scored more than 14 points and had a position of 7? | SELECT MIN("Wins") FROM table_35523 WHERE "Position" = '7' AND "Scored" > '14' | wikisql |
CREATE TABLE departments (
DEPARTMENT_ID decimal(4,0),
DEPARTMENT_NAME varchar(30),
MANAGER_ID decimal(6,0),
LOCATION_ID decimal(4,0)
)
CREATE TABLE countries (
COUNTRY_ID varchar(2),
COUNTRY_NAME varchar(40),
REGION_ID decimal(10,0)
)
CREATE TABLE employees (
EMPLOYEE_ID decimal(6,0),... | For those employees who do not work in departments with managers that have ids between 100 and 200, give me the comparison about employee_id over the email , and I want to display in ascending by the y axis. | SELECT EMAIL, EMPLOYEE_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY EMPLOYEE_ID | nvbench |
CREATE TABLE table_22358 (
"No. in series" real,
"Title" text,
"Directed by" text,
"Written by" text,
"Original air date" text,
"U.S. viewers (in millions)" text
) | What was the title of the episode directed by John T. Kretchmer? | SELECT "Title" FROM table_22358 WHERE "Directed by" = 'John T. Kretchmer' | wikisql |
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... | count the number of patients whose admission type is newborn and procedure short title is vaccination nec? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admission_type = "NEWBORN" AND procedures.short_title = "Vaccination NEC" | mimicsql_data |
CREATE TABLE table_241 (
"Model" text,
"Engine make/Capacity" text,
"Power kW@rpm" text,
"Torque Nm@rpm" text,
"Transmission Make/Type/Speed" text,
"GVM (kg) Technical Capacity" text,
"GCM (kg) Technical Capacity" text
) | Which model number has a GVM (kg) Technical Capacity of 16000 and a Torque Nm@rpm of 600 @ 1700? | SELECT "Model" FROM table_241 WHERE "GVM (kg) Technical Capacity" = '16000' AND "Torque Nm@rpm" = '600 @ 1700' | wikisql |
CREATE TABLE table_204_38 (
id number,
"date" text,
"opponent#" text,
"rank#" text,
"site" text,
"result" text
) | were the results of the game of november 14 above or below the results of the october 17 game ? | SELECT (SELECT "result" FROM table_204_38 WHERE "date" = 'november 14') > (SELECT "result" FROM table_204_38 WHERE "date" = 'october 17') | squall |
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... | Get upvoted answers where question doesn t have tag.. | SELECT * FROM Posts | sede |
CREATE TABLE table_17648 (
"#" real,
"Athlete" text,
"Shooting" text,
"Fencing" text,
"Swimming" text,
"Riding" text,
"Running" text,
"Total" real
) | What is the numberof running wiht pamela zapata? | SELECT COUNT("Running") FROM table_17648 WHERE "Athlete" = 'Pamela Zapata' | wikisql |
CREATE TABLE table_17596418_4 (
country VARCHAR,
p VARCHAR
) | What country has a P of GK? | SELECT country FROM table_17596418_4 WHERE p = "GK" | sql_create_context |
CREATE TABLE intakeoutput (
intakeoutputid number,
patientunitstayid number,
cellpath text,
celllabel text,
cellvaluenumeric number,
intakeoutputtime time
)
CREATE TABLE patient (
uniquepid text,
patienthealthsystemstayid number,
patientunitstayid number,
gender text,
age te... | what were the five drugs most frequently prescribed to the patients aged 50s during the same month after they had been diagnosed with septic shock until 2104? | SELECT t3.drugname FROM (SELECT t2.drugname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, diagnosis.diagnosistime FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'septic shock' AND STRFTIME('%y', diagnosis.diagnos... | eicu |
CREATE TABLE table_name_2 (
date INTEGER,
label VARCHAR,
catalog VARCHAR,
format VARCHAR
) | what is the earliest date for the album that had a catalog number of 3645, was formatted as a cd and was under the luaka bop label? | SELECT MIN(date) FROM table_name_2 WHERE catalog = "3645" AND format = "cd" AND label = "luaka bop" | sql_create_context |
CREATE TABLE table_52682 (
"Division" text,
"League Apps (Sub)" real,
"League Goals" real,
"FA Cup Apps (Sub)" text,
"FA Cup Goals" real,
"FL Cup Apps (Sub)" real,
"FL Cup Goals" real,
"Other Apps" real,
"Other Goals" real,
"Total Apps (Sub)" text,
"Total Goals" real
) | What is Division One's average Other Apps, with a League Goal less than 1? | SELECT AVG("Other Apps") FROM table_52682 WHERE "Division" = 'one' AND "League Goals" < '1' | wikisql |
CREATE TABLE table_name_96 (
runner_up VARCHAR,
year VARCHAR
) | Who was the runner-up in 2004? | SELECT runner_up FROM table_name_96 WHERE year = "2004" | sql_create_context |
CREATE TABLE mzb (
CLINIC_ID text,
COMP_ID text,
DATA_ID text,
DIFF_PLACE_FLG number,
FERTILITY_STS number,
FLX_MED_ORG_ID text,
HOSP_LEV number,
HOSP_STS number,
IDENTITY_CARD text,
INPT_AREA_BED text,
INSURED_IDENTITY number,
INSURED_STS text,
INSU_TYPE text,
IN... | 患者90955811自费金额高于1737.24元的药品量有多少,时间是在01年2月2日到07年3月1日内 | SELECT COUNT(*) FROM qtb JOIN t_kc22 ON qtb.MED_CLINIC_ID = t_kc22.MED_CLINIC_ID WHERE qtb.PERSON_ID = '90955811' AND t_kc22.STA_DATE BETWEEN '2001-02-02' AND '2007-03-01' AND t_kc22.SELF_PAY_AMO > 1737.24 UNION SELECT COUNT(*) FROM gyb JOIN t_kc22 ON gyb.MED_CLINIC_ID = t_kc22.MED_CLINIC_ID WHERE gyb.PERSON_ID = '9095... | css |
CREATE TABLE mzjzjlb (
HXPLC number,
HZXM text,
JLSJ time,
JZJSSJ time,
JZKSBM text,
JZKSMC text,
JZKSRQ time,
JZLSH text,
JZZDBM text,
JZZDSM text,
JZZTDM number,
JZZTMC text,
KH text,
KLX number,
MJZH text,
ML number,
MZZYZDZZBM text,
MZZYZDZZMC ... | 在医院6694678魏丽文就诊的患者其入院的科室名称里含有传染科这几个字的住院诊断记录共有哪几条? | SELECT * FROM hz_info JOIN zyjzjlb ON hz_info.YLJGDM = zyjzjlb.YLJGDM AND hz_info.KH = zyjzjlb.KH AND hz_info.KLX = zyjzjlb.KLX WHERE hz_info.person_info_XM = '魏丽文' AND hz_info.YLJGDM = '6694678' AND zyjzjlb.JZKSMC LIKE '%传染科%' | css |
CREATE TABLE table_204_237 (
id number,
"season" text,
"average" number,
"high" number,
"low" number,
"season tickets" number
) | how many seasons at the stadio ennio tardini had 11,000 or more season tickets ? | SELECT COUNT("season") FROM table_204_237 WHERE "season tickets" >= 11000 | squall |
CREATE TABLE table_42237 (
"AIRLINE" text,
"AIRLINE (in Arabic)" text,
"ICAO" text,
"CALLSIGN" text,
"COMMENCED OPERATIONS" real
) | What callsign has commenced operations in 2011? | SELECT "CALLSIGN" FROM table_42237 WHERE "COMMENCED OPERATIONS" = '2011' | wikisql |
CREATE TABLE table_name_80 (
prr_class VARCHAR,
wheel_arrangement VARCHAR,
total_produced VARCHAR
) | What is the PRR class for wheel arrangement c-c and total less than 15? | SELECT prr_class FROM table_name_80 WHERE wheel_arrangement = "c-c" AND total_produced < 15 | sql_create_context |
CREATE TABLE table_name_2 (
date_of_polling VARCHAR,
liberal VARCHAR,
polling_firm VARCHAR,
green VARCHAR
) | On what date of polling was the Polling Firm forum research with 7 green and less than 30 liberals? | SELECT date_of_polling FROM table_name_2 WHERE polling_firm = "forum research" AND green = 7 AND liberal < 30 | sql_create_context |
CREATE TABLE table_name_82 (
weekly_rank VARCHAR,
official_ratings__millions_ VARCHAR
) | Which Weekly Rank has an Official ratings (millions) of 11.58? | SELECT weekly_rank FROM table_name_82 WHERE official_ratings__millions_ = 11.58 | sql_create_context |
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 patient (
uniquep... | tell me the name of the drug that patient 022-187132 had been allergic to on this hospital visit? | SELECT allergy.drugname FROM allergy WHERE allergy.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '022-187132' AND patient.hospitaldischargetime IS NULL)) | eicu |
CREATE TABLE microlab (
microlabid number,
patientunitstayid number,
culturesite text,
organism text,
culturetakentime time
)
CREATE TABLE patient (
uniquepid text,
patienthealthsystemstayid number,
patientunitstayid number,
gender text,
age text,
ethnicity text,
hospita... | indicate the daily minimum volume of nephrostomy that patient 007-7646 has had since 142 days ago. | SELECT MIN(intakeoutput.cellvaluenumeric) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '007-7646')) AND intakeoutput.celllabel = 'nephro... | eicu |
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_... | what flights can i take between BOSTON and ATLANTA so that when i leave BOSTON i will have the maximum amount of time on the ground in ATLANTA and still return in the same day | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, flight WHERE ((CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'ATLANTA' AND flight.arrival_time = (SELECT MIN(FLIGHTalias1.arrival_time) FROM airport_s... | atis |
CREATE TABLE Votes (
Id number,
PostId number,
VoteTypeId number,
UserId number,
CreationDate time,
BountyAmount number
)
CREATE TABLE PostLinks (
Id number,
CreationDate time,
PostId number,
RelatedPostId number,
LinkTypeId number
)
CREATE TABLE TagSynonyms (
Id number... | Unanswered questions beginning with a keyword. | SELECT p.CreationDate, p.Id AS "post_link", p.Body FROM Posts AS p WHERE (p.PostTypeId = 1 AND p.Score < 3 AND COALESCE(p.AnswerCount, 0) = 0 AND ClosedDate IS NULL AND p.Body LIKE '<p>##Keyword##%') ORDER BY p.Id DESC | sede |
CREATE TABLE t_kc24 (
ACCOUNT_DASH_DATE time,
ACCOUNT_DASH_FLG number,
CASH_PAY number,
CIVIL_SUBSIDY number,
CKC102 number,
CLINIC_ID text,
CLINIC_SLT_DATE time,
COMP_ID text,
COM_ACC_PAY number,
COM_PAY number,
DATA_ID text,
ENT_ACC_PAY number,
ENT_PAY number,
F... | 41547321号参保病人在14年11月21日到16年7月7日期间在门诊交了多少的手术费? | SELECT SUM(t_kc22.AMOUNT) FROM t_kc22 WHERE t_kc22.t_kc21_PERSON_ID = '41547321' AND t_kc22.t_kc21_CLINIC_TYPE = '门诊' AND t_kc22.STA_DATE BETWEEN '2014-11-21' AND '2016-07-07' AND t_kc22.MED_INV_ITEM_TYPE = '手术费' | css |
CREATE TABLE table_22460 (
"Township" text,
"County" text,
"Pop. (2010)" real,
"Land ( sqmi )" text,
"Water (sqmi)" text,
"Latitude" text,
"Longitude" text,
"GEO ID" real,
"ANSI code" real
) | what is the lowest geo id? | SELECT MIN("GEO ID") FROM table_22460 | wikisql |
CREATE TABLE countries (
COUNTRY_ID varchar(2),
COUNTRY_NAME varchar(40),
REGION_ID decimal(10,0)
)
CREATE TABLE locations (
LOCATION_ID decimal(4,0),
STREET_ADDRESS varchar(40),
POSTAL_CODE varchar(12),
CITY varchar(30),
STATE_PROVINCE varchar(25),
COUNTRY_ID varchar(2)
)
CREATE T... | For all employees who have the letters D or S in their first name, return a line chart about the change of commission_pct over hire_date . | SELECT HIRE_DATE, COMMISSION_PCT FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' | nvbench |
CREATE TABLE gwyjzb (
CLINIC_ID text,
CLINIC_TYPE text,
COMP_ID text,
DATA_ID text,
DIFF_PLACE_FLG number,
FERTILITY_STS number,
FLX_MED_ORG_ID text,
HOSP_LEV number,
HOSP_STS number,
IDENTITY_CARD text,
INPT_AREA_BED text,
INSURED_IDENTITY number,
INSURED_STS text,
... | 在医院7336183所有就诊记录里面依科室编码差别算出统筹基金的花费比上医疗总费用的平均比值 | SELECT gwyjzb.MED_ORG_DEPT_CD, AVG(t_kc24.OVE_PAY) FROM gwyjzb JOIN t_kc24 ON gwyjzb.MED_CLINIC_ID = t_kc24.MED_CLINIC_ID WHERE gwyjzb.MED_SER_ORG_NO = '7336183' GROUP BY gwyjzb.MED_ORG_DEPT_CD UNION SELECT fgwyjzb.MED_ORG_DEPT_CD, AVG(t_kc24.OVE_PAY) FROM fgwyjzb JOIN t_kc24 ON fgwyjzb.MED_CLINIC_ID = t_kc24.MED_CLINI... | css |
CREATE TABLE treatment (
treatmentid number,
patientunitstayid number,
treatmentname text,
treatmenttime time
)
CREATE TABLE vitalperiodic (
vitalperiodicid number,
patientunitstayid number,
temperature number,
sao2 number,
heartrate number,
respiration number,
systemicsysto... | is there any microbiological test result since 2101 for patient 025-28600's abscess? | SELECT COUNT(*) FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '025-28600')) AND microlab.culturesite = 'abscess' AND STRFTIME('%y', microlab.cult... | eicu |
CREATE TABLE treatment (
treatmentid number,
patientunitstayid number,
treatmentname text,
treatmenttime time
)
CREATE TABLE medication (
medicationid number,
patientunitstayid number,
drugname text,
dosage text,
routeadmin text,
drugstarttime time,
drugstoptime time
)
CREA... | tell me the sex of patient 017-49538. | SELECT DISTINCT patient.gender FROM patient WHERE patient.uniquepid = '017-49538' | eicu |
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 t... | show the number of patients with procedure icd code 8852 who are younger than 31 years. | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.age < "31" AND procedures.icd9_code = "8852" | mimicsql_data |
CREATE TABLE table_name_43 (
station VARCHAR,
number VARCHAR,
stop VARCHAR
) | Which station has a number less than 5 and an l stop? | SELECT station FROM table_name_43 WHERE number < 5 AND stop = "l" | sql_create_context |
CREATE TABLE table_255188_1 (
institution VARCHAR,
joined VARCHAR
) | What institution joined in 1988? | SELECT institution FROM table_255188_1 WHERE joined = 1988 | sql_create_context |
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... | Keyphrases used by jeffrey heer | SELECT DISTINCT keyphrase.keyphraseid FROM author, keyphrase, paper, paperkeyphrase, writes WHERE author.authorname = 'jeffrey heer' AND paperkeyphrase.keyphraseid = keyphrase.keyphraseid AND paper.paperid = paperkeyphrase.paperid AND writes.authorid = author.authorid AND writes.paperid = paper.paperid | scholar |
CREATE TABLE table_10203 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) | What was the venue where the away team scored 16.11 (107)? | SELECT "Venue" FROM table_10203 WHERE "Away team score" = '16.11 (107)' | wikisql |
CREATE TABLE table_name_68 (
memory VARCHAR,
clock VARCHAR,
number VARCHAR
) | What is the Memory for a Number 32 with a Clock of 2.26ghz? | SELECT memory FROM table_name_68 WHERE clock = "2.26ghz" AND number = 32 | sql_create_context |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.