Unnamed: 0
int64
0
3k
text
stringlengths
74
2.32k
0
###HUMAN: Name the home team for carlton away team, ###ASSISTANT: SELECT home_team FROM table_name_77 WHERE away_team = "carlton"
1
###HUMAN: what will the population of Asia be when Latin America/Caribbean is 783 (7.5%)?, ###ASSISTANT: SELECT "Asia" FROM table_22767 WHERE "Latin America/Caribbean" = '783 (7.5%)'
2
###HUMAN: How many faculty members do we have for each gender? Draw a bar chart, order by the Y-axis in descending., ###ASSISTANT: SELECT Sex, COUNT(*) FROM Faculty GROUP BY Sex ORDER BY COUNT(*) DESC
3
###HUMAN: List the record of 0-1 from the table?, ###ASSISTANT: SELECT week FROM table_14656147_2 WHERE record = "0-1"
4
###HUMAN: Which silver has a Gold smaller than 12, a Rank smaller than 5, and a Bronze of 5?, ###ASSISTANT: SELECT silver FROM table_name_24 WHERE gold < 12 AND rank < 5 AND bronze = 5
5
###HUMAN: When did Samsung Electronics Co LTD make the GT-i9100?, ###ASSISTANT: SELECT "Date" FROM table_47482 WHERE "Company name" = 'samsung electronics co ltd' AND "Hardware Model" = 'gt-i9100'
6
###HUMAN: what are the early morning flights from BOSTON to DENVER, ###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 = 'BOSTON' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'DENVER' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code AND flight.to_airport = AIRPORT_SERVICE_1.airport_code) AND flight.departure_time BETWEEN 0 AND 800
7
###HUMAN: Name the most 3 credits, ###ASSISTANT: SELECT MIN(3 AS _credits) FROM table_148535_2
8
###HUMAN: What is every yellow jersey entry for the distance 125?, ###ASSISTANT: SELECT "Yellow jersey" FROM table_3791 WHERE "Distance (km)" = '125'
9
###HUMAN: In what years was there a rank lower than 9, under 84 goals, and more than 158 matches?, ###ASSISTANT: SELECT years FROM table_name_63 WHERE matches > 158 AND rank > 9 AND goals < 84
10
###HUMAN: What aired at 10:00 when Flashpoint aired at 9:30?, ###ASSISTANT: SELECT "10:00" FROM table_43208 WHERE "9:30" = 'flashpoint'
11
###HUMAN: count the number of patients whose insurance is government and procedure short title is rt/left heart card cath?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.insurance = "Government" AND procedures.short_title = "Rt/left heart card cath"
12
###HUMAN: What was the record of the game in which Dydek (10) did the most high rebounds?, ###ASSISTANT: SELECT record FROM table_18904831_5 WHERE high_rebounds = "Dydek (10)"
13
###HUMAN: When was the game played at glenferrie oval?, ###ASSISTANT: SELECT "Date" FROM table_10130 WHERE "Venue" = 'glenferrie oval'
14
###HUMAN: What is the highest K 2 O, when Na 2 O is greater than 1.87, when Fe 2 O 3 is greater than 0.07, when Objects is Ritual Disk, and when Al 2 O 3 is less than 0.62?, ###ASSISTANT: SELECT MAX("K 2 O") FROM table_7207 WHERE "Na 2 O" > '1.87' AND "Fe 2 O 3" > '0.07' AND "Objects" = 'ritual disk' AND "Al 2 O 3" < '0.62'
15
###HUMAN: what is the total number of patients diagnosed with icd9 code 45620 who had a blood test., ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.icd9_code = "45620" AND lab.fluid = "Blood"
16
###HUMAN: count the number of patients whose primary disease is pneumonia;human immunodefiency virus;rule out tuberculosis and year of death is less than or equal to 2168?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "PNEUMONIA;HUMAN IMMUNODEFIENCY VIRUS;RULE OUT TUBERCULOSIS" AND demographic.dod_year <= "2168.0"
17
###HUMAN: Which section is in the 6th position?, ###ASSISTANT: SELECT "Section" FROM table_72013 WHERE "Position" = '6th'
18
###HUMAN: What is the area of the coed school with a state authority and a roll number of 122?, ###ASSISTANT: SELECT "Area" FROM table_69300 WHERE "Authority" = 'state' AND "Gender" = 'coed' AND "Roll" = '122'
19
###HUMAN: Which type of institution is in Amherst, MA?, ###ASSISTANT: SELECT type FROM table_name_1 WHERE location = "amherst, ma"
20
###HUMAN: What years did Birger Ruud win the FIS Nordic World Ski Championships?, ###ASSISTANT: SELECT "FIS Nordic World Ski Championships" FROM table_21696 WHERE "Winner" = 'Birger Ruud'
21
###HUMAN: how many members of estonia 's men 's national volleyball team were born in 1988 ?, ###ASSISTANT: SELECT COUNT("player") FROM table_203_116 WHERE "birth date" = 1988
22
###HUMAN: What episoe number in the season originally aired on February 11, 1988?, ###ASSISTANT: SELECT no_in_season FROM table_2818164_5 WHERE original_air_date = "February 11, 1988"
23
###HUMAN: What date was the match against adri n men ndez-maceiras?, ###ASSISTANT: SELECT "Date" FROM table_60686 WHERE "Opponent" = 'adrián menéndez-maceiras'
24
###HUMAN: did shoko goto make more films in 2004 or 2005 ?, ###ASSISTANT: SELECT "released" FROM table_203_365 WHERE "released" IN (2004, 2005) GROUP BY "released" ORDER BY COUNT("video title") DESC LIMIT 1
25
###HUMAN: What venue listed is dated February 22, 2003?, ###ASSISTANT: SELECT "Venue" FROM table_65116 WHERE "Date" = 'february 22, 2003'
26
###HUMAN: provide the number of patients whose admission type is emergency and lab test name is rbc, csf?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admission_type = "EMERGENCY" AND lab.label = "RBC, CSF"
27
###HUMAN: How often does the course POLSCI 659 meet ?, ###ASSISTANT: SELECT DISTINCT course_offering.friday, course_offering.monday, course_offering.saturday, course_offering.sunday, course_offering.thursday, course_offering.tuesday, course_offering.wednesday FROM course INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN semester ON semester.semester_id = course_offering.semester WHERE course.department = 'POLSCI' AND course.number = 659 AND semester.semester = 'WN' AND semester.year = 2016
28
###HUMAN: Which couple participated in the Contemporary style of dance?, ###ASSISTANT: SELECT "Couple" FROM table_40395 WHERE "Style" = 'contemporary'
29
###HUMAN: Name the metrical equivalence for linha, ###ASSISTANT: SELECT "Metrical equivalence" FROM table_28772 WHERE "Portuguese name" = 'Linha'
30
###HUMAN: If the college is SMU, what is the position?, ###ASSISTANT: SELECT position FROM table_27132791_3 WHERE college = "SMU"
31
###HUMAN: What was the represented team on June 27?, ###ASSISTANT: SELECT "Team" FROM table_21876 WHERE "Date" = 'June 27'
32
###HUMAN: Please show the songs that have result 'nominated' at music festivals., ###ASSISTANT: SELECT T2.song FROM music_festival AS T1 JOIN volume AS T2 ON T1.volume = T2.volume_id WHERE T1.result = "Nominated"
33
###HUMAN: Which teams had more than 3 eliminations?, ###ASSISTANT: SELECT team FROM elimination GROUP BY team HAVING COUNT(*) > 3
34
###HUMAN: how many athletes had a better result than tatyana bocharova ?, ###ASSISTANT: SELECT COUNT("name") FROM table_204_910 WHERE "result" > (SELECT "result" FROM table_204_910 WHERE "name" = 'tatyana bocharova')
35
###HUMAN: Which Type has a Capacity of 28 passengers, and a Number of 16?, ###ASSISTANT: SELECT "Type" FROM table_8430 WHERE "Capacity" = '28 passengers' AND "Number" = '16'
36
###HUMAN: Show the names of people, and dates and venues of debates they are on the negative side, ordered in ascending alphabetical order of name., ###ASSISTANT: SELECT T3.name, T2.date, T2.venue FROM debate_people AS T1 JOIN debate AS T2 ON T1.debate_id = T2.debate_id JOIN people AS T3 ON T1.negative = T3.people_id ORDER BY T3.name
37
###HUMAN: is a 2 credit full house the same as a 5 credit three of a kind ?, ###ASSISTANT: SELECT (SELECT "2 credits" FROM table_203_564 WHERE "hand" = 'full house') = (SELECT "5 credits" FROM table_203_564 WHERE "hand" = 'three of a kind')
38
###HUMAN: Next semester , what time does the EDUC 510 lecture begin ?, ###ASSISTANT: SELECT DISTINCT course_offering.start_time FROM course INNER JOIN program_course ON program_course.course_id = course.course_id INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN semester ON semester.semester_id = course_offering.semester WHERE course.department = 'EDUC' AND course.number = 510 AND semester.semester = 'FA' AND semester.year = 2016
39
###HUMAN: For those records from the products and each product's manufacturer, a bar chart shows the distribution of name and the sum of code , and group by attribute name, sort total number of code in asc order., ###ASSISTANT: SELECT T2.Name, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T2.Name ORDER BY T1.Code
40
###HUMAN: What was the highest round that had northwestern?, ###ASSISTANT: SELECT MAX(round) FROM table_name_18 WHERE school = "northwestern"
41
###HUMAN: What is the smallest Wins with a Position of 20th, and Poles smaller than 0?, ###ASSISTANT: SELECT MIN(wins) FROM table_name_19 WHERE position = "20th" AND poles < 0
42
###HUMAN: Who is listed under mens singles when womens has wang nan zhang yining?, ###ASSISTANT: SELECT "Mens Singles" FROM table_30306 WHERE "Womens Doubles" = 'Wang Nan Zhang Yining'
43
###HUMAN: What are the start and end dates for incidents with incident type code 'NOISE'?, ###ASSISTANT: SELECT date_incident_start, date_incident_end FROM Behavior_Incident WHERE incident_type_code = "NOISE"
44
###HUMAN: For those employees whose salary is in the range of 8000 and 12000 and commission is not null or department number does not equal to 40, return a bar chart about the distribution of hire_date and the average of manager_id bin hire_date by weekday, display by the the average of manager id in ascending please., ###ASSISTANT: 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)
45
###HUMAN: who is listed as the last responsible mister -lrb- s -rrb- on this chart ?, ###ASSISTANT: SELECT "responsible minister(s)" FROM table_204_988 ORDER BY id DESC LIMIT 1
46
###HUMAN: Users with highest reputation both in SO and Math ( geometric mean = average digits)., ###ASSISTANT: SELECT s.DisplayName, s.Reputation AS RepSO, m.Reputation AS RepMath, (LOG10(s.Reputation) + LOG10(m.Reputation)) / 2 AS RepAvDigits FROM "stackexchange.math".Users AS m, "stackoverflow".Users AS s WHERE s.Reputation > 10000 AND m.Reputation > 10000 AND s.AccountId = m.AccountId ORDER BY 4 DESC
47
###HUMAN: What is the series # when the director is john showalter?, ###ASSISTANT: SELECT series__number FROM table_29747178_2 WHERE directed_by = "John Showalter"
48
###HUMAN: provide the number of patients whose admission type is emergency and diagnosis long title is other drugs and medicinal substances causing adverse effects in therapeutic use., ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admission_type = "EMERGENCY" AND diagnoses.long_title = "Other drugs and medicinal substances causing adverse effects in therapeutic use"
49
###HUMAN: What was the regular season standings for the year when the playoffs reached the conference semifinals and the team did not qualify for the US Open Cup?, ###ASSISTANT: SELECT "Reg. Season" FROM table_19191 WHERE "Playoffs" = 'Conference Semifinals' AND "US Open Cup" = 'Did not qualify'
50
###HUMAN: How much Long has a Loss larger than 2, and a Gain of 157, and an Avg/G smaller than 129?, ###ASSISTANT: SELECT SUM("Long") FROM table_37490 WHERE "Loss" > '2' AND "Gain" = '157' AND "Avg/G" < '129'
51
###HUMAN: How many pages does the edition with a volume # smaller than 8 and an ISBM of 1-40122-892-5 have?, ###ASSISTANT: SELECT SUM("Pages") FROM table_7363 WHERE "Vol. #" < '8' AND "ISBN" = '1-40122-892-5'
52
###HUMAN: Ranking of questions by score., ###ASSISTANT: SELECT Posts.Id AS "post_link", Posts.Title, Posts.Score AS Score FROM Posts ORDER BY Posts.Score DESC LIMIT 100
53
###HUMAN: Which Game has a Score of w 90 82 (ot)?, ###ASSISTANT: SELECT game FROM table_name_40 WHERE score = "w 90–82 (ot)"
54
###HUMAN: What was the largest crowd when Collingwood was the away team?, ###ASSISTANT: SELECT MAX(crowd) FROM table_name_67 WHERE away_team = "collingwood"
55
###HUMAN: Name the number of cancelled for turnham green, ###ASSISTANT: SELECT COUNT("Cancelled") FROM table_24185 WHERE "Station" = 'Turnham Green'
56
###HUMAN: What is the highest attendance of the match with a 2:0 score and vida as the away team?, ###ASSISTANT: SELECT MAX(attendance) FROM table_name_59 WHERE score = "2:0" AND away = "vida"
57
###HUMAN: Visualize a pie chart with what are the names and seatings for all tracks opened after 2000?, ###ASSISTANT: SELECT Name, Seating FROM track WHERE Year_Opened > 2000
58
###HUMAN: Show the name for regions and the number of storms for each region by a bar chart, and sort from high to low by the X-axis., ###ASSISTANT: SELECT Region_name, COUNT(*) FROM region AS T1 JOIN affected_region AS T2 ON T1.Region_id = T2.Region_id GROUP BY T1.Region_id ORDER BY Region_name DESC
59
###HUMAN: What is the Attendance of the game with a Record of 37 21 12 and less than 86 Points?, ###ASSISTANT: SELECT AVG(attendance) FROM table_name_44 WHERE record = "37–21–12" AND points < 86
60
###HUMAN: How many yards per attempt have net yards greater than 631?, ###ASSISTANT: SELECT SUM(yards_per_attempt) FROM table_name_17 WHERE net_yards > 631
61
###HUMAN: What is the primary disease and diagnosis icd9 code of Josette Orr?, ###ASSISTANT: SELECT demographic.diagnosis, diagnoses.icd9_code FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.name = "Josette Orr"
62
###HUMAN: Name the scores for david baddiel and maureen lipman, ###ASSISTANT: SELECT COUNT(scores) FROM table_23575917_2 WHERE davids_team = "David Baddiel and Maureen Lipman"
63
###HUMAN: Name the role for mono studio and title of paradise canyon, ###ASSISTANT: SELECT role FROM table_name_62 WHERE studio = "mono" AND title = "paradise canyon"
64
###HUMAN: Name the total with finish of t22, ###ASSISTANT: SELECT total FROM table_name_24 WHERE finish = "t22"
65
###HUMAN: If the opponent was @ Boston Bruins, what was the Location/Attendance?, ###ASSISTANT: SELECT "Location/Attendance" FROM table_3782 WHERE "Opponent" = '@ Boston Bruins'
66
###HUMAN: What was the ticket price on September 16, 1986?, ###ASSISTANT: SELECT "Ticket price(s)" FROM table_64443 WHERE "Date(s)" = 'september 16, 1986'
67
###HUMAN: Name the high rebounds for memphis, ###ASSISTANT: SELECT high_rebounds FROM table_17060277_7 WHERE team = "Memphis"
68
###HUMAN: Tell me the the date when the first claim was made., ###ASSISTANT: SELECT date_claim_made FROM claims ORDER BY date_claim_made LIMIT 1
69
###HUMAN: Tell me the outgoing manager for 22 november date of vacancy, ###ASSISTANT: SELECT "Outgoing manager" FROM table_77878 WHERE "Date of vacancy" = '22 november'
70
###HUMAN: For those products with a price between 60 and 120, return a bar chart about the distribution of name and manufacturer , and sort in desc by the y-axis., ###ASSISTANT: SELECT Name, Manufacturer FROM Products WHERE Price BETWEEN 60 AND 120 ORDER BY Manufacturer DESC
71
###HUMAN: Who won the FIS Nordic World Ski Championships in 1972?, ###ASSISTANT: SELECT "Winner" FROM table_50927 WHERE "FIS Nordic World Ski Championships" = '1972'
72
###HUMAN: For those employees who was hired before 2002-06-21, give me the comparison about the average of department_id over the job_id , and group by attribute job_id, show x-axis in descending order., ###ASSISTANT: SELECT JOB_ID, AVG(DEPARTMENT_ID) FROM employees WHERE HIRE_DATE < '2002-06-21' GROUP BY JOB_ID ORDER BY JOB_ID DESC
73
###HUMAN: Name the listed owners for brevak racing, ###ASSISTANT: SELECT listed_owner_s_ FROM table_2187178_1 WHERE team = "Brevak Racing"
74
###HUMAN: What is the sum total of all the years with a bell that weighed 857 kilograms?, ###ASSISTANT: SELECT SUM("Year") FROM table_7061 WHERE "Weight (kg)" = '857'
75
###HUMAN: Questions with 'Magento' in title., ###ASSISTANT: SELECT Id AS "post_link" FROM Posts WHERE Title LIKE '%Magento%'
76
###HUMAN: What is Chris Riley's Money?, ###ASSISTANT: SELECT money___$__ FROM table_name_46 WHERE player = "chris riley"
77
###HUMAN: What are the speeds of the longest roller coaster?, ###ASSISTANT: SELECT speed FROM roller_coaster ORDER BY length DESC LIMIT 1
78
###HUMAN: What are the lowest points with 2013 as the year, and goals less than 0?, ###ASSISTANT: SELECT MIN(points) FROM table_name_48 WHERE year = "2013" AND goals < 0
79
###HUMAN: Who were the runner(s)-up when Tiger won by 11 strokes?, ###ASSISTANT: SELECT "Runner(s)-up" FROM table_16888 WHERE "Margin of victory" = '11 strokes'
80
###HUMAN: Name the segment a for 8-08, ###ASSISTANT: SELECT segment_a FROM table_15187735_8 WHERE series_ep = "8-08"
81
###HUMAN: How many outputs are there for solid state, battery operated for portable use listed in notes?, ###ASSISTANT: SELECT COUNT(outputs) FROM table_25276250_3 WHERE notes = "Solid state, battery operated for portable use"
82
###HUMAN: If the rank is 17, what are the names?, ###ASSISTANT: SELECT name FROM table_24990183_7 WHERE rank = 17
83
###HUMAN: What is the 1979 number for Standing Rock Indian Reservation when the 1989 is less than 54.9?, ###ASSISTANT: SELECT SUM(1979) FROM table_name_51 WHERE reservation = "standing rock indian reservation" AND 1989 < 54.9
84
###HUMAN: What is Opponent, when Attendance is 58,836?, ###ASSISTANT: SELECT "Opponent" FROM table_49308 WHERE "Attendance" = '58,836'
85
###HUMAN: What is the mean huc example code when the example name's lower snake, there are 6 digits, and less than 3 levels?, ###ASSISTANT: SELECT AVG("Example code (HUC)") FROM table_41893 WHERE "Example name" = 'lower snake' AND "Digits" = '6' AND "Level" < '3'
86
###HUMAN: What is the quarterfinal week for Austin Anderson?, ###ASSISTANT: SELECT MIN("Qtr. Final (Week)") FROM table_29572 WHERE "Name/Name of Act" = 'Austin Anderson'
87
###HUMAN: What is the volume when the resrvoir is Tanes?, ###ASSISTANT: SELECT "Volume (hm\u00b3)" FROM table_30696 WHERE "Reservoir" = 'Tanes'
88
###HUMAN: provide the number of patients whose days of hospital stay is greater than 23 and drug code is acyc400?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.days_stay > "23" AND prescriptions.formulary_drug_cd = "ACYC400"
89
###HUMAN: What's the title of the audio book with story number 91?, ###ASSISTANT: SELECT "Title" FROM table_23576 WHERE "Story #" = '91'
90
###HUMAN: What class is ERP W of 800?, ###ASSISTANT: SELECT class FROM table_name_9 WHERE erp_w = 800
91
###HUMAN: tell me the cost of the diagnosis for smoking cessation counseling given?, ###ASSISTANT: SELECT DISTINCT cost.cost FROM cost WHERE cost.eventtype = 'diagnosis' AND cost.eventid IN (SELECT diagnosis.diagnosisid FROM diagnosis WHERE diagnosis.diagnosisname = 'smoking cessation counseling given')
92
###HUMAN: what is the total number of patients who were diagnosed with icd9 code 2254?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE diagnoses.icd9_code = "2254"
93
###HUMAN: Give me the maximum low temperature and average precipitation at the Amersham station., ###ASSISTANT: SELECT MAX(t1.low_temperature), AVG(t1.precipitation) FROM weekly_weather AS t1 JOIN station AS t2 ON t1.station_id = t2.id WHERE t2.network_name = "Amersham"
94
###HUMAN: Which event was held at Manly Beach?, ###ASSISTANT: SELECT event FROM table_name_20 WHERE location = "manly beach"
95
###HUMAN: Who was the home team against the Bolton Wanderers?, ###ASSISTANT: SELECT "Home team" FROM table_43959 WHERE "Away team" = 'bolton wanderers'
96
###HUMAN: All Info About Mobile Android Testing., ###ASSISTANT: SELECT P.OwnerUserId, P.Title, P.Tags, P.ViewCount, P.Score, P.AnswerCount, P.CreationDate FROM Posts AS P WHERE (P.Tags LIKE '%android-testing%') OR (P.Tags LIKE '%robotium%') OR (P.Tags LIKE '%androidviewclient%') OR (P.Tags LIKE '%monkeyrunner%') OR (P.Tags LIKE '%android-espresso%') OR (P.Tags LIKE '%android-emulator%') OR (P.Tags LIKE '%android%' AND P.Tags LIKE '%uiautomator%') OR (P.Tags LIKE '%android%' AND P.Tags LIKE '%appium%') OR (P.Tags LIKE '%android%' AND P.Tags LIKE '%calabash%') OR (P.Tags LIKE '%android%' AND P.Tags LIKE '%test%') ORDER BY P.Score DESC
97
###HUMAN: Tell me the away team score for away team of south melbourne, ###ASSISTANT: SELECT "Away team score" FROM table_51600 WHERE "Away team" = 'south melbourne'
98
###HUMAN: What year was the downy woodpecker coin created?, ###ASSISTANT: SELECT SUM("Year") FROM table_55306 WHERE "Animal" = 'downy woodpecker'
99
###HUMAN: What model has a launch of September 3, 2010?, ###ASSISTANT: SELECT "Model" FROM table_28269 WHERE "Launch" = 'September 3, 2010'

No dataset card yet

New: Create and edit this dataset card directly on the website!

Contribute a Dataset Card
Downloads last month
0
Add dataset card