thai_instruction
stringlengths 8
429
⌀ | eng_instruction
stringlengths 16
503
⌀ | table
stringlengths 11
2.09k
⌀ | sql
stringlengths 9
2.37k
⌀ | pandas
stringlengths 1
635
⌀ | real_table
stringclasses 2
values |
---|---|---|---|---|---|
สแต็กแผนภูมิแท่งของ school_id กับ All_Home ตามถนน acc และแสดงโดยเรียงจากมากไปน้อยด้วย X ไม่จำเป็นต้องใช้ตารางทั้งหมด | Stack bar chart of school_id vs All_Home based on acc road, and display in descending by the X.It is not neccessary to use all the tables. | university: School_ID [ int] School [ text] Location [ text] Founded [ real] Affiliation [ text] Enrollment [ real] Nickname [ text] Primary_conference [ text] | SELECT ACC_Road, School_ID FROM basketball_match GROUP BY All_Home, ACC_Road ORDER BY ACC_Road DESC | null | general |
พื้นที่ของโรงเรียนที่มี 2 เดซิล์ 2 และหมายเลข 222 เป็นเท่าใด ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | What is the area of the school with a decile of 2 and a roll number 222?It is not neccessary to use all the tables. | table_name_33: area [ VARCHAR] decile [ VARCHAR] roll [ VARCHAR] | SELECT area FROM table_name_33 WHERE decile = "2" AND roll = "222" | null | general |
ใครเป็นผู้ชนะสนามโมเดน่า?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Who won the Modena circuit?It is not neccessary to use all the tables. | table_16771: "Circuit" [ text] "Date" [ text] "Constructor" [ text] "Report" [ text] | SELECT "Winning driver" FROM table_16771 WHERE "Circuit" = 'Modena' | null | general |
ค้นหาสถานะของวิทยาลัยที่ผู้เล่น Charles กำลังเข้าร่วม ไม่จำเป็นต้องใช้ตารางทั้งหมด | Find the state of the college which player Charles is attending.It is not neccessary to use all the tables. | college: cname [ text] state [ text] enr [ number] | SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cname = T2.cname JOIN player AS T3 ON T2.pid = T3.pid WHERE T3.pname = 'Charles' | null | general |
รหัส PI ในพื้นที่ด้านหลังคืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the PI code in the hindhead area?It is not neccessary to use all the tables. | table_name_54: pi_code [ VARCHAR] area [ VARCHAR] | SELECT pi_code FROM table_name_54 WHERE area = "hindhead" | null | general |
ค้นหากระทู้ตามหัวข้อ ไม่จำเป็นต้องใช้ทุกตาราง | Looking for posts by topic.It is not neccessary to use all the tables. | SuggestedEditVotes: Id [ number] SuggestedEditId [ number] UserId [ number] VoteTypeId [ number] CreationDate [ time] TargetUserId [ number] TargetRepChange [ number] | SELECT * FROM Posts WHERE CreationDate > '2017-1-1' AND CreationDate < '2017-5-5' AND Tags LIKE '%python%' LIMIT 10 | null | general |
ค่าสูงสุดสำหรับค่าเฉลี่ย bp ของหลอดเลือดแดงสำหรับผู้ป่วย 9294 ในเดือนนี้/52 คือเท่าไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | what was the maximum value for arterial bp mean for patient 9294 on this month/09?It is not neccessary to use all the tables. | diagnoses_icd: row_id [ number] subject_id [ number] hadm_id [ number] icd9_code [ text] charttime [ time] | SELECT MAX(chartevents.valuenum) FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 9294)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'arterial bp mean' AND d_items.linksto = 'chartevents') AND DATETIME(chartevents.charttime, 'start of month') = DATETIME(CURRENT_TIME(), 'start of month', '-0 month') AND STRFTIME('%d', chartevents.charttime) = '09' | null | general |
แพ็คเกจ/ตัวเลือกในอิตาลีคืออะไรเมื่อเนื้อหาเกี่ยวกับศาสนา?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the package/option in Italy when the content is religione?It is not neccessary to use all the tables. | table_name_68: package_option [ VARCHAR] content [ VARCHAR] country [ VARCHAR] | SELECT package_option FROM table_name_68 WHERE content = "religione" AND country = "italy" | null | general |
Georgetown ชนะได้กี่ครั้งในปี 1941 ?ไม่จำเป็นต้องใช้ตารางทั้งหมด | how many wins did georgetown achieve in 1941 ?It is not neccessary to use all the tables. | table_204_36: id [ number] "date" [ text] "opponent" [ text] "site" [ text] "result" [ text] "attendance" [ number] "record" [ text] | SELECT COUNT(*) FROM table_204_36 WHERE "result" = 'w' AND "date" = 1941 | null | general |
คำถามถูกปิด แก้ไขโดยผู้ใช้ใดๆ และเปิดใหม่ ไม่จำเป็นต้องใช้ตารางทั้งหมด | Questions Closed, Edited by Any User and Reopened.It is not neccessary to use all the tables. | Tags: Id [ number] TagName [ text] Count [ number] ExcerptPostId [ number] WikiPostId [ number] | SELECT i.PostId AS "post_link" FROM PostHistory AS i INNER JOIN PostHistory AS c ON i.PostId = c.PostId AND i.PostHistoryTypeId = 1 AND c.PostHistoryTypeId = 10 INNER JOIN PostHistory AS e ON c.PostId = e.PostId AND e.PostHistoryTypeId = 5 AND c.CreationDate < e.CreationDate AND i.UserId = e.UserId INNER JOIN PostHistory AS r ON c.PostId = r.PostId AND r.PostHistoryTypeId = 11 AND r.CreationDate > e.CreationDate WHERE i.CreationDate >= DATEADD(DAY, -15, GETDATE()) GROUP BY i.PostId | null | general |
m90 มีขนาดปรากฏสูงหรือต่ำกว่า m63 หรือไม่ ไม่จำเป็นต้องใช้ตารางทั้งหมด | does m90 have a higher or lower apparent magnitude than m63 ?It is not neccessary to use all the tables. | table_203_569: id [ number] "designation" [ text] "classification" [ text] "constellation" [ text] | SELECT (SELECT "apparent magnitude" FROM table_203_569 WHERE "designation" = 'm90') > (SELECT "apparent magnitude" FROM table_203_569 WHERE "designation" = 'm63') | null | general |
หัวหน้าโค้ชชื่ออะไรในปี 1974?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the name of the head coach of 1974?It is not neccessary to use all the tables. | table_name_96: name [ VARCHAR] years [ VARCHAR] | SELECT name FROM table_name_96 WHERE years = "1974" | null | general |
ในสหรัฐอเมริกา จำนวนผู้เข้าร่วมที่บริษัทสวนสนุกแห่งนี้ในปี 2554 มีมากกว่า 30,800,000 คน แต่ระบุว่าจำนวนผู้เข้าร่วมในปี 2551 เป็นเท่าใด ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | In the United States the 2011 attendance at this amusement park corporation was larger than 30,800,000 but lists what as its 2008 attendance?It is not neccessary to use all the tables. | table_76783: "Rank" [ real] "Country" [ text] "2008" [ text] "2009" [ text] "2010" [ text] "2011" [ real] "2012" [ text] | SELECT "2008" FROM table_76783 WHERE "2011" > '30,800,000' AND "Country" = 'united states' | null | general |
ฉันอยากจะเดินทางจากวอชิงตันไปพิตต์สเบิร์กในวันที่ 8 20 ไม่จำเป็นต้องใช้ตารางทั้งหมด | i would like to travel from WASHINGTON to PITTSBURGH on 8 20It is not neccessary to use all the tables. | flight_stop: flight_id [ int] stop_number [ int] stop_days [ text] stop_airport [ text] arrival_time [ int] arrival_airline [ text] arrival_flight_number [ int] departure_time [ int] departure_airline [ text] departure_flight_number [ int] stop_time [ int] | 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, date_day, days, flight WHERE (CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'PITTSBURGH' AND date_day.day_number = 20 AND date_day.month_number = 8 AND date_day.year = 1991 AND days.day_name = date_day.day_name AND flight.flight_days = days.days_code AND flight.to_airport = AIRPORT_SERVICE_1.airport_code) AND CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'WASHINGTON' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code | null | general |
ผลรวมของความโดดเด่นในหน่วย m ของสโลวาเกียคืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the sum of the prominence in m of slovakia?It is not neccessary to use all the tables. | table_name_39: prominence__m_ [ INTEGER] country [ VARCHAR] | SELECT SUM(prominence__m_) FROM table_name_39 WHERE country = "slovakia" | null | general |
ขนาดที่ชัดเจนของหมายเลข NGC 6027d คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | what is the apparent magnitude of NGC number 6027d?It is not neccessary to use all the tables. | table_54276: "Constellation" [ text] | SELECT "Apparent magnitude" FROM table_54276 WHERE "NGC number" = '6027d' | null | general |
Ruxandra Dragomir เล่นบนพื้นผิวใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What surface did Ruxandra Dragomir play on?It is not neccessary to use all the tables. | table_59449: "Outcome" [ text] "Date" [ text] "Tournament" [ text] "Surface" [ text] "Partner" [ text] | SELECT "Surface" FROM table_59449 WHERE "Partner" = 'ruxandra dragomir' | null | general |
ประเทศใดมีคะแนน 70-71-72=213?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which country has a score of 70-71-72=213?It is not neccessary to use all the tables. | table_51118: "Place" [ text] "Player" [ text] "Country" [ text] "Score" [ text] | SELECT "Country" FROM table_51118 WHERE "Score" = '70-71-72=213' | null | general |
ทีมเยือนที่เลคโอวัลคือทีมไหน?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | What is the away team at lake oval?It is not neccessary to use all the tables. | table_12020: "Venue" [ text] "Crowd" [ real] "Date" [ text] | SELECT "Away team" FROM table_12020 WHERE "Venue" = 'lake oval' | null | general |
ตั้งชื่อวันที่ด้วยคะแนน 9-2 ไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the date with score of 9-2It is not neccessary to use all the tables. | table_name_49: date [ VARCHAR] score [ VARCHAR] | SELECT date FROM table_name_49 WHERE score = "9-2" | null | general |
ขอทราบจำนวนผู้ป่วยที่จำหน่ายประจำคือสถานพยาบาลที่บ้านและผลตรวจทางห้องปฏิบัติการคือฟอสเฟตหรือไม่ ไม่จำเป็นต้องใช้ตารางทั้งหมด | give me the number of patients whose discharge location is home health care and lab test name is phosphate?It is not neccessary to use all the tables. | lab: subject_id [ text] hadm_id [ text] itemid [ text] charttime [ text] flag [ text] value_unit [ text] label [ text] fluid [ text] | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.discharge_location = "HOME HEALTH CARE" AND lab.label = "Phosphate" | null | general |
ค้นหาสนามบินต้นทางที่พลุกพล่านที่สุดซึ่งมีเส้นทางส่วนใหญ่ในจีน ไม่จำเป็นต้องใช้ตารางทั้งหมด | Find the busiest source airport that runs most number of routes in China.It is not neccessary to use all the tables. | routes: src_apid [ VARCHAR] | SELECT T1.name FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.src_apid WHERE T1.country = 'China' GROUP BY T1.name ORDER BY COUNT(*) DESC LIMIT 1 | null | general |
ค้นหารายชื่ออาจารย์ผู้สอนที่มีเงินเดือนมากกว่าเงินเดือนอาจารย์ในภาควิชาชีววิทยาทั้งหมด ไม่จำเป็นต้องใช้ตารางทั้งหมด | Find the names of all instructors whose salary is greater than the salary of all instructors in the Biology department.It is not neccessary to use all the tables. | advisor: s_id [ text] i_id [ text] | SELECT name FROM instructor WHERE salary > (SELECT MAX(salary) FROM instructor WHERE dept_name = 'Biology') | null | general |
ฤดูกาลแรกสุดคืออะไรโดยมีอันดับฤดูกาลปกติอยู่ที่ 11 จาก 15 และชนะมากกว่า 10 ครั้ง? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the earliest season with a regular season standing of 11th from 15 and more than 10 wins?It is not neccessary to use all the tables. | table_67435: "Season" [ real] "Year" [ real] "Wins" [ real] "Draws" [ real] "Losses" [ real] | SELECT MIN("Season") FROM table_67435 WHERE "Regular Season Standing" = '11th from 15' AND "Wins" > '10' | null | general |
โปรดแสดงแพลตฟอร์มซอฟต์แวร์ที่แตกต่างกันและจำนวนอุปกรณ์ที่เกี่ยวข้องที่ใช้แต่ละแพลตฟอร์ม ไม่จำเป็นต้องใช้ตารางทั้งหมด | Please show different software platforms and the corresponding number of devices using each.It is not neccessary to use all the tables. | device: device_id [ number] device [ text] carrier [ text] package_version [ text] applications [ text] software_platform [ text] | SELECT software_platform, COUNT(*) FROM device GROUP BY software_platform | null | general |
คู่ต่อสู้คือใครเมื่อนอร์เวย์เผชิญหน้า?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | who is the opponent when norway is against?It is not neccessary to use all the tables. | table_50814: "Edition" [ text] "Round" [ text] "Date" [ text] "Against" [ text] "Surface" [ text] "Opponent" [ text] "Result" [ text] | SELECT "Opponent" FROM table_50814 WHERE "Against" = 'norway' | null | general |
บอกยอดรวมเงินมากกว่า 0 สำหรับอิตาลีทองน้อยกว่า 29 ไม่จำเป็นต้องใช้ตารางทั้งหมด | Tell me the total for silver more than 0 for italy with gold less than 29It is not neccessary to use all the tables. | table_53725: "Rank" [ real] "Nation" [ text] "Gold" [ real] "Silver" [ real] "Bronze" [ real] "Total" [ real] | SELECT MIN("Total") FROM table_53725 WHERE "Silver" > '0' AND "Nation" = 'italy' AND "Gold" < '29' | null | general |
การแพ้ใดมีชัยชนะ 6 และแพ้น้อยกว่า 1741 ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which Losses has a Wins of 6, and an Against smaller than 1741?It is not neccessary to use all the tables. | table_name_56: losses [ INTEGER] wins [ VARCHAR] against [ VARCHAR] | SELECT MIN(losses) FROM table_name_56 WHERE wins = 6 AND against < 1741 | null | general |
ทะเลสาบตกปลามีประชากรต่อตารางกิโลเมตรเป็นเท่าใด ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the population per km2 in Fishing Lake?It is not neccessary to use all the tables. | table_2500440_1: population_density__per_km_2__ [ VARCHAR] name [ VARCHAR] | SELECT population_density__per_km_2__ FROM table_2500440_1 WHERE name = "Fishing Lake" | null | general |
วิทยาลัยสำหรับผู้เล่นกับทีม cfl ของ Edmonton Eskimos (ผ่าน calgary) คืออะไร? ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | What was the college for the player with the cfl team of Edmonton Eskimos (via calgary)?It is not neccessary to use all the tables. | table_10812938_3: college [ VARCHAR] cfl_team [ VARCHAR] | SELECT college FROM table_10812938_3 WHERE cfl_team = "Edmonton Eskimos (via Calgary)" | null | general |
รองผู้อำนวยการคนใดเข้ารับตำแหน่งในปี พ.ศ. 2519?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which deputy took office in 1976?It is not neccessary to use all the tables. | table_name_97: name [ VARCHAR] took_office [ VARCHAR] | SELECT name FROM table_name_97 WHERE took_office = "1976" | null | general |
ค้นหาจำนวนผู้ป่วยเชื้อสายฮิสแปนิก/ละติน-เปอร์โตริโก ที่เกิดก่อนปี 2071 ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | find the number of hispanic/latino-puerto rican ethnic background patients who were born before 2071.It is not neccessary to use all the tables. | procedures: subject_id [ text] hadm_id [ text] icd9_code [ text] short_title [ text] long_title [ text] | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.ethnicity = "HISPANIC/LATINO - PUERTO RICAN" AND demographic.dob_year < "2071" | null | general |
ขอทราบจำนวนผู้ป่วยที่นับถือศาสนาโปรเตสแตนต์เควกเกอร์ และรหัสรายการคือ 51447 หรือไม่ไม่จำเป็นต้องใช้ตารางทั้งหมด | give me the number of patients whose religion is protestant quaker and item id is 51447?It is not neccessary to use all the tables. | diagnoses: subject_id [ text] hadm_id [ text] icd9_code [ text] short_title [ text] long_title [ text] | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.religion = "PROTESTANT QUAKER" AND lab.itemid = "51447" | null | general |
Glider คืออะไร เมื่อความเร็วอยู่ที่ '147.3 กม./ชม.'?ไม่จำเป็นต้องใช้ทุกโต๊ะ | What is Glider, when Speed is '147.3km/h'?It is not neccessary to use all the tables. | table_46983: "Position" [ real] "Pilot" [ text] "Glider" [ text] "Speed" [ text] "Distance" [ text] | SELECT "Glider" FROM table_46983 WHERE "Speed" = '147.3km/h' | null | general |
ยอดรวมสูงสุดของประเทศ/ดินแดนใดๆ คือเท่าใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the highest total for any country/territory?It is not neccessary to use all the tables. | table_30008638_1: total [ INTEGER] | SELECT MAX(total) FROM table_30008638_1 | null | general |
กราฟแท่งแสดงรายการบริการและจำนวนบริการที่ให้บริการโดยทุกสถานี โดยแสดงรายการเรียงตามแกน x ไม่จำเป็นต้องใช้ตารางทั้งหมด | A bar graph listing the services and how many services provided by all stations, list in desc by the x axis.It is not neccessary to use all the tables. | route: train_id [ int] station_id [ int] | SELECT services, COUNT(services) FROM station GROUP BY services ORDER BY services DESC | null | general |
สถานที่ใดที่มีฮอว์ธอร์นเป็นทีมเยือน?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | What venue features hawthorn as the away team?It is not neccessary to use all the tables. | table_name_64: venue [ VARCHAR] away_team [ VARCHAR] | SELECT venue FROM table_name_64 WHERE away_team = "hawthorn" | null | general |
สำนักงานใหญ่และอุตสาหกรรมของทุกบริษัทคืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What are the headquarters and industries of all companies?It is not neccessary to use all the tables. | company: company_id [ number] name [ text] headquarters [ text] industry [ text] sales_in_billion [ number] profits_in_billion [ number] assets_in_billion [ number] market_value_in_billion [ number] | SELECT headquarters, industry FROM company | null | general |
คำนวณจำนวนผู้ป่วยที่ผ่าคออย่างรุนแรงข้างเดียวไม่จำเป็นต้องใช้ตารางทั้งหมด | calculate the total number of patients who had radical neck dissection, unilateralIt is not neccessary to use all the tables. | lab: subject_id [ text] hadm_id [ text] itemid [ text] charttime [ text] flag [ text] value_unit [ text] label [ text] fluid [ text] | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE procedures.long_title = "Radical neck dissection, unilateral" | null | general |
ชายเดี่ยวและหญิงเดี่ยวคือใครคือ wang shixian? ไม่จำเป็นต้องใช้ตารางทั้งหมด | Who is the mens singles and womens singlses is wang shixian?It is not neccessary to use all the tables. | table_18802: "Year" [ real] | SELECT "Mens singles" FROM table_18802 WHERE "Womens singles" = 'Wang Shixian' | null | general |
สัญญาณเรียกของ 5kW Sonshine Radio Cotabato คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the callsign of the 5kW Sonshine Radio Cotabato?It is not neccessary to use all the tables. | table_67473: "Branding" [ text] "Callsign" [ text] "Frequency" [ text] "Location" [ text] | SELECT "Callsign" FROM table_67473 WHERE "Power (kW)" = '5kw' AND "Branding" = 'sonshine radio cotabato' | null | general |
เที่ยวบินตรงจากนิวยอร์กไปยังลาสเวกัสในวันอาทิตย์ไม่จำเป็นต้องใช้ตารางทั้งหมด | nonstop flights from NEW YORK to LAS VEGAS on sundayIt is not neccessary to use all the tables. | airport: airport_code [ varchar] airport_name [ text] airport_location [ text] state_code [ varchar] country_name [ varchar] time_zone_code [ varchar] minimum_connect_time [ int] | 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, date_day, days, flight WHERE ((CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'LAS VEGAS' AND date_day.day_number = 27 AND date_day.month_number = 8 AND date_day.year = 1991 AND days.day_name = date_day.day_name AND flight.flight_days = days.days_code AND flight.to_airport = AIRPORT_SERVICE_1.airport_code) AND CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'NEW YORK' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code) AND flight.stops = 0 | null | general |
หมายเลขเลือกต่ำสุดของ Marc Pilon คือเท่าใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What was the lowest pick number for Marc Pilon?It is not neccessary to use all the tables. | table_43930: "Player" [ text] "Position" [ text] "College" [ text] | SELECT MIN("Pick #") FROM table_43930 WHERE "Player" = 'marc pilon' | null | general |
อันดับต่ำสุดโดยเฉลี่ยของคู่รักที่มีคะแนนเฉลี่ย 23 คะแนนและคะแนนรวม 115 คะแนนคือเท่าไร ไม่จำเป็นต้องใช้ตารางทั้งหมด | What was the lowest rank by average of a couple who had an average of 23 and a total of 115?It is not neccessary to use all the tables. | table_name_99: rank_by_average [ INTEGER] average [ VARCHAR] total [ VARCHAR] | SELECT MIN(rank_by_average) FROM table_name_99 WHERE average = 23 AND total = 115 | null | general |
จำนวนเกมทั้งหมดที่เล่นกับ Buffalo Sabres เป็นเท่าใด?ไม่จำเป็นที่จะต้องใช้โต๊ะทั้งหมด | What is the total number of games played against the Buffalo Sabres?It is not neccessary to use all the tables. | table_37994: "Game" [ real] "March" [ real] "Opponent" [ text] "Score" [ text] "Record" [ text] | SELECT COUNT("Game") FROM table_37994 WHERE "Opponent" = 'buffalo sabres' | null | general |
ดัชนี Happy Planet คือปีใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What year is the happy planet index?It is not neccessary to use all the tables. | table_77747: "Index" [ text] "Organization" [ text] "Year" [ real] "Rank" [ text] | SELECT SUM("Year") FROM table_77747 WHERE "Index" = 'happy planet index' | null | general |
แข่งขันไทเกอร์คัพ 1996 และผลการจับสลากวันที่เท่าไหร่?ไม่จำเป็นต้องใช้ตารางทั้งหมด | what is the date when the competition is 1996 tiger cup and the result is drew?It is not neccessary to use all the tables. | table_name_60: date [ VARCHAR] competition [ VARCHAR] result [ VARCHAR] | SELECT date FROM table_name_60 WHERE competition = "1996 tiger cup" AND result = "drew" | null | general |
วันที่ของเกมที่จัดขึ้นที่ Resch Center คือเมื่อใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the date of the game that took place at the Resch Center?It is not neccessary to use all the tables. | table_name_41: date [ VARCHAR] game_site [ VARCHAR] | SELECT date FROM table_name_41 WHERE game_site = "resch center" | null | general |
คุณสามารถระบุรายวิชาที่มีมูลค่า 12 หน่วยกิตได้หรือไม่ ?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Can you list the courses that are worth 12 credits ?It is not neccessary to use all the tables. | jobs: job_id [ int] job_title [ varchar] description [ varchar] requirement [ varchar] city [ varchar] state [ varchar] country [ varchar] zip [ int] | SELECT DISTINCT name, number FROM course WHERE credits = 12 AND department = 'EECS' | null | general |
จำนวนเหรียญรวมสูงสุดที่เกี่ยวข้องกับ 1 เหรียญทอง มากกว่า 0 เหรียญเงิน และ 2 เหรียญทองแดง คือเท่าใด ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the highest total number of medals associated with 1 gold, more than 0 silver, and 2 bronze?It is not neccessary to use all the tables. | table_name_33: total [ INTEGER] silver [ VARCHAR] bronze [ VARCHAR] gold [ VARCHAR] | SELECT MAX(total) FROM table_name_33 WHERE bronze = 2 AND gold = 1 AND silver > 0 | null | general |
นับจำนวนผู้ป่วยที่นับถือศาสนาโรมาเนียตะวันออก หรือไม่จำเป็นต้องใช้ทุกตาราง | count the number of patients whose religion is romanian east. orth.It is not neccessary to use all the tables. | diagnoses: subject_id [ text] hadm_id [ text] icd9_code [ text] short_title [ text] long_title [ text] | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.religion = "ROMANIAN EAST. ORTH" | null | general |
คะแนนสูงสุดที่ทีม Boston Red Stockings ได้รับเมื่อทีมชนะในช่วงฤดูคือเท่าไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What are the maximum scores the team Boston Red Stockings got when the team won in postseason?It is not neccessary to use all the tables. | fielding: player_id [ text] year [ number] stint [ number] team_id [ text] league_id [ text] pos [ text] g [ number] gs [ number] inn_outs [ number] po [ number] a [ number] e [ number] dp [ number] pb [ number] wp [ number] sb [ number] cs [ number] zr [ number] | SELECT MAX(T1.wins) FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' | null | general |
วันที่คู่ต่อสู้ในรอบชิงชนะเลิศคือวันที่เท่าไร gast n etlis mart n rodr guez? ไม่จำเป็นที่จะต้องใช้โต๊ะทั้งหมด | What is the date when the opponent in the final is gast n etlis mart n rodr guez?It is not neccessary to use all the tables. | table_name_22: date [ VARCHAR] opponents_in_the_final [ VARCHAR] | SELECT date FROM table_name_22 WHERE opponents_in_the_final = "gastón etlis martín rodríguez" | null | general |
มีผู้ป่วยเสียชีวิตกี่รายในหรือก่อนปี พ.ศ. 2174 ด้วยรหัสยา ibup600 ไม่จำเป็นต้องใช้ทุกตาราง | how many patients died in or before year 2174 with the drug code ibup600?It is not neccessary to use all the tables. | procedures: subject_id [ text] hadm_id [ text] icd9_code [ text] short_title [ text] long_title [ text] | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.dod_year <= "2174.0" AND prescriptions.formulary_drug_cd = "IBUP600" | null | general |
ครูที่สอนชั้นประถมศึกษาปีที่ 1 ชื่ออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What are the first names of the teachers who teach grade 1?It is not neccessary to use all the tables. | teachers: lastname [ text] firstname [ text] classroom [ number] | SELECT DISTINCT T2.firstname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 1 | null | general |
มีการวิ่งกี่ครั้งเมื่อคะแนนสูงสุดคือ 55 และมีจำนวนมากกว่า 12 อินนิง?ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many runs were there when the high score was 55 and there were more than 12 innings?It is not neccessary to use all the tables. | table_name_34: runs [ INTEGER] high_score [ VARCHAR] innings [ VARCHAR] | SELECT SUM(runs) FROM table_name_34 WHERE high_score = 55 AND innings > 12 | null | general |
ผลรวมของม้วนกับพื้นที่ไวคาก้าเป็นเท่าใด ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | What is the sum of the roll with an area of Waikaka?It is not neccessary to use all the tables. | table_69788: "Name" [ text] "Years" [ text] "Gender" [ text] "Area" [ text] "Authority" [ text] "Decile" [ real] "Roll" [ real] | SELECT SUM("Roll") FROM table_69788 WHERE "Area" = 'waikaka' | null | general |
ใครเป็นรัฐมนตรีของพรรคแรงงานและมีรัฐบาล 26 คณะ?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Who was the minister of the labor party and had 26 goverments?It is not neccessary to use all the tables. | table_61585: "Minister" [ text] "Party" [ text] "Governments" [ text] | SELECT "Minister" FROM table_61585 WHERE "Party" = 'labor party' AND "Governments" = '26' | null | general |
วันที่คืออะไร เมื่อทีมเยือนคือ 'อิปสวิช ทาวน์'? ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | What is Date, when Away Team is 'Ipswich Town'?It is not neccessary to use all the tables. | table_name_20: date [ VARCHAR] away_team [ VARCHAR] | SELECT date FROM table_name_20 WHERE away_team = "ipswich town" | null | general |
ครั้งสุดท้ายที่วัดอัตราการเต้นของหัวใจของผู้ป่วย 28443 เมื่อวันที่ 25/12/2105 คือเมื่อใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | when was the last time that heart rate was measured for patient 28443 on 12/25/2105?It is not neccessary to use all the tables. | inputevents_cv: row_id [ number] subject_id [ number] hadm_id [ number] icustay_id [ number] charttime [ time] itemid [ number] amount [ number] | SELECT chartevents.charttime FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 28443)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'heart rate' AND d_items.linksto = 'chartevents') AND STRFTIME('%y-%m-%d', chartevents.charttime) = '2105-12-25' ORDER BY chartevents.charttime DESC LIMIT 1 | null | general |
นานแค่ไหนแล้วนับตั้งแต่ผู้ป่วย 016-22566 ได้รับยา ipratropium-albuterol ครั้งล่าสุดในการเข้ารับการรักษาในโรงพยาบาลในปัจจุบัน?ไม่จำเป็นต้องใช้ตารางทั้งหมด | how many hours is it since patient 016-22566's last ipratropium-albuterol prescription on their current hospital encounter?It is not neccessary to use all the tables. | diagnosis: diagnosisid [ number] patientunitstayid [ number] diagnosisname [ text] diagnosistime [ time] icd9code [ text] | SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', medication.drugstarttime)) FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '016-22566') AND patient.hospitaldischargetime IS NULL) AND medication.drugname = 'ipratropium-albuterol' ORDER BY medication.drugstarttime DESC LIMIT 1 | null | general |
ใครคือหุ้นส่วนในการแข่งขัน United Airlines Tournament (1)?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Who was the Partner in the United Airlines Tournament (1)?It is not neccessary to use all the tables. | table_34647: "Date" [ text] "Location" [ text] "Partner" [ text] | SELECT "Partner" FROM table_34647 WHERE "Tournament Name" = 'united airlines tournament (1)' | null | general |
แสดงรายการจำนวนรายการตามรายละเอียดขององค์กรที่เป็นเจ้าของโดยใช้แผนภูมิแท่ง เรียงลำดับจำนวนทั้งหมดจากมากไปน้อย ไม่จำเป็นต้องใช้ตารางทั้งหมด | List the number of items by the details of the organization that owns it using a bar chart, order total number in descending order.It is not neccessary to use all the tables. | Residents: resident_id [ INTEGER] property_id [ INTEGER] date_moved_in [ DATETIME] date_moved_out [ DATETIME] other_details [ VARCHAR(255)] | SELECT organization_details, COUNT(organization_details) FROM Things AS T1 JOIN Organizations AS T2 ON T1.organization_id = T2.organization_id GROUP BY organization_details ORDER BY COUNT(organization_details) DESC | null | general |
ตั้งชื่อชื่อซิริลลิกสำหรับ 518ไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the cyrillic name for 518It is not neccessary to use all the tables. | table_27869: "Settlement" [ text] "Type" [ text] | SELECT "Cyrillic Name Other Names" FROM table_27869 WHERE "Population (2011)" = '518' | null | general |
ชาวสปาร์ตันทำคะแนนได้ 73 คะแนนกับใคร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Against whom did the Spartans score 73 points?It is not neccessary to use all the tables. | table_22860990_3: opponent [ VARCHAR] spartans_points [ VARCHAR] | SELECT opponent FROM table_22860990_3 WHERE spartans_points = 73 | null | general |
เมืองอะไรที่มีหมายเลข 47?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the city where the number is 47?It is not neccessary to use all the tables. | table_72149: "No" [ text] "Population" [ text] | SELECT "City district (Stadtteil)" FROM table_72149 WHERE "No" = '47' | null | general |
คู่ต่อสู้คนไหนมีสถิติ 3 1 ไม่จำเป็นต้องใช้ทุกโต๊ะ | Which opponent has a record of 3 1?It is not neccessary to use all the tables. | table_12308: "Res." [ text] "Record" [ text] "Opponent" [ text] "Method" [ text] "Event" [ text] "Round" [ real] "Time" [ text] "Location" [ text] | SELECT "Opponent" FROM table_12308 WHERE "Record" = '3–1' | null | general |
การยืนกระโดดกว้าง (ซม.) ใดที่ได้เกรด b?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Which standing broad jump (cm) had the b grade?It is not neccessary to use all the tables. | table_name_67: standing_broad_jump__cm_ [ VARCHAR] grade [ VARCHAR] | SELECT standing_broad_jump__cm_ FROM table_name_67 WHERE grade = "b" | null | general |
เคนดัลล์ กิลล์ มีบล็อกมากที่สุดจำนวนเท่าใด? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the most number of blocks kendall gill had?It is not neccessary to use all the tables. | table_22824324_2: blocks [ INTEGER] player [ VARCHAR] | SELECT MAX(blocks) FROM table_22824324_2 WHERE player = "Kendall Gill" | null | general |
เสมอกันต่ำสุดที่น้อยกว่า 100 แต้ม 277 ประตูคืออะไร?ไม่จำเป็นต้องใช้ทุกตาราง | What is the lowest tie with less than 100 points and 277 goals?It is not neccessary to use all the tables. | table_56721: "Season" [ text] "Games" [ real] "Lost" [ real] "Tied" [ real] "Points" [ real] "Standing" [ text] | SELECT MIN("Tied") FROM table_56721 WHERE "Points" < '100' AND "Goals for" = '277' | null | general |
ผู้ฝึกม้าอันดับหนึ่งชื่ออะไร ?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | what is the name of the trainer of the first place horse ?It is not neccessary to use all the tables. | table_204_13: id [ number] "finished" [ text] "post" [ number] "horse" [ text] "jockey" [ text] "trainer" [ text] "owner" [ text] | SELECT "trainer" FROM table_204_13 WHERE "finished" = 1 | null | general |
แสดงจำนวนผู้ร่วมประชุมในแต่ละฝ่ายด้วยแผนภูมิแท่ง ไม่จำเป็นต้องใช้ตารางทั้งหมด | Show how many delegates in each party with a bar chart.It is not neccessary to use all the tables. | county: County_Id [ int] County_name [ text] Population [ real] Zip_code [ text] | SELECT T2.Party, COUNT(T2.Party) FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID GROUP BY T2.Party | null | general |
มีผู้ป่วยที่สถานะเสียชีวิตเป็น 0 และปีเกิดน้อยกว่า 2167 มีกี่ราย ไม่จำเป็นต้องใช้ตารางทั้งหมด | how many patients whose death status is 0 and year of birth is less than 2167?It is not neccessary to use all the tables. | procedures: subject_id [ text] hadm_id [ text] icd9_code [ text] short_title [ text] long_title [ text] | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.expire_flag = "0" AND demographic.dob_year < "2167" | null | general |
ใครคือผู้สร้างสำหรับคนขับ Piercarlo Ghinzani และเครื่องยนต์ Ford cosworth dfv 3.0 v8?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Who is the Constructor for driver Piercarlo Ghinzani and a Ford cosworth dfv 3.0 v8 engine?It is not neccessary to use all the tables. | table_name_42: constructor [ VARCHAR] driver [ VARCHAR] engine [ VARCHAR] | SELECT constructor FROM table_name_42 WHERE driver = "piercarlo ghinzani" AND engine = "ford cosworth dfv 3.0 v8" | null | general |
ชื่อประเทศที่มีรหัสตัวเลขน้อยกว่า 246 และรหัส slv ละติน 3 ตัวอักษรคืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the country's name with a numeric code less than 246 and a Latin 3-letter code of slv?It is not neccessary to use all the tables. | table_name_63: country_name [ VARCHAR] numeric_code [ VARCHAR] latin_3_letter_code [ VARCHAR] | SELECT country_name FROM table_name_63 WHERE numeric_code < 246 AND latin_3_letter_code = "slv" | null | general |
ผู้เล่นคนไหนที่มี 0 ประตู, 1 ครั้ง, 4 แต้ม และเล่นในตำแหน่ง Prop? ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which player has 0 goals, 1 tries, 4 points, and plays in the Prop position?It is not neccessary to use all the tables. | table_name_19: player [ VARCHAR] position [ VARCHAR] points [ VARCHAR] goals [ VARCHAR] tries [ VARCHAR] | SELECT player FROM table_name_19 WHERE goals = 0 AND tries = 1 AND points = 4 AND position = "prop" | null | general |
วิทยาเขตที่มีคณะมากกว่าจำนวนสูงสุดในออเรนจ์เคาน์ตี้ในปี 2545 ชื่ออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What are the names of the campus that have more faculties in 2002 than the maximum number in Orange county?It is not neccessary to use all the tables. | csu_fees: campus [ number] year [ number] campusfee [ number] | SELECT T1.campus FROM campuses AS T1 JOIN faculty AS T2 ON T1.id = T2.campus WHERE T2.year = 2002 AND faculty > (SELECT MAX(faculty) FROM campuses AS T1 JOIN faculty AS T2 ON T1.id = T2.campus WHERE T2.year = 2002 AND T1.county = "Orange") | null | general |
Craig Zimmer เข้าเรียนที่วิทยาลัยใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What college did Craig Zimmer go to?It is not neccessary to use all the tables. | table_10975034_5: college [ VARCHAR] player [ VARCHAR] | SELECT college FROM table_10975034_5 WHERE player = "Craig Zimmer" | null | general |
ผู้เล่นในทีมวิทยาลัย/รุ่นน้อง/สโมสรใดที่เล่นให้กับทีม Buffalo Sabers ใน NHL?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Which college/junior/club team did the player play on that played for the Buffalo Sabres in NHL?It is not neccessary to use all the tables. | table_19545: "Player" [ text] "Position" [ text] "Nationality" [ text] | SELECT "College/junior/club team" FROM table_19545 WHERE "NHL team" = 'Buffalo Sabres' | null | general |
วันที่เข้าสู่ระบบล่าสุดของนักเรียนที่มีชื่อสกุล 'Jaskolski' หรือ 'Langosh' คือวันที่เท่าใด และแสดงตามลำดับจากมากไปน้อยโดย Y.ไม่จำเป็นต้องใช้ตารางทั้งหมด | What are the number of the dates of the latest logon of the students with family name 'Jaskolski' or 'Langosh'?, and show in descending by the Y.It is not neccessary to use all the tables. | Student_Tests_Taken: registration_id [ INTEGER] date_test_taken [ DATETIME] test_result [ VARCHAR(255)] | SELECT date_of_latest_logon, COUNT(date_of_latest_logon) FROM Students WHERE family_name = "Jaskolski" OR family_name = "Langosh" ORDER BY COUNT(date_of_latest_logon) DESC | null | general |
ผู้กำกับคนไหนมีภาพยนตร์ในปี 1999 หรือ 2000 และนับด้วยกราฟแท่ง ผมอยากเรียงลำดับ Y จากต่ำไปสูง ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which directors had a movie in either 1999 or 2000, and count them by a bar chart, I want to order Y from low to high order.It is not neccessary to use all the tables. | movie: movie_id [ int] Title [ text] Year [ int] Director [ text] Budget_million [ real] Gross_worldwide [ int] | SELECT Director, COUNT(Director) FROM movie WHERE Year = 1999 OR Year = 2000 GROUP BY Director ORDER BY COUNT(Director) | null | general |
การวินิจฉัยชื่อสั้นและการวินิจฉัยชื่อยาวของการวินิจฉัยรหัส icd9 42823 คืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | what is diagnoses short title and diagnoses long title of diagnoses icd9 code 42823?It is not neccessary to use all the tables. | lab: subject_id [ text] hadm_id [ text] itemid [ text] charttime [ text] flag [ text] value_unit [ text] label [ text] fluid [ text] | SELECT diagnoses.short_title, diagnoses.long_title FROM diagnoses WHERE diagnoses.icd9_code = "42823" | null | general |
ผู้ใช้ 1,000 อันดับแรก (อย่างน้อย 25 คำตอบ) ขึ้นอยู่กับคะแนนต่อคำตอบ ไม่จำเป็นต้องใช้ตารางทั้งหมด | Top 1000 users (with at least 25 answers) based on score per answer.It is not neccessary to use all the tables. | SuggestedEditVotes: Id [ number] SuggestedEditId [ number] UserId [ number] VoteTypeId [ number] CreationDate [ time] TargetUserId [ number] TargetRepChange [ number] | SELECT Posts.OwnerUserId AS "user_link", SUM(Posts.Score) AS Total_Score, COUNT(*) AS Answer_Number, ROUND((1.0 * SUM(Posts.Score) / COUNT(*)), 3) AS Mean_Score FROM Posts WHERE Posts.PostTypeId = 2 AND Posts.Score > 1 GROUP BY OwnerUserId HAVING COUNT(*) > 25 ORDER BY Mean_Score DESC LIMIT 1000 | null | general |
มีประวัติการทดสอบทางจุลชีววิทยาของผู้ป่วย 10539 ถึง 2103 หรือไม่ ไม่จำเป็นต้องใช้ตารางทั้งหมด | have there been any microbiological test history for patient 10539 until 2103?It is not neccessary to use all the tables. | d_icd_procedures: row_id [ number] icd9_code [ text] short_title [ text] long_title [ text] | SELECT COUNT(*) > 0 FROM microbiologyevents WHERE microbiologyevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 10539) AND STRFTIME('%y', microbiologyevents.charttime) <= '2103' | null | general |
ผู้เล่นจาก Dartmouth Ohio State อยู่ในตำแหน่งใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the position of the player from Dartmouth Ohio State?It is not neccessary to use all the tables. | table_38921: "Position" [ text] "Name" [ text] "School" [ text] "Unanimous" [ text] | SELECT "Position" FROM table_38921 WHERE "School" = 'dartmouth ohio state' | null | general |
วันที่ระบุของสะพานที่สร้างขึ้นในปี 1864 คือวันที่ใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the date Listed of the Bridge Built in 1864?It is not neccessary to use all the tables. | table_name_79: listed [ VARCHAR] built [ VARCHAR] | SELECT listed FROM table_name_79 WHERE built = "1864" | null | general |
คณาจารย์แต่ละระดับมีนักศึกษากี่คน? แสดงรายการอันดับและจำนวนนักเรียน และจัดอันดับตาม Y ตามลำดับ ไม่จำเป็นต้องใช้ตารางทั้งหมด | how many students are advised by each rank of faculty? List the rank and the number of students, and rank by the Y in ascending.It is not neccessary to use all the tables. | Participates_in: stuid [ INTEGER] actid [ INTEGER] | SELECT Rank, COUNT(*) FROM Faculty AS T1 JOIN Student AS T2 ON T1.FacID = T2.Advisor GROUP BY T1.Rank ORDER BY COUNT(*) | null | general |
ตั้งชื่อผลรวมของตารางที่มีรอบมากกว่า 97 ไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the sum of grid with laps more than 97It is not neccessary to use all the tables. | table_38668: "Driver" [ text] "Team" [ text] "Laps" [ real] "Time/Retired" [ text] "Grid" [ real] "Points" [ real] | SELECT SUM("Grid") FROM table_38668 WHERE "Laps" > '97' | null | general |
แสดงเที่ยวบินที่เดินทางจากบอสตันไปเดนเวอร์ที่มาถึงเช้าวันพุธ ไม่จำเป็นต้องใช้ตารางทั้งหมด | show me flights going from BOSTON to DENVER arriving on wednesday morningIt is not neccessary to use all the tables. | fare_basis: fare_basis_code [ text] booking_class [ text] class_type [ text] premium [ text] economy [ text] discounted [ text] night [ text] season [ text] basis_days [ text] | 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, date_day, days, flight WHERE (((((flight.arrival_time < flight.departure_time) AND date_day.day_number = 23 AND date_day.month_number = 4 AND date_day.year = 1991 AND days.day_name = date_day.day_name AND flight.flight_days = days.days_code) OR (date_day.day_number = 23 AND date_day.month_number = 4 AND date_day.year = 1991 AND days.day_name = date_day.day_name AND flight.flight_days = days.days_code AND NOT (flight.arrival_time < flight.departure_time))) AND (flight.arrival_time <= 1200 AND flight.arrival_time >= 0)) AND 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 CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'BOSTON' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code | null | general |
มีผู้ป่วยที่ยังมีชีวิตอยู่กี่รายที่ได้รับยาออกซาโซลิดิโนนโดยการฉีด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many alive patients were administered oxazolidinone via injection?It is not neccessary to use all the tables. | lab: subject_id [ text] hadm_id [ text] itemid [ text] charttime [ text] flag [ text] value_unit [ text] label [ text] fluid [ text] | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.expire_flag = "0" AND procedures.short_title = "Injection oxazolidinone" | null | general |
การเล่นโดยเฉลี่ยใดที่มีแต้มต่อน้อยกว่า 15? ไม่จำเป็นที่จะต้องใช้โต๊ะทั้งหมด | What average played has an against less than 15?It is not neccessary to use all the tables. | table_42931: "Position" [ real] "Team" [ text] "Points" [ real] "Played" [ real] "Drawn" [ real] "Lost" [ real] "Against" [ real] "Difference" [ text] | SELECT AVG("Played") FROM table_42931 WHERE "Against" < '15' | null | general |
ตัวอย่างการทดสอบห้ารายการที่พบบ่อยที่สุดที่ผู้ป่วยทำภายใน 2 เดือนหลังจากได้รับการวินิจฉัยว่าหายใจไม่ออก/บีบรัดในปีที่แล้วคืออะไร? ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | what are the five most frequent specimen tests that patients took within 2 months after being diagnosed with asphyxiation/strangulat the last year?It is not neccessary to use all the tables. | microbiologyevents: row_id [ number] subject_id [ number] hadm_id [ number] charttime [ time] spec_type_desc [ text] org_name [ text] | SELECT t3.spec_type_desc FROM (SELECT t2.spec_type_desc, 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 = 'asphyxiation/strangulat') AND DATETIME(diagnoses_icd.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year')) AS t1 JOIN (SELECT admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime FROM microbiologyevents JOIN admissions ON microbiologyevents.hadm_id = admissions.hadm_id WHERE DATETIME(microbiologyevents.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(t2.charttime) BETWEEN DATETIME(t1.charttime) AND DATETIME(t1.charttime, '+2 month') GROUP BY t2.spec_type_desc) AS t3 WHERE t3.c1 <= 5 | null | general |
ใช่หรือไม่ใช่สำหรับเมลเบิร์นที่ไม่มีสำหรับแอดิเลด ไม่มีสำหรับโกลด์โคสต์? ไม่จำเป็นต้องใช้ตารางทั้งหมด | yes or no for the melbourne that has no for adelaide, no for gold coast?It is not neccessary to use all the tables. | table_67838: "Sydney" [ text] "Melbourne" [ text] "Perth" [ text] "Adelaide" [ text] "Auckland" [ text] | SELECT "Melbourne" FROM table_67838 WHERE "Adelaide" = 'yes' AND "Gold Coast" = 'no' | null | general |
ภาพถ่ายประวัติศาสตร์ใดที่ถ่ายที่โอกาสที่ 43 ถนนโอกาส?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which Historical Photos were taken at prospect 43 prospect ave?It is not neccessary to use all the tables. | table_38398: "Name" [ text] "Location" [ text] "Sign-in/Bicker" [ text] | SELECT "Historical Photos" FROM table_38398 WHERE "Location" = 'prospect 43 prospect ave' | null | general |
ใครคือคลาส AAAA เมื่อคลาส AAAAA คือ Weslaco ในปี 1994-95 ไม่จำเป็นต้องใช้ตารางทั้งหมด | Who was the class AAAA when class AAAAA was Weslaco in 1994-95It is not neccessary to use all the tables. | table_19562: | SELECT "Class AAAA" FROM table_19562 WHERE "Class AAAAA" = 'Weslaco' AND "School Year" = '1994-95' | null | general |
ขั้นตอนใดที่มีทีมปิโตรเคมีทาบริซในการจัดประเภททีม?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which stage had tabriz petrochemical team in the team classification?It is not neccessary to use all the tables. | table_name_68: stage [ VARCHAR] team_classification [ VARCHAR] | SELECT stage FROM table_name_68 WHERE team_classification = "tabriz petrochemical team" | null | general |
ความคิดเห็นในโพสต์ของฉันที่มีวลีที่กำหนด (ไม่คำนึงถึงตัวพิมพ์เล็กและตัวพิมพ์ใหญ่) ไม่จำเป็นต้องใช้ตารางทั้งหมด | Comments on my posts containing the given phrase (case insensitive).It is not neccessary to use all the tables. | ReviewRejectionReasons: Id [ number] Name [ text] Description [ text] PostTypeId [ number] | SELECT c.Id AS "comment_link", c.Text, c.UserId AS "user_link", c.CreationDate FROM Comments AS c INNER JOIN Posts AS p ON c.PostId = p.Id WHERE (p.OwnerUserId = '##UserId?122424##') AND (c.Text LIKE '%##WordA?possible##%' COLLATE Latin1_General_CI_AI) AND (c.Text LIKE '%##WordB?has##%' COLLATE Latin1_General_CI_AI) | null | general |
กิจกรรมใดมีเงินรางวัล 248,004 ดอลลาร์?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What event has a $248,004 prize?It is not neccessary to use all the tables. | table_name_24: event [ VARCHAR] prize [ VARCHAR] | SELECT event FROM table_name_24 WHERE prize = "$248,004" | null | general |
คำนวณจำนวนเอาต์พุตของ jackson pratt #1 สำหรับผู้ป่วย 1902 ในวันที่ 30/12/ปีนี้ ไม่จำเป็นต้องใช้ตารางทั้งหมด | calculate the total amount of jackson pratt #1 output for patient 1902 on 12/30/this year.It is not neccessary to use all the tables. | d_icd_procedures: row_id [ number] icd9_code [ text] short_title [ text] long_title [ text] | SELECT SUM(outputevents.value) 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 = 1902)) AND outputevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'jackson pratt #1' AND d_items.linksto = 'outputevents') AND DATETIME(outputevents.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-0 year') AND STRFTIME('%m-%d', outputevents.charttime) = '12-30' | null | general |
การจัดประเภท Intergiro คืออะไร เมื่อการจัดประเภทคะแนนคือ Paolo Bettini, Trofeo Super Team คือ Davitamon-Lotto และการจัดประเภท Mountains คือ Jos Rujano? ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | What is the Intergiro classification when the points classification is Paolo Bettini, Trofeo Super Team is Davitamon-Lotto, and the Mountains classification is Jos Rujano?It is not neccessary to use all the tables. | table_name_16: intergiro_classification [ VARCHAR] mountains_classification [ VARCHAR] points_classification [ VARCHAR] trofeo_super_team [ VARCHAR] | SELECT intergiro_classification FROM table_name_16 WHERE points_classification = "paolo bettini" AND trofeo_super_team = "davitamon-lotto" AND mountains_classification = "josé rujano" | null | general |