Unnamed: 0
int64
0
3k
text
stringlengths
74
2.32k
900
###HUMAN: What is the total number of draws for songs performed by Miranda with fewer than 48 points?, ###ASSISTANT: SELECT COUNT(draw) FROM table_name_64 WHERE performer = "miranda" AND points < 48
901
###HUMAN: On what day was the record set at the 2002 Salt Lake City games with a time of 3:57.70?, ###ASSISTANT: SELECT date FROM table_name_49 WHERE games = "2002 salt lake city" AND time = "3:57.70"
902
###HUMAN: how many countries received silver medals ?, ###ASSISTANT: SELECT COUNT("nation") FROM table_204_211 WHERE "silver" > 0
903
###HUMAN: Who played against in venue a on 17 february 1900?, ###ASSISTANT: SELECT opponent FROM table_name_43 WHERE venue = "a" AND date = "17 february 1900"
904
###HUMAN: does the united states have more nation of citzenship then united kingdom ?, ###ASSISTANT: SELECT (SELECT COUNT(*) FROM table_203_364 WHERE "nation of citizenship" = 'united states') > (SELECT COUNT(*) FROM table_203_364 WHERE "nation of citizenship" = 'united kingdom')
905
###HUMAN: which governor served for the least number of years ?, ###ASSISTANT: SELECT "name\n(birth-death)" FROM table_203_89 ORDER BY "left office" - "took office" LIMIT 1
906
###HUMAN: How many documents for each document type description? Visualize by a pie chart., ###ASSISTANT: SELECT Document_Type_Description, COUNT(Document_Type_Description) FROM Ref_Document_Types AS T1 JOIN Documents AS T2 ON T1.Document_Type_Code = T2.Document_Type_Code GROUP BY Document_Type_Description
907
###HUMAN: What was the nationality of five-eighth player Darren Lockyer?, ###ASSISTANT: SELECT "Nationality" FROM table_4886 WHERE "Player" = 'darren lockyer' AND "Position" = 'five-eighth'
908
###HUMAN: full PostHistory for a post., ###ASSISTANT: SELECT ph.*, pht.Name FROM PostHistory AS ph LEFT JOIN PostHistoryTypes AS pht ON ph.PostHistoryTypeId = pht.Id WHERE PostId = '##post:int##' ORDER BY ph.Id
909
###HUMAN: Which location has a method of decision and Nikos Tsoukalas for an opponent?, ###ASSISTANT: SELECT "Location" FROM table_61731 WHERE "Method" = 'decision' AND "Opponent" = 'nikos tsoukalas'
910
###HUMAN: A bar chart about what is average age for different job title?, and rank y axis in ascending order., ###ASSISTANT: SELECT job, AVG(age) FROM Person GROUP BY job ORDER BY AVG(age)
911
###HUMAN: count the number of patients whose language is engl and diagnoses long title is unspecified protein-calorie malnutrition?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.language = "ENGL" AND diagnoses.long_title = "Unspecified protein-calorie malnutrition"
912
###HUMAN: How many parties received 29.9% of the vote in Manhattan?, ###ASSISTANT: SELECT COUNT(party) FROM table_1108394_47 WHERE manhattan = "29.9_percentage"
913
###HUMAN: Information Extraction publications, ###ASSISTANT: SELECT DISTINCT paper.paperid FROM keyphrase, paper, paperkeyphrase WHERE keyphrase.keyphrasename = 'Information Extraction' AND paperkeyphrase.keyphraseid = keyphrase.keyphraseid AND paper.paperid = paperkeyphrase.paperid
914
###HUMAN: What is 1987, when 1986 is '1R'?, ###ASSISTANT: SELECT "1987" FROM table_43502 WHERE "1986" = '1r'
915
###HUMAN: What Event's Time is 4:01.00?, ###ASSISTANT: SELECT "Event" FROM table_67971 WHERE "Time" = '4:01.00'
916
###HUMAN: Which venue held a basketball team?, ###ASSISTANT: SELECT venue FROM table_name_98 WHERE sport = "basketball"
917
###HUMAN: Find the number of users in each role. Plot them as bar chart., ###ASSISTANT: SELECT role_code, COUNT(*) FROM Users GROUP BY role_code
918
###HUMAN: What country is the Jiufotang Formation located in?, ###ASSISTANT: SELECT location FROM table_name_59 WHERE unit = "jiufotang formation"
919
###HUMAN: id-requests to be deleted (q.score<4 and not a single answer scored >=3)., ###ASSISTANT: SELECT CONCAT('http://anime.stackexchange.com/questions/', p.Id) FROM Posts AS p JOIN PostTags AS pt ON p.Id = pt.PostId JOIN Tags AS t ON pt.TagId = t.Id WHERE p.PostTypeId = 1 AND t.TagName = 'identification-request' AND p.DeletionDate IS NULL AND p.Score < 4 AND NOT EXISTS(SELECT 1 FROM Posts AS a WHERE a.ParentId = p.Id AND a.DeletionDate IS NULL AND a.Score >= 3)
920
###HUMAN: What is the sum of Grid, when Time is '+16.687'?, ###ASSISTANT: SELECT SUM("Grid") FROM table_59553 WHERE "Time" = '+16.687'
921
###HUMAN: What is the highest number of bronze medals of west germany, which has more than 0 golds?, ###ASSISTANT: SELECT MAX("Bronze") FROM table_66006 WHERE "Nation" = 'west germany' AND "Gold" > '0'
922
###HUMAN: why years have no liberal councillors serving ?, ###ASSISTANT: SELECT "year" FROM table_204_349 WHERE "liberal\ncouncillors" = 0
923
###HUMAN: Which club has a League of american basketball association, and a Venue of tba?, ###ASSISTANT: SELECT "Club" FROM table_67629 WHERE "League" = 'american basketball association' AND "Venue" = 'tba'
924
###HUMAN: What year was incumbent jim mcdermott first elected?, ###ASSISTANT: SELECT MIN("First elected") FROM table_72369 WHERE "Incumbent" = 'Jim McDermott'
925
###HUMAN: in the ft pct .667 what is the number of gp-gs, ###ASSISTANT: SELECT COUNT(gp_gs) FROM table_23817012_6 WHERE ft_pct = ".667"
926
###HUMAN: In what Weeks is the game against the Tampa Bay Buccaneers with less than 44,506 in Attendance?, ###ASSISTANT: SELECT SUM("Week") FROM table_47699 WHERE "Opponent" = 'tampa bay buccaneers' AND "Attendance" < '44,506'
927
###HUMAN: Show each gender code and the corresponding count of guests sorted by the count in descending order by a pie chart., ###ASSISTANT: SELECT gender_code, COUNT(*) FROM Guests GROUP BY gender_code ORDER BY COUNT(*) DESC
928
###HUMAN: How many laps did Ricardo Zonta drive with a grid less than 14?, ###ASSISTANT: SELECT SUM(laps) FROM table_name_15 WHERE grid < 14 AND driver = "ricardo zonta"
929
###HUMAN: What's the average L/km combines when the L/100km Urban is 13.9, the mpg-UK combined is more than 28.5 and the mpg-UK extra urban is less than 38.7?, ###ASSISTANT: SELECT AVG("L/100km Combined") FROM table_66547 WHERE "L/100km Urban (Cold)" = '13.9' AND "mpg-UK Combined" > '28.5' AND "mpg-UK Extra-Urban" < '38.7'
930
###HUMAN: provide the number of patients whose marital status is widowed and procedure long title is percutaneous (endoscopic) jejunostomy [pej]?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.marital_status = "WIDOWED" AND procedures.long_title = "Percutaneous (endoscopic) jejunostomy [PEJ]"
931
###HUMAN: How tall is Maksim Botin?, ###ASSISTANT: SELECT height FROM table_14038363_1 WHERE player = "Maksim Botin"
932
###HUMAN: how many patients are diagnosed with polyneuropathy in diabetes and treated with base drug?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE diagnoses.long_title = "Polyneuropathy in diabetes" AND prescriptions.drug_type = "BASE"
933
###HUMAN: What shows for shoots for craig peacock a?, ###ASSISTANT: SELECT shoots FROM table_name_62 WHERE player = "craig peacock a"
934
###HUMAN: What was the date of game with a score of 42-6?, ###ASSISTANT: SELECT "Date" FROM table_32178 WHERE "Score" = '42-6'
935
###HUMAN: What kind of Social Sec Leeds has a Media Officer of jason james and a Treasurer of james davidson?, ###ASSISTANT: SELECT social_sec_leeds FROM table_name_62 WHERE media_officer = "jason james" AND treasurer = "james davidson"
936
###HUMAN: What are the dates that Falling Angel aired?, ###ASSISTANT: SELECT date FROM table_28803803_1 WHERE name = "Falling Angel"
937
###HUMAN: give me the number of patients whose year of birth is less than 2182 and procedure short title is coronar arteriogr-1 cath?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.dob_year < "2182" AND procedures.short_title = "Coronar arteriogr-1 cath"
938
###HUMAN: How many completion students in each day? Return a line chart grouping by date of completion, and order by the X-axis in descending please., ###ASSISTANT: SELECT date_of_completion, COUNT(date_of_completion) FROM Student_Course_Enrolment GROUP BY date_of_completion ORDER BY date_of_completion DESC
939
###HUMAN: What is the effective date of the claim that has the largest amount of total settlement?, ###ASSISTANT: SELECT t1.Effective_Date FROM claims AS t1 JOIN settlements AS t2 ON t1.claim_id = t2.claim_id GROUP BY t1.claim_id ORDER BY SUM(t2.settlement_amount) DESC LIMIT 1
940
###HUMAN: retrieve the patient ids who are diagnosed with nonrupt cerebral aneurym since 2105., ###ASSISTANT: 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 = 'nonrupt cerebral aneurym') AND STRFTIME('%y', diagnoses_icd.charttime) >= '2105')
941
###HUMAN: Which inhabitants have 2009 as the election, with cremona as the municipality?, ###ASSISTANT: SELECT "Inhabitants" FROM table_13089 WHERE "Election" = '2009' AND "Municipality" = 'cremona'
942
###HUMAN: Can you identify the GSIs from last semester for DENTED 605 ?, ###ASSISTANT: SELECT DISTINCT student.firstname, student.lastname FROM course INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN gsi ON gsi.course_offering_id = course_offering.offering_id INNER JOIN student ON student.student_id = gsi.student_id INNER JOIN semester ON semester.semester_id = course_offering.semester WHERE course.department = 'DENTED' AND course.number = 605 AND semester.semester = 'FA' AND semester.year = 2015
943
###HUMAN: What round did Matt Clark play?, ###ASSISTANT: SELECT round FROM table_name_94 WHERE player = "matt clark"
944
###HUMAN: Is MATH 185 available as a Summer class in 2004 ?, ###ASSISTANT: SELECT COUNT(*) > 0 FROM course, course_offering, semester WHERE course.course_id = course_offering.course_id AND course.department = 'MATH' AND course.number = 185 AND semester.semester = 'Summer' AND semester.semester_id = course_offering.semester AND semester.year = 2004
945
###HUMAN: Show the facility codes of apartments with more than 4 bedrooms, and count them by a bar chart, display by the Y-axis from high to low., ###ASSISTANT: SELECT facility_code, COUNT(facility_code) FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 4 GROUP BY facility_code ORDER BY COUNT(facility_code) DESC
946
###HUMAN: Which numerical entry corresponds to 'Episode 9'?, ###ASSISTANT: SELECT COUNT("#") FROM table_19808 WHERE "Episode" = 'Episode 9'
947
###HUMAN: Show the minister who took office after 1961 or before 1959., ###ASSISTANT: SELECT minister FROM party WHERE took_office > 1961 OR took_office < 1959
948
###HUMAN: how many teams did the comets win 2 matches against ?, ###ASSISTANT: SELECT COUNT("opposition") FROM table_204_334 WHERE "won" = 2
949
###HUMAN: In what City/State did the ATCC Round 4 series take place?, ###ASSISTANT: SELECT city___state FROM table_name_62 WHERE series = "atcc round 4"
950
###HUMAN: Show the product name and total order quantity for each product. Show bar chart., ###ASSISTANT: SELECT T1.product_name, AVG(SUM(T2.order_quantity)) FROM Products AS T1 JOIN Order_Items AS T2 ON T1.product_id = T2.product_id GROUP BY T1.product_name
951
###HUMAN: How much Played has a Position of 7, and a Drawn smaller than 7?, ###ASSISTANT: SELECT SUM("Played") FROM table_60828 WHERE "Position" = '7' AND "Drawn" < '7'
952
###HUMAN: what are the ways to consume guaifenesin?, ###ASSISTANT: SELECT DISTINCT prescriptions.route FROM prescriptions WHERE prescriptions.drug = 'guaifenesin'
953
###HUMAN: Which Gran Hamada has a Block A of tatsuhito takaiwa?, ###ASSISTANT: SELECT gran_hamada FROM table_name_67 WHERE block_a = "tatsuhito takaiwa"
954
###HUMAN: return me the number of papers in VLDB conference in ' University of Michigan ' ., ###ASSISTANT: SELECT COUNT(DISTINCT (publication.title)) FROM author, conference, organization, publication, writes WHERE conference.name = 'VLDB' AND organization.name = 'University of Michigan' AND organization.oid = author.oid AND publication.cid = conference.cid AND writes.aid = author.aid AND writes.pid = publication.pid
955
###HUMAN: A bar graph listing the local authorities and how many local authorities provided by all stations, could you display X from high to low order?, ###ASSISTANT: SELECT local_authority, COUNT(local_authority) FROM station GROUP BY local_authority ORDER BY local_authority DESC
956
###HUMAN: Where did the player who won in 1991 finish?, ###ASSISTANT: SELECT "Finish" FROM table_61462 WHERE "Year(s) won" = '1991'
957
###HUMAN: How much does number 26 weigh?, ###ASSISTANT: SELECT weight FROM table_name_31 WHERE number = "26"
958
###HUMAN: Which team has 10 losses?, ###ASSISTANT: SELECT "Team" FROM table_41853 WHERE "Lost" = '10'
959
###HUMAN: What is the highest market value in billions of the company with profits of 20.96 billions and 166.99 billions in assets?, ###ASSISTANT: SELECT MAX("Market Value (billion $)") FROM table_48303 WHERE "Profits (billion $)" = '20.96' AND "Assets (billion $)" > '166.99'
960
###HUMAN: when was the last time patient 027-165214 had the minimum systemicdiastolic on the current intensive care unit visit., ###ASSISTANT: 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 = '027-165214') AND patient.unitdischargetime IS NULL) AND NOT vitalperiodic.systemicdiastolic IS NULL ORDER BY vitalperiodic.systemicdiastolic, vitalperiodic.observationtime DESC LIMIT 1
961
###HUMAN: What is the LOA of Brindabella?, ###ASSISTANT: SELECT loa__metres_ FROM table_25595209_1 WHERE yacht = "Brindabella"
962
###HUMAN: what are the top three most common specimen tests performed since 2 years ago?, ###ASSISTANT: SELECT t1.spec_type_desc FROM (SELECT microbiologyevents.spec_type_desc, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM microbiologyevents WHERE DATETIME(microbiologyevents.charttime) >= DATETIME(CURRENT_TIME(), '-2 year') GROUP BY microbiologyevents.spec_type_desc) AS t1 WHERE t1.c1 <= 3
963
###HUMAN: had patient 3273 excreted urine out ureteral stent #1 when they came to the hospital last time?, ###ASSISTANT: SELECT COUNT(*) > 0 FROM outputevents WHERE outputevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 3273 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime DESC LIMIT 1)) AND outputevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'urine out ureteral stent #1' AND d_items.linksto = 'outputevents')
964
###HUMAN: In what season was the conference record for the Pandas 15-1-1?, ###ASSISTANT: SELECT "Season" FROM table_29292 WHERE "Conf. Record" = '15-1-1'
965
###HUMAN: What district has abhayapuri south as the name?, ###ASSISTANT: SELECT "District" FROM table_60842 WHERE "Name" = 'abhayapuri south'
966
###HUMAN: What was Tom Kite's to par?, ###ASSISTANT: SELECT "To par" FROM table_7771 WHERE "Player" = 'tom kite'
967
###HUMAN: Which Rank is the Country of soviet union with a Total smaller than 19?, ###ASSISTANT: SELECT MIN(rank) FROM table_name_94 WHERE country = "soviet union" AND total < 19
968
###HUMAN: How many people directed episode 3 in the season?, ###ASSISTANT: SELECT COUNT(directed_by) FROM table_25277262_2 WHERE no_in_season = 3
969
###HUMAN: baseline hgb below the lower limits of normal at the local laboratory; lymphopenia ( < 1000 / l ) , neutropenia ( < 1500 / l ) , or thrombocytopenia ( platelets < 100000 / l ) ., ###ASSISTANT: SELECT * FROM table_dev_20 WHERE lymphopenia < 1000 AND neutropenia < 1500 OR thrombocytopenia = 1 OR platelets < 100000
970
###HUMAN: who was the winning driver after nigel mansell ?, ###ASSISTANT: SELECT "winning driver" FROM table_203_408 WHERE "rd." > (SELECT "rd." FROM table_203_408 WHERE "winning driver" = 'nigel mansell') ORDER BY "rd." LIMIT 1
971
###HUMAN: What type of car has the model 6cm?, ###ASSISTANT: SELECT type FROM table_name_11 WHERE model = "6cm"
972
###HUMAN: what was the last ward identification for patient 49036 since 4 years ago?, ###ASSISTANT: SELECT transfers.wardid FROM transfers WHERE transfers.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 49036) AND NOT transfers.wardid IS NULL AND DATETIME(transfers.intime) >= DATETIME(CURRENT_TIME(), '-4 year') ORDER BY transfers.intime DESC LIMIT 1
973
###HUMAN: What is the player from England's score?, ###ASSISTANT: SELECT score FROM table_name_98 WHERE country = "england"
974
###HUMAN: Which Maximum episode premiered March 8, 2008?, ###ASSISTANT: SELECT MAX(episode) FROM table_2140071_8 WHERE premier_date = "March 8, 2008"
975
###HUMAN: How many patients are born before 2197 and with procedure icd9 code 309?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.dob_year < "2197" AND procedures.icd9_code = "309"
976
###HUMAN: What is the acceleration 1-100km/h when the name is 1.5 dci?, ###ASSISTANT: SELECT acceleration_0_100km_h FROM table_name_32 WHERE name = "1.5 dci"
977
###HUMAN: give me the number of patients whose primary disease is transient ischemic attack and days of hospital stay is greater than 4?, ###ASSISTANT: SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "TRANSIENT ISCHEMIC ATTACK" AND demographic.days_stay > "4"
978
###HUMAN: Which away game was played on 2008-07-18?, ###ASSISTANT: SELECT away FROM table_name_5 WHERE date = "2008-07-18"
979
###HUMAN: What is the team whose driver Jeff Simmons?, ###ASSISTANT: SELECT team FROM table_17319931_1 WHERE driver = "Jeff Simmons"
980
###HUMAN: What was the final score when tracy austin was runner up?, ###ASSISTANT: SELECT score_in_final FROM table_20986710_1 WHERE runner_up = "Tracy Austin"
981
###HUMAN: Which NBA Draft had Labradford Smith?, ###ASSISTANT: SELECT nba_draft FROM table_name_61 WHERE player = "labradford smith"
982
###HUMAN: Which player has a 92.58 3-dart average?, ###ASSISTANT: SELECT "Player" FROM table_24015 WHERE "3-dart Average" = '92.58'
983
###HUMAN: Which Conference Joined has a Previous Conference of northwestern, and a Mascot of oilers?, ###ASSISTANT: SELECT conference_joined FROM table_name_95 WHERE previous_conference = "northwestern" AND mascot = "oilers"
984
###HUMAN: If sample 6480 is imported, which country is it originally from?, ###ASSISTANT: SELECT country FROM sampledata15 WHERE sample_pk = 6480 AND origin = 2
985
###HUMAN: Give me the title and highest price for each film Show bar chart, list from low to high by the Y., ###ASSISTANT: SELECT Title, MAX(T1.Price) FROM schedule AS T1 JOIN film AS T2 ON T1.Film_ID = T2.Film_ID GROUP BY Title ORDER BY MAX(T1.Price)
986
###HUMAN: What club team did JArrod Maidens play for?, ###ASSISTANT: SELECT "Club team" FROM table_17204 WHERE "Player" = 'Jarrod Maidens'
987
###HUMAN: Name the least matches for year 2008, ###ASSISTANT: SELECT MIN(matches) FROM table_15829930_5 WHERE year = 2008
988
###HUMAN: Show me about the distribution of All_Road and Team_ID in a bar chart, display by the y-axis in ascending., ###ASSISTANT: SELECT All_Road, Team_ID FROM basketball_match ORDER BY Team_ID
989
###HUMAN: What is the Placement when the Candidate is Jean-Patrick Berthiaume?, ###ASSISTANT: SELECT "Placement" FROM table_15441 WHERE "Candidate" = 'jean-patrick berthiaume'
990
###HUMAN: Questions I have answered where asker has accepted another answer. Lists all questions I have proposed an answer to, and, sadly, the original asker accepted a different answer., ###ASSISTANT: SELECT p.Id AS "post_link", a.Score, a.CreationDate FROM Posts AS a, Posts AS p WHERE a.OwnerUserId = '##UserId##' AND a.PostTypeId = 2 AND p.Id = a.ParentId AND p.AcceptedAnswerId != a.Id ORDER BY a.Score, a.CreationDate
991
###HUMAN: How many winners were there in the race of 1922, ###ASSISTANT: SELECT COUNT("Incumbent") FROM table_777 WHERE "First elected" = '1922'
992
###HUMAN: What is the title for episode number 7 in the season?, ###ASSISTANT: SELECT COUNT(title) FROM table_15431251_1 WHERE no_in_season = 7
993
###HUMAN: What was the score when the opponent was Dominika Cibulkov ?, ###ASSISTANT: SELECT "Score" FROM table_72981 WHERE "Opponent" = 'Dominika Cibulková'
994
###HUMAN: How many goals scored against the opposing team occurred with more than 7 losses, less than 27 goals scored for the team and drawn more than 1?, ###ASSISTANT: SELECT COUNT("Goals Against") FROM table_4876 WHERE "Lost" > '7' AND "Goals For" < '27' AND "Drawn" > '1'
995
###HUMAN: What is the score for Billy Andrade?, ###ASSISTANT: SELECT "Score" FROM table_8435 WHERE "Player" = 'billy andrade'
996
###HUMAN: What is the average 2002 value for Sunflower, which had a 2010 value less than 5587 and a 2007 value greater than 546?, ###ASSISTANT: SELECT AVG("2002") FROM table_70544 WHERE "2010" < '5587' AND "Production year" = 'sunflower' AND "2007" > '546'
997
###HUMAN: Who had the most points and how many did they have on April 22?, ###ASSISTANT: SELECT high_points FROM table_27700530_15 WHERE date = "April 22"
998
###HUMAN: which building held the record before the current holder ?, ###ASSISTANT: SELECT "building" FROM table_203_777 WHERE "years" < present_ref ORDER BY "years" DESC LIMIT 1
999
###HUMAN: What is the attendance of the game on July 26?, ###ASSISTANT: SELECT SUM(attendance) FROM table_name_1 WHERE date = "july 26"