Unnamed: 0
int64
0
3k
text
stringlengths
74
2.32k
1,000
###HUMAN: Name the site for game of game 2, ###ASSISTANT: SELECT site FROM table_name_26 WHERE game = "game 2"
1,001
###HUMAN: microalbuminuria up to 300 mg / 24 hours is acceptable if serum creatinine is < 1.4 for female , < 1.5 for male and estimated gfr ( egfr ) is > 60 ), ###ASSISTANT: SELECT * FROM table_dev_42 WHERE microalbuminuria <= 300 OR ((gender = 'male' AND serum_creatinine < 1.5) OR (gender = 'female' AND serum_creatinine < 1.4)) AND estimated_glomerular_filtration_rate_egfr > 60
1,002
###HUMAN: during the previous year, what were the top three most frequently ordered lab tests for patients during the same month after the diagnosis of accid in resident instit?, ###ASSISTANT: SELECT d_labitems.label FROM d_labitems WHERE d_labitems.itemid IN (SELECT t3.itemid FROM (SELECT t2.itemid, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions.hadm_id WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'accid in resident instit') AND DATETIME(diagnoses_icd.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year')) AS t1 JOIN (SELECT admissions.subject_id, labevents.itemid, labevents.charttime FROM labevents JOIN admissions ON labevents.hadm_id = admissions.hadm_id WHERE DATETIME(labevents.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year')) AS t2 ON t1.subject_id = t2.subject_id WHERE t1.charttime < t2.charttime AND DATETIME(t1.charttime, 'start of month') = DATETIME(t2.charttime, 'start of month') GROUP BY t2.itemid) AS t3 WHERE t3.c1 <= 3)
1,003
###HUMAN: how many total medals did brazil received ?, ###ASSISTANT: SELECT "total" FROM table_204_302 WHERE "nation" = 'brazil'
1,004
###HUMAN: What play has a base of Athens and was written by Aeschylus?, ###ASSISTANT: SELECT play FROM table_name_67 WHERE author = "aeschylus" AND base = "athens"
1,005
###HUMAN: Got most down to non-CW answers., ###ASSISTANT: SELECT DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS Rank, Posts.OwnerUserId AS "user_link", Posts.OwnerUserId AS UserId, COUNT(*) AS Count FROM Posts, Votes WHERE Posts.Id = Votes.PostId AND Votes.VoteTypeId = 3 AND Posts.PostTypeId = 2 AND Posts.CommunityOwnedDate IS NULL AND Posts.OwnerUserId > 0 GROUP BY Posts.OwnerUserId ORDER BY Count DESC, UserId LIMIT 100
1,006
###HUMAN: List all church names in descending order of opening date., ###ASSISTANT: SELECT name FROM church ORDER BY open_date DESC
1,007
###HUMAN: What is the average attendance after week 16?, ###ASSISTANT: SELECT AVG(attendance) FROM table_name_10 WHERE week > 16
1,008
###HUMAN: In which season and which stadium did any player have an injury of 'Foot injury' or 'Knee problem'?, ###ASSISTANT: SELECT T1.season, T2.name FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id WHERE T3.injury = 'Foot injury' OR T3.injury = 'Knee problem'
1,009
###HUMAN: What Secretary has an Internal CO of isabel voets?, ###ASSISTANT: SELECT "Secretary" FROM table_61959 WHERE "Internal CO" = 'isabel voets'
1,010
###HUMAN: what is the number of patients whose discharge location is long term care hospital and procedure long title is incision of vessel, lower limb arteries?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.discharge_location = "LONG TERM CARE HOSPITAL" AND procedures.long_title = "Incision of vessel, lower limb arteries"
1,011
###HUMAN: how much does it cost for the hospital stay of patient 29540?, ###ASSISTANT: SELECT SUM(cost.cost) FROM cost WHERE cost.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 29540)
1,012
###HUMAN: Give the ids of documents with expenses that have the budget code 'SF'., ###ASSISTANT: SELECT document_id FROM documents_with_expenses WHERE budget_type_code = 'SF'
1,013
###HUMAN: Which skill is used in fixing the most number of faults? List the skill id and description., ###ASSISTANT: SELECT T1.skill_id, T1.skill_description FROM Skills AS T1 JOIN Skills_Required_To_Fix AS T2 ON T1.skill_id = T2.skill_id GROUP BY T1.skill_id ORDER BY COUNT(*) DESC LIMIT 1
1,014
###HUMAN: Top users under 18 by Reputation., ###ASSISTANT: SELECT Id, DisplayName, Age, Reputation, CreationDate, LastAccessDate, 'http://stackoverflow.com/users/' + CAST(Id AS TEXT) AS Url FROM Users AS b WHERE (b.Age <= 18) ORDER BY b.Reputation, b.Age
1,015
###HUMAN: select * from posts limit 10;., ###ASSISTANT: SELECT * FROM Posts WHERE Score > 1000
1,016
###HUMAN: who wrote the most ACL papers in 2010, ###ASSISTANT: SELECT DISTINCT COUNT(paper.paperid), writes.authorid FROM paper, venue, writes WHERE paper.year = 2010 AND venue.venueid = paper.venueid AND venue.venuename = 'ACL' AND writes.paperid = paper.paperid GROUP BY writes.authorid ORDER BY COUNT(paper.paperid) DESC
1,017
###HUMAN: How many Vacators were listed when the district was North Carolina 3rd?, ###ASSISTANT: SELECT COUNT("Vacator") FROM table_25065 WHERE "District" = 'North Carolina 3rd'
1,018
###HUMAN: Where is Bloomington High School North?, ###ASSISTANT: SELECT "City / Town" FROM table_73158 WHERE "School" = 'Bloomington High School North'
1,019
###HUMAN: list the flights from SALT LAKE CITY to ST. PETERSBURG, ###ASSISTANT: 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 = 'SALT LAKE CITY' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'ST. PETERSBURG' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code AND flight.to_airport = AIRPORT_SERVICE_1.airport_code
1,020
###HUMAN: How many artists were there for the show thoroughly modern millie?, ###ASSISTANT: SELECT COUNT(artist) FROM table_28140141_1 WHERE show = "Thoroughly Modern Millie"
1,021
###HUMAN: What was the result of the game with the record of 3-1?, ###ASSISTANT: SELECT result FROM table_20849830_1 WHERE record = "3-1"
1,022
###HUMAN: Which player scored 76-68=144?, ###ASSISTANT: SELECT player FROM table_name_28 WHERE score = 76 - 68 = 144
1,023
###HUMAN: how many unmarried patients have dialys route of drug administration?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.marital_status = "SINGLE" AND prescriptions.route = "DIALYS"
1,024
###HUMAN: what is minimum age of patients whose primary disease is coronary artery disease\coronary artery bypass graft with mvr; ? maze and admission year is greater than or equal to 2146?, ###ASSISTANT: SELECT MIN(demographic.age) FROM demographic WHERE demographic.diagnosis = "CORONARY ARTERY DISEASE\CORONARY ARTERY BYPASS GRAFT WITH MVR; ? MAZE" AND demographic.admityear >= "2146"
1,025
###HUMAN: Can you tell me the Record that has the Game of 19?, ###ASSISTANT: SELECT "Record" FROM table_46830 WHERE "Game" = '19'
1,026
###HUMAN: What's the class of the HMS Heartsease?, ###ASSISTANT: SELECT class FROM table_name_75 WHERE name = "hms heartsease"
1,027
###HUMAN: give me the number of patients whose admission type is elective and procedure icd9 code is 3613?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admission_type = "ELECTIVE" AND procedures.icd9_code = "3613"
1,028
###HUMAN: What was the original title for the film used in nomination of street days?, ###ASSISTANT: SELECT "Original title" FROM table_61774 WHERE "Film title used in nomination" = 'street days'
1,029
###HUMAN: What is the Points against for the ystradgynlais rfc club?, ###ASSISTANT: SELECT points_against FROM table_name_58 WHERE club = "ystradgynlais rfc"
1,030
###HUMAN: Give me the comparison about the sum of Weight over the Sex , and group by attribute Sex, and could you show Sex in desc order?, ###ASSISTANT: SELECT Sex, SUM(Weight) FROM people GROUP BY Sex ORDER BY Sex DESC
1,031
###HUMAN: Which Round has a Name of john goodyear?, ###ASSISTANT: SELECT round FROM table_name_55 WHERE name = "john goodyear"
1,032
###HUMAN: WHAT IS THE BIRTH DATE THAT HAS Ceased to be Duke of Girona OF 21 NOVEMBER 1582?, ###ASSISTANT: SELECT birth FROM table_name_22 WHERE ceased_to_be_duke_of_girona = "21 november 1582"
1,033
###HUMAN: what is the italian word for the french word 'mer, ###ASSISTANT: SELECT italian FROM table_name_37 WHERE french = "mer"
1,034
###HUMAN: Find the number of professors with a PhD degree in each department Show bar chart, I want to display by the Y from low to high., ###ASSISTANT: SELECT DEPT_CODE, COUNT(*) FROM PROFESSOR WHERE PROF_HIGH_DEGREE = 'Ph.D.' GROUP BY DEPT_CODE ORDER BY COUNT(*)
1,035
###HUMAN: what is admission time and lab test name of subject id 22377?, ###ASSISTANT: SELECT demographic.admittime, lab.label FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.subject_id = "22377"
1,036
###HUMAN: What is the season # where production code is k1505?, ###ASSISTANT: SELECT MIN(season__number) FROM table_11951237_3 WHERE production_code = "K1505"
1,037
###HUMAN: What nationality has a ranking less than 7 with tony stenson as the name?, ###ASSISTANT: SELECT nationality FROM table_name_13 WHERE ranking < 7 AND name = "tony stenson"
1,038
###HUMAN: what is discharge time and procedure icd9 code of subject id 65759?, ###ASSISTANT: SELECT demographic.dischtime, procedures.icd9_code FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.subject_id = "65759"
1,039
###HUMAN: give me the number of patients whose days of hospital stay is greater than 1 and procedure short title is hemodialysis?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.days_stay > "1" AND procedures.short_title = "Hemodialysis"
1,040
###HUMAN: What is the earliest year a SG has over 650 assists?, ###ASSISTANT: SELECT MIN("From") FROM table_55647 WHERE "Pos." = 'sg' AND "Asts" > '650'
1,041
###HUMAN: Which patients have hispanic or latino-puerto rican ethnic background?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.ethnicity = "HISPANIC/LATINO - PUERTO RICAN"
1,042
###HUMAN: What is on the reverse side of the 100 coin?, ###ASSISTANT: SELECT reverse FROM table_298883_5 WHERE value = "₩100"
1,043
###HUMAN: How many different numbers of cantons does the province with the Armenian name have?, ###ASSISTANT: SELECT COUNT(number_of_cantons__gavars_) FROM table_23887174_1 WHERE armenian_name = "Վասպուրական"
1,044
###HUMAN: What is the Name of the Players with a Rank of 18?, ###ASSISTANT: SELECT name FROM table_name_67 WHERE rank = 18
1,045
###HUMAN: What year for geelong player john roberts?, ###ASSISTANT: SELECT year FROM table_name_77 WHERE opponent = "geelong" AND player = "john roberts"
1,046
###HUMAN: What is the start source of the irl country, which ended on 13 April?, ###ASSISTANT: SELECT "Start Source" FROM table_46537 WHERE "Country" = 'irl' AND "Ended" = '13 april'
1,047
###HUMAN: What is Country, when Time is 1:29.43.60?, ###ASSISTANT: SELECT country FROM table_name_68 WHERE time = "1:29.43.60"
1,048
###HUMAN: How long was the 16 staged event in 1997?, ###ASSISTANT: SELECT distance FROM table_name_38 WHERE stages = "16" AND year = "1997"
1,049
###HUMAN: What is Wu Xing ( ) with Korean (RR) of (im)?, ###ASSISTANT: SELECT wu_xing___五行__ FROM table_name_80 WHERE korean___rr__ = "임 (im)"
1,050
###HUMAN: max number of dupes on a question., ###ASSISTANT: SELECT pl.PostId AS "post_link", COUNT(*) FROM PostLinks AS pl INNER JOIN Posts AS p ON p.Id = pl.PostId WHERE LinkTypeId = 3 GROUP BY PostId HAVING COUNT(*) > 2 ORDER BY 2 DESC
1,051
###HUMAN: Users' search by Name and AboutME., ###ASSISTANT: SELECT DISTINCT u.Id AS "user_link", CONCAT('https://stackoverflow.com/users/', u.Id) AS "profile_link", u.DisplayName, u.Location, u.WebsiteUrl, u.AboutMe, u.Views, u.Reputation, u.UpVotes, u.DownVotes, u.EmailHash FROM Users AS u WHERE UPPER(u.AboutMe) LIKE UPPER('%##AboutMe##%') AND UPPER(DisplayName) LIKE UPPER('%##DisplayName##%')
1,052
###HUMAN: Which player is from south africa?, ###ASSISTANT: SELECT "Player" FROM table_62584 WHERE "Country" = 'south africa'
1,053
###HUMAN: What is the upstream with the price 65 chf?, ###ASSISTANT: SELECT "Upstream" FROM table_44728 WHERE "Price" = '65 chf'
1,054
###HUMAN: What's the Order with an Elector of Marino Bulcani?, ###ASSISTANT: SELECT "Order" FROM table_71578 WHERE "Elector" = 'marino bulcani'
1,055
###HUMAN: Which Finish has a To par of 1, and a Year(s) won of 1955?, ###ASSISTANT: SELECT finish FROM table_name_61 WHERE to_par = "–1" AND year_s__won = "1955"
1,056
###HUMAN: What nationality has a year larger than 2009 with a position of power forward?, ###ASSISTANT: SELECT nationality FROM table_name_32 WHERE year > 2009 AND position = "power forward"
1,057
###HUMAN: Where was the location attendance when Minnesota played?, ###ASSISTANT: SELECT "Location Attendance" FROM table_8150 WHERE "Team" = 'minnesota'
1,058
###HUMAN: Find the names of all the tracks that contain the word 'you'., ###ASSISTANT: SELECT name FROM track WHERE name LIKE '%you%'
1,059
###HUMAN: In what season did the team get in the conference finals of the playoffs?, ###ASSISTANT: SELECT "Regular Season" FROM table_2031 WHERE "Playoffs" = 'Conference Finals'
1,060
###HUMAN: What was the crowd size when the away team scored 7.19 (61)?, ###ASSISTANT: SELECT COUNT("Crowd") FROM table_33397 WHERE "Away team score" = '7.19 (61)'
1,061
###HUMAN: what is the marital status and days of hospital stay of subject id 6983?, ###ASSISTANT: SELECT demographic.marital_status, demographic.days_stay FROM demographic WHERE demographic.subject_id = "6983"
1,062
###HUMAN: Which driver was in 8 rounds with a chassis of dallara f306?, ###ASSISTANT: SELECT "Driver" FROM table_44017 WHERE "Chassis" = 'dallara f306' AND "Rounds" = '8'
1,063
###HUMAN: get the number of urgent hospital admission patients who have prescription for calcium carbonate., ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.admission_type = "URGENT" AND prescriptions.drug = "Calcium Carbonate"
1,064
###HUMAN: Which places have points larger than 10?, ###ASSISTANT: SELECT MIN(points) FROM table_name_8 WHERE place > 10
1,065
###HUMAN: What is the Position for the brandon wheat kings (wchl)?, ###ASSISTANT: SELECT "Position" FROM table_5865 WHERE "College/junior/club team" = 'brandon wheat kings (wchl)'
1,066
###HUMAN: Return a bar chart about the distribution of Date_of_Birth and Height , display in desc by the names please., ###ASSISTANT: SELECT Date_of_Birth, Height FROM people ORDER BY Date_of_Birth DESC
1,067
###HUMAN: What was the Forbers rank (all companies) in 2012 for cenovus energy?, ###ASSISTANT: SELECT "Rank (all) 2012" FROM table_2971 WHERE "Name" = 'Cenovus Energy'
1,068
###HUMAN: what is minimum age of patients whose marital status is single and primary disease is hypertension;rule out coronary artery disease\cardiac cath?, ###ASSISTANT: SELECT MIN(demographic.age) FROM demographic WHERE demographic.marital_status = "SINGLE" AND demographic.diagnosis = "HYPERTENSION;RULE OUT CORONARY ARTERY DISEASE\CARDIAC CATH"
1,069
###HUMAN: Can ORALPATH 696 be used for ULCS ?, ###ASSISTANT: SELECT COUNT(*) > 0 FROM course INNER JOIN program_course ON program_course.course_id = course.course_id WHERE course.department = 'ORALPATH' AND course.number = 696 AND program_course.category LIKE '%ULCS%'
1,070
###HUMAN: How many U.S. viewers (million) are there for the episode whose Production code is 3T7051?, ###ASSISTANT: SELECT us_viewers__million_ FROM table_13183076_3 WHERE production_code = "3T7051"
1,071
###HUMAN: Which Investing Dragon(s) belong to Episode 9 with the Entrepreneur Ashley Sayed?, ###ASSISTANT: SELECT "Investing Dragon(s)" FROM table_71894 WHERE "Episode" = 'episode 9' AND "Entrepreneur(s)" = 'ashley sayed'
1,072
###HUMAN: Which advisors are advising more than 2 students?, ###ASSISTANT: SELECT advisor FROM student GROUP BY advisor HAVING COUNT(*) > 2
1,073
###HUMAN: What was willie wood's to par?, ###ASSISTANT: SELECT to_par FROM table_name_15 WHERE player = "willie wood"
1,074
###HUMAN: tell me the top five most common diagnoses of patients with an age of 20s until 2104?, ###ASSISTANT: SELECT t1.diagnosisname FROM (SELECT diagnosis.diagnosisname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM diagnosis WHERE diagnosis.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.age BETWEEN 20 AND 29) AND STRFTIME('%y', diagnosis.diagnosistime) <= '2104' GROUP BY diagnosis.diagnosisname) AS t1 WHERE t1.c1 <= 5
1,075
###HUMAN: Name the end date for robert goebbels, ###ASSISTANT: SELECT "End date" FROM table_14845 WHERE "Minister" = 'robert goebbels'
1,076
###HUMAN: Give me a scatter chart to show the star rating of the movie and reviewer id, group the title., ###ASSISTANT: SELECT rID, stars FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID GROUP BY title
1,077
###HUMAN: What's the production code of the episode titled 'He ain't a hottie, he's my brother'?, ###ASSISTANT: SELECT "Prod. code" FROM table_1806 WHERE "Title" = 'He Ain''t a Hottie, He''s My Brother'
1,078
###HUMAN: Give me a bar chart for how many name of each name, and order by the names in ascending., ###ASSISTANT: SELECT Name, COUNT(Name) FROM Products GROUP BY Name ORDER BY Name
1,079
###HUMAN: What is the home team score that played away team carlton?, ###ASSISTANT: SELECT home_team AS score FROM table_name_60 WHERE away_team = "carlton"
1,080
###HUMAN: who received more votes , duncan hunter or alan keyes ?, ###ASSISTANT: SELECT "candidate" FROM table_204_951 WHERE "candidate" IN ('duncan hunter', 'alan keyes') ORDER BY "votes" DESC LIMIT 1
1,081
###HUMAN: Count the number of patients on a sulfameth/trimethoprim ds prescription who were hospitalized for more than 17 days., ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.days_stay > "17" AND prescriptions.drug = "Sulfameth/Trimethoprim DS"
1,082
###HUMAN: What is the sum of Game on february 28?, ###ASSISTANT: SELECT SUM("Game") FROM table_5067 WHERE "Date" = 'february 28'
1,083
###HUMAN: What type of game had a result of 1:2?, ###ASSISTANT: SELECT type_of_game FROM table_name_7 WHERE results¹ = "1:2"
1,084
###HUMAN: Top 50 users from UAE., ###ASSISTANT: SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation FROM Users WHERE LOWER(Location) LIKE '%united arab emirates%' ORDER BY Reputation DESC LIMIT 150
1,085
###HUMAN: tell me the name of the drug to which patient 007-849 was allergic in this hospital encounter?, ###ASSISTANT: 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 = '007-849' AND patient.hospitaldischargetime IS NULL))
1,086
###HUMAN: What place is South Africa?, ###ASSISTANT: SELECT "Place" FROM table_44277 WHERE "Country" = 'south africa'
1,087
###HUMAN: What Date has a Result of l 21 34?, ###ASSISTANT: SELECT date FROM table_name_31 WHERE result = "l 21–34"
1,088
###HUMAN: What is the largest lost stat when the difference is - 19?, ###ASSISTANT: SELECT MAX("Lost") FROM table_7372 WHERE "Difference" = '- 19'
1,089
###HUMAN: Tell me the constructor for grid of 17, ###ASSISTANT: SELECT constructor FROM table_name_9 WHERE grid = 17
1,090
###HUMAN: How big was the crowd of the Home team of Collingwood?, ###ASSISTANT: SELECT MAX(crowd) FROM table_name_92 WHERE home_team = "collingwood"
1,091
###HUMAN: Who is the leading scorer of the game on 13 February 2008?, ###ASSISTANT: SELECT leading_scorer FROM table_name_52 WHERE date = "13 february 2008"
1,092
###HUMAN: count the number of patients whose primary disease is morbid obesity/sda and year of death is less than or equal to 2183?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "MORBID OBESITY/SDA" AND demographic.dod_year <= "2183.0"
1,093
###HUMAN: What is the highest laps of the year when the rank was 14?, ###ASSISTANT: SELECT MAX("Laps") FROM table_68142 WHERE "Rank" = '14'
1,094
###HUMAN: What day had a time of 29.816?, ###ASSISTANT: SELECT "Date" FROM table_53907 WHERE "Time" = '29.816'
1,095
###HUMAN: What series episode has deli meats under segment B?, ###ASSISTANT: SELECT series_ep FROM table_name_98 WHERE segment_b = "deli meats"
1,096
###HUMAN: What year was there no competition in Mixed Doubles?, ###ASSISTANT: SELECT "Year" FROM table_15773 WHERE "Mixed doubles" = 'no competition'
1,097
###HUMAN: For the game where the away team was North Melbourne, what was the venue?, ###ASSISTANT: SELECT "Venue" FROM table_33381 WHERE "Away team" = 'north melbourne'
1,098
###HUMAN: What was the home team score at Kardinia Park?, ###ASSISTANT: SELECT home_team AS score FROM table_name_43 WHERE venue = "kardinia park"
1,099
###HUMAN: What is the most effortless class I can take to satisfy the MDE ?, ###ASSISTANT: SELECT DISTINCT course.department, course.name, course.number, program_course.workload, program_course.workload FROM course, program_course WHERE program_course.category LIKE '%MDE%' AND program_course.course_id = course.course_id AND program_course.workload = (SELECT MIN(PROGRAM_COURSEalias1.workload) FROM program_course AS PROGRAM_COURSEalias1 WHERE PROGRAM_COURSEalias1.category LIKE '%MDE%')