instruction stringlengths 151 7.46k | output stringlengths 2 4.44k | source stringclasses 26
values |
|---|---|---|
CREATE TABLE table_name_53 (
mascot VARCHAR,
ihsaa_class VARCHAR,
location VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which Mascot has an IHSAA Class of aaa, and a Location of russiaville?
| SELECT mascot FROM table_name_53 WHERE ihsaa_class = "aaa" AND location = "russiaville" | sql_create_context |
CREATE TABLE table_28794440_1 (
station_type VARCHAR,
location VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What types of stations are located in Cebu?
| SELECT station_type FROM table_28794440_1 WHERE location = "Cebu" | sql_create_context |
CREATE TABLE table_45478 (
"Competition" text,
"Played" real,
"Draw" real,
"Lost" real,
"Favour" real,
"Against" real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- How many games did they lose when they tied less than 2 games?
| SELECT "Lost" FROM table_45478 WHERE "Draw" < '2' | wikisql |
CREATE TABLE table_4779 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- On which date was Essendon the home team?
| SELECT "Date" FROM table_4779 WHERE "Home team" = 'essendon' | wikisql |
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 procedures_icd (
row_id number,
subject_id number,
... | SELECT labevents.charttime FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 26286) AND STRFTIME('%y-%m', labevents.charttime) >= '2105-07' ORDER BY labevents.charttime LIMIT 1 | mimic_iii |
CREATE TABLE hz_info (
KH text,
KLX number,
RYBH text,
YLJGDM text
)
CREATE TABLE wdmzjzjlb (
CYBQDM text,
CYBQMC text,
CYCWH text,
CYKSDM text,
CYKSMC text,
CYSJ time,
CYZTDM number,
HZXM text,
JZKSDM text,
JZKSMC text,
JZLSH number,
KH text,
KLX num... | SELECT wdmzjzjlb.ZYZDBM, wdmzjzjlb.ZYZDMC FROM hz_info JOIN wdmzjzjlb ON hz_info.YLJGDM = wdmzjzjlb.YLJGDM AND hz_info.KH = wdmzjzjlb.KH AND hz_info.KLX = wdmzjzjlb.KLX WHERE hz_info.RYBH = '72383681' UNION SELECT bdmzjzjlb.ZYZDBM, bdmzjzjlb.ZYZDMC FROM hz_info JOIN bdmzjzjlb ON hz_info.YLJGDM = bdmzjzjlb.YLJGDM AND hz... | css |
CREATE TABLE election (
election_id number,
counties_represented text,
district number,
delegate text,
party number,
first_elected number,
committee text
)
CREATE TABLE county (
county_id number,
county_name text,
population number,
zip_code text
)
CREATE TABLE party (
... | SELECT AVG(population) FROM county | spider |
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 dual_carrier (
main_airline varchar,
low_flight_... | 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, food_service WHERE (CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'DENVER' AND flight.to_airport = AIRPORT_SERVICE_1.airport_code AND food_ser... | atis |
CREATE TABLE table_38506 (
"Position" real,
"Team" text,
"Points" real,
"Played" real,
"Drawn" real,
"Lost" real,
"Against" real,
"Difference" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the average number of points for a diff... | SELECT AVG("Points") FROM table_38506 WHERE "Difference" = '55' AND "Against" < '47' | wikisql |
CREATE TABLE table_name_94 (
week VARCHAR,
game_site VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What week was the game played at Rich Stadium?
| SELECT week FROM table_name_94 WHERE game_site = "rich stadium" | sql_create_context |
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... | SELECT COUNT(*) FROM zyb WHERE zyb.MED_TYPE = '7826174' AND zyb.IN_HOSP_DAYS BETWEEN '2006-12-24' AND '2014-02-10' | css |
CREATE TABLE table_56404 (
"Team" text,
"Outgoing manager" text,
"Manner of departure" text,
"Date of vacancy" text,
"Replaced by" text,
"Date of appointment" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- I want the replaced for date of appoint... | SELECT "Replaced by" FROM table_56404 WHERE "Date of appointment" = '12 october 2007' | wikisql |
CREATE TABLE table_41557 (
"City of license" text,
"Identifier" text,
"Frequency" text,
"Power" text,
"Class" text,
"RECNet" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What RECNet has 40 watts of power and temagami as the city of license?
| SELECT "RECNet" FROM table_41557 WHERE "Power" = '40 watts' AND "City of license" = 'temagami' | wikisql |
CREATE TABLE Votes (
Id number,
PostId number,
VoteTypeId number,
UserId number,
CreationDate time,
BountyAmount number
)
CREATE TABLE TagSynonyms (
Id number,
SourceTagName text,
TargetTagName text,
CreationDate time,
OwnerUserId number,
AutoRenameCount number,
Last... | SELECT COUNT(UserId) FROM SuggestedEditVotes INNER JOIN SuggestedEdits ON SuggestedEdits.Id = SuggestedEditVotes.SuggestedEditId WHERE TargetUserId = '##UserId##' AND VoteTypeId = 3 AND NOT SuggestedEdits.RejectionDate IS NULL | sede |
CREATE TABLE table_34248 (
"Kanji" text,
"Name" text,
"Builder" text,
"Laid down" text,
"Launched" text,
"Completed" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which name has a Kanji of ?
| SELECT "Name" FROM table_34248 WHERE "Kanji" = '朧' | wikisql |
CREATE TABLE t_kc24 (
MED_SAFE_PAY_ID text,
OVERALL_CD_ORG text,
OVERALL_CD_PERSON text,
MED_CLINIC_ID text,
REF_SLT_FLG number,
CLINIC_SLT_DATE time,
COMP_ID text,
PERSON_ID text,
FLX_MED_ORG_ID text,
INSU_TYPE text,
MED_AMOUT number,
PER_ACC_PAY number,
OVE_PAY numb... | SELECT IN_DIAG_DIS_CD, IN_DIAG_DIS_NM FROM t_kc21 WHERE PERSON_NM = '云乐人' AND MED_CLINIC_ID IN (SELECT MED_CLINIC_ID FROM t_kc24 WHERE MED_AMOUT > 1367.6) | css |
CREATE TABLE txmzjzjlb (
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... | SELECT txmzjzjlb.JZZDBM, txmzjzjlb.JZZDSM FROM txmzjzjlb WHERE txmzjzjlb.JZLSH = '77162330250' UNION SELECT ftxmzjzjlb.JZZDBM, ftxmzjzjlb.JZZDSM FROM ftxmzjzjlb WHERE ftxmzjzjlb.JZLSH = '77162330250' | css |
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 cost (
costid num... | SELECT vitalperiodic.observationtime FROM vitalperiodic WHERE vitalperiodic.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '025-45407')) AND vitalperiodic.sao2 > 86.0 AND NOT ... | eicu |
CREATE TABLE STUDENT (
STU_NUM int,
STU_LNAME varchar(15),
STU_FNAME varchar(15),
STU_INIT varchar(1),
STU_DOB datetime,
STU_HRS int,
STU_CLASS varchar(2),
STU_GPA float(8),
STU_TRANSFER numeric,
DEPT_CODE varchar(18),
STU_PHONE varchar(4),
PROF_NUM int
)
CREATE TABLE PR... | SELECT DEPT_CODE, COUNT(*) FROM STUDENT GROUP BY DEPT_CODE ORDER BY COUNT(*) DESC | nvbench |
CREATE TABLE t_kc21_t_kc22 (
MED_CLINIC_ID text,
MED_EXP_DET_ID number
)
CREATE TABLE t_kc21 (
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 ... | SELECT t_kc22.SOC_SRT_DIRE_CD, t_kc22.SOC_SRT_DIRE_NM FROM t_kc22 JOIN t_kc21_t_kc22 JOIN t_kc21 ON t_kc21_t_kc22.MED_EXP_DET_ID = t_kc22.MED_EXP_DET_ID AND t_kc21_t_kc22.MED_CLINIC_ID = t_kc21.MED_CLINIC_ID WHERE t_kc21.MED_CLINIC_ID = '89843781622' AND t_kc22.OVE_SELF_AMO > 2412.64 | css |
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 countries (
COUNTRY_ID varchar(2),
COUNTRY_NAME varchar(40),
REGION_ID decimal(10,0)
)
CREATE TABLE jobs (
JOB_ID varchar(10),
JOB_... | SELECT HIRE_DATE, AVG(MANAGER_ID) FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40 ORDER BY AVG(MANAGER_ID) | nvbench |
CREATE TABLE table_1466 (
"Season" text,
"Winner" text,
"Winning Song" text,
"Winning Song (English Title)" text,
"Debut Album" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- How many debut albums did mike mohede have?
| SELECT COUNT("Debut Album") FROM table_1466 WHERE "Winner" = 'Mike Mohede' | wikisql |
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... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.ethnicity = "ASIAN" AND lab.label = "Globulin" | mimicsql_data |
CREATE TABLE zyjzjlb (
CYBQDM text,
CYBQMC text,
CYCWH text,
CYKSDM text,
CYKSMC text,
CYSJ time,
CYZTDM number,
HZXM text,
JZKSDM text,
JZKSMC text,
JZLSH text,
KH text,
KLX number,
MZBMLX number,
MZJZLSH text,
MZZDBM text,
MZZDMC text,
MZZYZDZZBM... | SELECT * FROM person_info JOIN hz_info JOIN zzmzjzjlb JOIN jybgb JOIN jyjgzbb ON person_info.RYBH = hz_info.RYBH AND hz_info.YLJGDM = zzmzjzjlb.YLJGDM AND hz_info.KH = zzmzjzjlb.KH AND hz_info.KLX = zzmzjzjlb.KLX AND zzmzjzjlb.YLJGDM = jybgb.YLJGDM_MZJZJLB AND zzmzjzjlb.JZLSH = jybgb.JZLSH_MZJZJLB AND jybgb.YLJGDM = jy... | css |
CREATE TABLE table_name_37 (
result VARCHAR,
year VARCHAR,
award VARCHAR,
category VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What was the result of the bodil award winning film from before 2005 in the best actress category?
| SELECT result FROM table_name_37 WHERE award = "bodil award" AND category = "best actress" AND year = 2005 | sql_create_context |
CREATE TABLE table_15797 (
"Character" text,
"Portrayed by" text,
"Main cast seasons" text,
"Recurring cast seasons" text,
"# of episodes" real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which main cast seasons were portrayed by Joe Jonas?
| SELECT "Main cast seasons" FROM table_15797 WHERE "Portrayed by" = 'joe jonas' | wikisql |
CREATE TABLE table_25332 (
"County" text,
"Population" real,
"Unemployment Rate" text,
"Market Income Per Capita" text,
"Poverty Rate" text,
"Status" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Name the unemployment rate for botetourt
| SELECT "Unemployment Rate" FROM table_25332 WHERE "County" = 'Botetourt' | wikisql |
CREATE TABLE table_67489 (
"Film" text,
"Director(s)" text,
"Writer(s)" text,
"Recipient" text,
"Date" text,
"Award" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Name the film for award of 3,740
| SELECT "Film" FROM table_67489 WHERE "Award" = '£3,740' | wikisql |
CREATE TABLE table_28028 (
"January\u2013September 2013" text,
"Birth/2013" real,
"Birth/2012" real,
"Death/2013" real,
"Death/2012" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What are the death/2012 number when death/2013 is 140 and January Sep... | SELECT "Death/2012" FROM table_28028 WHERE "Death/2013" = '140' AND "January\u2013September 2013" = 'Moscow Oblast' | wikisql |
CREATE TABLE table_name_85 (
total INTEGER,
gold VARCHAR,
rank VARCHAR,
silver VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the smallest total for a rank below 4, 0 silver medals, and 2 gold medals?
| SELECT MIN(total) FROM table_name_85 WHERE rank < 4 AND silver > 0 AND gold < 2 | sql_create_context |
CREATE TABLE Premises (
premise_id INTEGER,
premises_type VARCHAR(15),
premise_details VARCHAR(255)
)
CREATE TABLE Mailshot_Campaigns (
mailshot_id INTEGER,
product_category VARCHAR(15),
mailshot_name VARCHAR(80),
mailshot_start_date DATETIME,
mailshot_end_date DATETIME
)
CREATE TABLE ... | SELECT premises_type, COUNT(premises_type) FROM Customer_Addresses AS T1 JOIN Premises AS T2 ON T1.premise_id = T2.premise_id GROUP BY address_type_code, premises_type ORDER BY COUNT(premises_type) | nvbench |
CREATE TABLE table_name_8 (
new_returning_same_network VARCHAR,
retitled_as_same VARCHAR,
last_aired VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which New/Returning/Same Network has a Retitled as/Same of same, and a Last Aired larger than 1984?
| SELECT new_returning_same_network FROM table_name_8 WHERE retitled_as_same = "same" AND last_aired > 1984 | sql_create_context |
CREATE TABLE table_name_24 (
points VARCHAR,
drawn VARCHAR,
against VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the total number of points of the team with less than 4 drawn and an against of 34?
| SELECT COUNT(points) FROM table_name_24 WHERE drawn < 4 AND against = 34 | sql_create_context |
CREATE TABLE PROFESSOR (
EMP_NUM int,
DEPT_CODE varchar(10),
PROF_OFFICE varchar(50),
PROF_EXTENSION varchar(4),
PROF_HIGH_DEGREE varchar(5)
)
CREATE TABLE STUDENT (
STU_NUM int,
STU_LNAME varchar(15),
STU_FNAME varchar(15),
STU_INIT varchar(1),
STU_DOB datetime,
STU_HRS int... | SELECT DEPT_CODE, SUM(T1.CRS_CREDIT) FROM COURSE AS T1 JOIN CLASS AS T2 ON T1.CRS_CODE = T2.CRS_CODE GROUP BY T1.DEPT_CODE ORDER BY SUM(T1.CRS_CREDIT) DESC | nvbench |
CREATE TABLE table_2562572_25 (
settlement VARCHAR,
cyrillic_name_other_names VARCHAR,
dominant_religion__2002_ VARCHAR,
type VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- When is cyrillic name other names and village is the type and orthodox Christ... | SELECT settlement FROM table_2562572_25 WHERE dominant_religion__2002_ = "Orthodox Christianity" AND type = "village" AND cyrillic_name_other_names = "Ратково" | sql_create_context |
CREATE TABLE jobs (
job_id int,
job_title varchar,
description varchar,
requirement varchar,
city varchar,
state varchar,
country varchar,
zip int
)
CREATE TABLE gsi (
course_offering_id int,
student_id int
)
CREATE TABLE area (
course_id int,
area varchar
)
CREATE TAB... | SELECT COUNT(DISTINCT instructor.instructor_id) FROM course, course_offering, instructor, offering_instructor, semester WHERE course.course_id = course_offering.course_id AND course.department = 'SPACE' AND course.number = 582 AND offering_instructor.instructor_id = instructor.instructor_id AND offering_instructor.offe... | advising |
CREATE TABLE qtb (
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... | SELECT qtb.MED_CLINIC_ID FROM qtb WHERE qtb.PERSON_ID = '30139154' AND NOT qtb.MED_CLINIC_ID IN (SELECT t_kc22.MED_CLINIC_ID FROM t_kc22 WHERE t_kc22.AMOUNT <= 4566.82) UNION SELECT gyb.MED_CLINIC_ID FROM gyb WHERE gyb.PERSON_ID = '30139154' AND NOT gyb.MED_CLINIC_ID IN (SELECT t_kc22.MED_CLINIC_ID FROM t_kc22 WHERE t_... | css |
CREATE TABLE university (
School_ID int,
School text,
Location text,
Founded real,
Affiliation text,
Enrollment real,
Nickname text,
Primary_conference text
)
CREATE TABLE basketball_match (
Team_ID int,
School_ID int,
Team_Name text,
ACC_Regular_Season text,
ACC_Per... | SELECT ACC_Road, SUM(School_ID) FROM basketball_match GROUP BY ACC_Road | nvbench |
CREATE TABLE table_44502 (
"Date" text,
"Time" text,
"Score" text,
"Set 1" text,
"Set 2" text,
"Set 3" text,
"Total" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which Date has a Set 1 of 25 20?
| SELECT "Date" FROM table_44502 WHERE "Set 1" = '25–20' | wikisql |
CREATE TABLE locations (
LOCATION_ID decimal(4,0),
STREET_ADDRESS varchar(40),
POSTAL_CODE varchar(12),
CITY varchar(30),
STATE_PROVINCE varchar(25),
COUNTRY_ID varchar(2)
)
CREATE TABLE regions (
REGION_ID decimal(5,0),
REGION_NAME varchar(25)
)
CREATE TABLE employees (
EMPLOYEE_I... | SELECT JOB_ID, SUM(MANAGER_ID) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history) GROUP BY JOB_ID | nvbench |
CREATE TABLE table_33460 (
"Network" text,
"Origin of Programming" text,
"Language" text,
"Genre" text,
"Service" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which network's genre is music?
| SELECT "Network" FROM table_33460 WHERE "Genre" = 'music' | wikisql |
CREATE TABLE table_204_11 (
id number,
"year" number,
"fbs opponent" text,
"result" text,
"opponent's conference" text,
"opponent's head coach" text,
"charleston southern's head coach" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- the first... | SELECT "fbs opponent" FROM table_204_11 ORDER BY "year" LIMIT 1 | squall |
CREATE TABLE table_1675 (
"Series #" real,
"Season #" real,
"Title" text,
"Directed by" text,
"Written by" text,
"Original air date" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Who wrote season 10
| SELECT "Written by" FROM table_1675 WHERE "Season #" = '10' | wikisql |
CREATE TABLE table_67379 (
"Aircraft" text,
"Origin" text,
"Type" text,
"Versions" text,
"In service" real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- How many Antonov An-2 Colt aircraft are in service?
| SELECT AVG("In service") FROM table_67379 WHERE "Aircraft" = 'antonov an-2 colt' | wikisql |
CREATE TABLE table_14154271_2 (
rnd VARCHAR,
lmp2_winning_team VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Jos verstappen jeroen bleekemolen is on Imp2 winning team where all are rnd.
| SELECT rnd FROM table_14154271_2 WHERE lmp2_winning_team = "Jos Verstappen Jeroen Bleekemolen" | sql_create_context |
CREATE TABLE table_71084 (
"Parties and voter communities" text,
"% 2006" real,
"Seats 2006" real,
"% 2001" real,
"Seats 2001" real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- what is the seats 2006 total with %2001 of 39 and seats 2001 less than 12?
| SELECT MAX("Seats 2006") FROM table_71084 WHERE "% 2001" = '39' AND "Seats 2001" < '12' | wikisql |
CREATE TABLE table_16230 (
"1st players choice" text,
"2nd players choice" text,
"Probability 1st player wins" text,
"Probability 2nd player wins" text,
"Probability of a draw" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What are the chances that... | SELECT "Probability 2nd player wins" FROM table_16230 WHERE "1st players choice" = 'BB R' | wikisql |
CREATE TABLE table_name_60 (
rank INTEGER,
silver INTEGER
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which mean rank had a silver number smaller than 0?
| SELECT AVG(rank) FROM table_name_60 WHERE silver < 0 | sql_create_context |
CREATE TABLE table_name_20 (
built VARCHAR,
name VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- When was Moores Creek Bridge built?
| SELECT built FROM table_name_20 WHERE name = "moores creek bridge" | sql_create_context |
CREATE TABLE table_204_126 (
id number,
"place" text,
"player" text,
"country" text,
"score" text,
"to par" number,
"money ($)" number
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- what was first place 's difference to par ?
| SELECT "to par" FROM table_204_126 WHERE "place" = 1 | squall |
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 tex... | 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 (flight.to_airport = AIRPORT_SERVICE_0.airport_code AND CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'ATLANTA') OR (flight.from_airport ... | atis |
CREATE TABLE ReviewTaskTypes (
Id number,
Name text,
Description text
)
CREATE TABLE ReviewRejectionReasons (
Id number,
Name text,
Description text,
PostTypeId number
)
CREATE TABLE ReviewTasks (
Id number,
ReviewTaskTypeId number,
CreationDate time,
DeletionDate time,
... | SELECT * FROM Posts INNER JOIN PostTags ON Posts.Id = PostTags.PostId WHERE PostTags.TagId = 117274 ORDER BY Id DESC | sede |
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,
... | SELECT jyjgzbb.SHRGH, jyjgzbb.SHRXM FROM jyjgzbb WHERE jyjgzbb.JYZBLSH = '57209046031' | css |
CREATE TABLE table_22199 (
"HD designation" text,
"Constellation" text,
"Distance ( ly )" text,
"Spectral type" text,
"Signal power ( kW )" real,
"Date sent" text,
"Arrival date" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- If the spectral... | SELECT COUNT("Distance ( ly )") FROM table_22199 WHERE "Spectral type" = 'G1V' | wikisql |
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... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.age < "55" AND demographic.days_stay > "4" | mimicsql_data |
CREATE TABLE Tags (
Id number,
TagName text,
Count number,
ExcerptPostId number,
WikiPostId number
)
CREATE TABLE Posts (
Id number,
PostTypeId number,
AcceptedAnswerId number,
ParentId number,
CreationDate time,
DeletionDate time,
Score number,
ViewCount number,
... | SELECT Posts.Title, Comments.Text, Comments.Score, Posts.Id, Posts.ParentId FROM Comments INNER JOIN Posts ON Comments.PostId = Posts.Id WHERE UserId = @UserId ORDER BY Comments.Score DESC, Posts.ParentId, Posts.Id | sede |
CREATE TABLE table_35689 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Record" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Who was the visiting team when the record was 6 12 5 1?
| SELECT "Visitor" FROM table_35689 WHERE "Record" = '6–12–5–1' | wikisql |
CREATE TABLE table_8662 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Record" text,
"Game site" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What was the result on week 1?
| SELECT "Result" FROM table_8662 WHERE "Week" = '1' | wikisql |
CREATE TABLE table_78314 (
"Year of award" real,
"Athlete" text,
"Nation represented or nation of citizenship" text,
"Date(s)" text,
"Game or event" text,
"Sport" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- In 2011 which sport had the year aw... | SELECT "Sport" FROM table_78314 WHERE "Year of award" = '2011' | wikisql |
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,
... | SELECT COUNT(*) FROM gwyjzb WHERE gwyjzb.MED_SER_ORG_NO = '4663033' AND gwyjzb.IN_HOSP_DATE BETWEEN '2004-05-25' AND '2013-06-11' AND gwyjzb.INSURED_STS = '未就业' AND gwyjzb.MED_AMOUT >= 9829.08 UNION SELECT COUNT(*) FROM fgwyjzb WHERE fgwyjzb.MED_SER_ORG_NO = '4663033' AND fgwyjzb.IN_HOSP_DATE BETWEEN '2004-05-25' AND '... | css |
CREATE TABLE medication (
medicationid number,
patientunitstayid number,
drugname text,
dosage text,
routeadmin text,
drugstarttime time,
drugstoptime time
)
CREATE TABLE patient (
uniquepid text,
patienthealthsystemstayid number,
patientunitstayid number,
gender text,
a... | SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', patient.unitadmittime)) FROM patient WHERE patient.uniquepid = '030-52327' AND patient.unitdischargetime IS NULL | eicu |
CREATE TABLE table_8587 (
"Year" real,
"Network" text,
"Play-by-play" text,
"Color commentator" text,
"Sideline reporters" text,
"Pregame host" text,
"Pregame analysts" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Who does pregame analysts... | SELECT "Pregame analysts" FROM table_8587 WHERE "Color commentator" = 'taylor twellman' AND "Network" = 'tsn2' | wikisql |
CREATE TABLE t_kc21_t_kc22 (
MED_CLINIC_ID text,
MED_EXP_DET_ID number
)
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,
H... | SELECT * FROM t_kc21 WHERE t_kc21.MED_SER_ORG_NO = '6196587' AND t_kc21.IN_HOSP_DATE BETWEEN '2006-08-31' AND '2016-04-05' EXCEPT SELECT * FROM t_kc21 WHERE t_kc21.MED_SER_ORG_NO = '6196587' AND t_kc21.IN_HOSP_DATE BETWEEN '2006-08-31' AND '2016-04-05' AND t_kc21.REMOTE_SETTLE_FLG = '异地1' OR t_kc21.REMOTE_SETTLE_FLG = ... | css |
CREATE TABLE table_name_23 (
venue VARCHAR,
year VARCHAR,
notes VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the venue of the team race that was after 2008?
| SELECT venue FROM table_name_23 WHERE year > 2008 AND notes = "team" | sql_create_context |
CREATE TABLE table_41081 (
"Airline" text,
"Fleet Size" real,
"Notes" text,
"IOSA (IATA)" text,
"EASA (EU)" text,
"IASA (FAA)" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the EASA (EU) when the notes show aoc 135?
| SELECT "EASA (EU)" FROM table_41081 WHERE "Notes" = 'aoc 135' | wikisql |
CREATE TABLE table_36917 (
"Nation" text,
"Skip" text,
"Third" text,
"Second" text,
"Lead" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which Skip did marju velga lead?
| SELECT "Skip" FROM table_36917 WHERE "Lead" = 'marju velga' | wikisql |
CREATE TABLE table_25870 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- When t... | SELECT COUNT("Game") FROM table_25870 WHERE "Team" = 'Clippers' | wikisql |
CREATE TABLE university (
School_ID int,
School text,
Location text,
Founded real,
Affiliation text,
Enrollment real,
Nickname text,
Primary_conference text
)
CREATE TABLE basketball_match (
Team_ID int,
School_ID int,
Team_Name text,
ACC_Regular_Season text,
ACC_Per... | SELECT Team_Name, School_ID FROM basketball_match ORDER BY Team_Name | nvbench |
CREATE TABLE month (
month_number int,
month_name 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... | 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 FR... | atis |
CREATE TABLE table_15381 (
"Category" text,
"Film" text,
"Director(s)" text,
"Country" text,
"Nominating Festival" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Julio Robledo represents which country?
| SELECT "Country" FROM table_15381 WHERE "Director(s)" = 'julio robledo' | wikisql |
CREATE TABLE table_21330550_2 (
time VARCHAR,
acc_team VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What time was the acc team #17 wake forest?
| SELECT time FROM table_21330550_2 WHERE acc_team = "#17 Wake Forest" | sql_create_context |
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 demographic (... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.age < "41" AND lab.label = "Neutrophils" | mimicsql_data |
CREATE TABLE table_1140083_2 (
constructor VARCHAR,
rnd VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What was the constructor for round 15?
| SELECT constructor FROM table_1140083_2 WHERE rnd = 15 | sql_create_context |
CREATE TABLE table_10246 (
"Software" text,
"Calculations" text,
"Macros" text,
"Loci" text,
"Animations" text,
"Multilingual" text,
"Proofs" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Are there proofs in the Tabulae software?
| SELECT "Proofs" FROM table_10246 WHERE "Software" = 'tabulae' | wikisql |
CREATE TABLE hz_info_zyjzjlb (
JZLSH number,
YLJGDM number,
zyjzjlb_id number
)
CREATE TABLE hz_info (
KH text,
KLX number,
RYBH text,
YLJGDM text
)
CREATE TABLE person_info (
CSD text,
CSRQ time,
GJDM text,
GJMC text,
JGDM text,
JGMC text,
MZDM text,
MZMC t... | SELECT mzjzjlb.JZZDBM, mzjzjlb.JZZDSM FROM person_info JOIN hz_info JOIN mzjzjlb ON person_info.RYBH = hz_info.RYBH AND hz_info.YLJGDM = mzjzjlb.YLJGDM AND hz_info.KH = mzjzjlb.KH AND hz_info.KLX = mzjzjlb.KLX WHERE person_info.XM = '秦承平' | css |
CREATE TABLE table_19263 (
"Player" text,
"Position" text,
"Starter" text,
"Touchdowns" real,
"Extra points" real,
"Field goals" real,
"Points" real
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What position did Joe Maddock play?
| SELECT "Position" FROM table_19263 WHERE "Player" = 'Joe Maddock' | wikisql |
CREATE TABLE table_19161046_1 (
directx VARCHAR,
code_name VARCHAR,
core___mhz__ VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What's the directx of the model with code name RV770 PRO and a core bigger than 650.0 MHz?
| SELECT directx FROM table_19161046_1 WHERE code_name = "RV770 PRO" AND core___mhz__ > 650.0 | 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_DIRE_CD text,
MED_DIRE_NM text,... | SELECT t_kc21.MED_ORG_DEPT_CD, t_kc21.MED_ORG_DEPT_NM, AVG(t_kc21.IN_HOSP_DAYS) FROM t_kc21 WHERE t_kc21.MED_SER_ORG_NO = '7159417' GROUP BY t_kc21.MED_ORG_DEPT_CD ORDER BY AVG(t_kc21.IN_HOSP_DAYS) | css |
CREATE TABLE table_25624 (
"County" text,
"Gore %" text,
"Gore #" real,
"Bush %" text,
"Bush #" real,
"Others %" text,
"Others #" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Name the others % for bush number 1372
| SELECT "Others %" FROM table_25624 WHERE "Bush #" = '1372' | wikisql |
CREATE TABLE table_name_72 (
total INTEGER,
year_s__won VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What was the average round score of the player who won in 1978?
| SELECT AVG(total) FROM table_name_72 WHERE year_s__won = "1978" | sql_create_context |
CREATE TABLE broadcast_share (
Channel_ID int,
Program_ID int,
Date text,
Share_in_percent real
)
CREATE TABLE program (
Program_ID int,
Name text,
Origin text,
Launch real,
Owner text
)
CREATE TABLE broadcast (
Channel_ID int,
Program_ID int,
Time_of_day text
)
CREATE... | SELECT Owner, SUM(Rating_in_percent) FROM channel GROUP BY Owner ORDER BY Owner DESC | nvbench |
CREATE TABLE company (
company_id number,
rank number,
company text,
headquarters text,
main_industry text,
sales_billion number,
profits_billion number,
assets_billion number,
market_value number
)
CREATE TABLE gas_station (
station_id number,
open_year number,
location... | SELECT rank, company, market_value FROM company WHERE main_industry = 'Banking' ORDER BY sales_billion, profits_billion | spider |
CREATE TABLE WINE (
Grape VARCHAR,
Appelation VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- List the grapes and appelations of all wines.
| SELECT Grape, Appelation FROM WINE | sql_create_context |
CREATE TABLE table_39519 (
"Source" text,
"Date" text,
"DeSUS" text,
"Zares" text,
"NLPD" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the source for Zares at 8.6%?
| SELECT "Source" FROM table_39519 WHERE "Zares" = '8.6%' | wikisql |
CREATE TABLE table_57372 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What date has attendance listed as 45,024?
| SELECT "Date" FROM table_57372 WHERE "Attendance" = '45,024' | wikisql |
CREATE TABLE table_76702 (
"Club" text,
"City" text,
"Sport" text,
"League" text,
"Venue" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Which venue hosted the Gridiron Development Football League?
| SELECT "Venue" FROM table_76702 WHERE "League" = 'gridiron development football league' | wikisql |
CREATE TABLE table_28548 (
"Round" text,
"Circuit" text,
"Date" text,
"Pole Position" text,
"Fastest Lap" text,
"Winning Driver" text,
"Winning Team" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- How many dates are there in round 3?
| SELECT COUNT("Date") FROM table_28548 WHERE "Round" = '3' | wikisql |
CREATE TABLE microlab (
microlabid number,
patientunitstayid number,
culturesite text,
organism text,
culturetakentime time
)
CREATE TABLE allergy (
allergyid number,
patientunitstayid number,
drugname text,
allergyname text,
allergytime time
)
CREATE TABLE intakeoutput (
i... | SELECT t2.drugname FROM (SELECT patient.uniquepid, diagnosis.diagnosistime FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '022-127262') AND diagnosis.diagno... | eicu |
CREATE TABLE table_name_31 (
method VARCHAR,
time VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What was the method when the fight's time was 1:52?
| SELECT method FROM table_name_31 WHERE time = "1:52" | sql_create_context |
CREATE TABLE seasons (
year number,
url text
)
CREATE TABLE constructors (
constructorid number,
constructorref text,
name text,
nationality text,
url text
)
CREATE TABLE pitstops (
raceid number,
driverid number,
stop number,
lap number,
time text,
duration text,
... | SELECT DISTINCT driverid, stop FROM pitstops WHERE duration > (SELECT MIN(duration) FROM pitstops WHERE raceid = 841) | spider |
CREATE TABLE table_30592 (
"Version" text,
"Release" text,
"Release date" text,
"End of maintenance" text,
"Requirement" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What's the version of the 1.0.12 release?
| SELECT "Version" FROM table_30592 WHERE "Release" = '1.0.12' | wikisql |
CREATE TABLE Votes (
Id number,
PostId number,
VoteTypeId number,
UserId number,
CreationDate time,
BountyAmount number
)
CREATE TABLE ReviewRejectionReasons (
Id number,
Name text,
Description text,
PostTypeId number
)
CREATE TABLE Tags (
Id number,
TagName text,
C... | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation FROM Users WHERE (LOWER(AboutMe) LIKE '%ios%' OR LOWER(AboutMe) LIKE '%iphone%') AND (LOWER(Location) LIKE '%athens%' OR LOWER(Location) LIKE '%greece%' OR LOWER(Location) LIKE '%ellas%') ORDER BY Reputation DESC | sede |
CREATE TABLE table_35050 (
"gzip" text,
"bzip2" text,
"LHA/LZH" text,
"StuffIt" text,
"StuffIt X" text,
"ISO/CD Image" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the bzip2 value associated with a gzip of yes, StuffitX of unknown, and... | SELECT "bzip2" FROM table_35050 WHERE "gzip" = 'yes' AND "StuffIt X" = 'unknown' AND "ISO/CD Image" = 'unknown' | wikisql |
CREATE TABLE table_977 (
"Common Name" text,
"Scientific Name" text,
"Life Span" text,
"Adult Weight" text,
"Height at Shoulder" text,
"Length of Fur" text,
"Load Bearing Capacity" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is the l... | SELECT "Load Bearing Capacity" FROM table_977 WHERE "Scientific Name" = 'Camelus dromedarius' | wikisql |
CREATE TABLE t_kc21_t_kc24 (
MED_CLINIC_ID text,
MED_SAFE_PAY_ID number
)
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,
... | SELECT SUM(t_kc24.OVE_PAY) FROM t_kc24 WHERE t_kc24.PERSON_ID = '36092630' AND t_kc24.CLINIC_SLT_DATE BETWEEN '2011-08-09' AND '2016-02-17' | css |
CREATE TABLE lab (
labid number,
patientunitstayid number,
labname text,
labresult number,
labresulttime time
)
CREATE TABLE vitalperiodic (
vitalperiodicid number,
patientunitstayid number,
temperature number,
sao2 number,
heartrate number,
respiration number,
systemics... | SELECT COUNT(*) FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '010-6098')) AND medication.drugname = 'metoprolol tartrate 50 mg po tabs' AND ... | eicu |
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 ... | SELECT * FROM hz_info JOIN mzjzjlb ON hz_info.YLJGDM = mzjzjlb.YLJGDM AND hz_info.KH = mzjzjlb.KH AND hz_info.KLX = mzjzjlb.KLX WHERE hz_info.person_info_XM = '吴英华' AND hz_info.YLJGDM = '9013968' AND NOT mzjzjlb.JZZDSM LIKE '%循环%' | css |
CREATE TABLE table_name_22 (
money_raised VARCHAR,
_2q VARCHAR,
total_receipts VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- Tell me the money raised when 2Q has total receipts of $890,398
| SELECT money_raised, _2q FROM table_name_22 WHERE total_receipts = "$890,398" | sql_create_context |
CREATE TABLE table_46814 (
"Event" text,
"Date" text,
"Rating" text,
"Share" text,
"Viewers" text
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What is Date, when Viewers is 4.4 million?
| SELECT "Date" FROM table_46814 WHERE "Viewers" = '4.4 million' | wikisql |
CREATE TABLE table_name_59 (
distance VARCHAR,
date VARCHAR
)
-- Using valid SQLite, answer the following questions for the tables provided above.
-- What was the distance of the race on saturday, august 23?
| SELECT distance FROM table_name_59 WHERE date = "saturday, august 23" | sql_create_context |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.