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 |
|---|---|---|---|---|---|
ผลลัพธ์ในปี 2551 เป็นอย่างไร โดยปี 2552 เป็น 0 และ ATP Tournaments Won คือทัวร์นาเมนต์?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What are the results in 2008 when 2009 is 0, and the ATP Tournaments Won is the tournament?It is not neccessary to use all the tables. | table_name_36: tournament [ VARCHAR] | SELECT 2008 FROM table_name_36 WHERE 2009 = "0" AND tournament = "atp tournaments won" | null | general |
ใครเป็นผู้แอสซิสต์สูงเมื่อคู่ต่อสู้คืออินเดียนา?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Who had the high assists when the opponent was Indiana?It is not neccessary to use all the tables. | table_27882867_9: high_assists [ VARCHAR] team [ VARCHAR] | SELECT high_assists FROM table_27882867_9 WHERE team = "Indiana" | null | general |
ประเทศใดมีผู้เล่นที่ได้รับการจัดอันดับความน่าเชื่อถือมากที่สุดรองจากเยอรมนี ?ไม่จำเป็นต้องใช้ตารางทั้งหมด | which country has the most fide rated players after germany ?It is not neccessary to use all the tables. | table_203_663: id [ number] "country" [ text] "zone" [ text] "#gm" [ number] "#fide" [ number] | SELECT "country" FROM table_203_663 WHERE "country" <> 'germany' ORDER BY "#fide" DESC LIMIT 1 | null | general |
มีแอปตำรวจกี่แอปในฤดูกาลที่มีแอปลีกน้อยกว่า 12 แอป ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many cop apps in the season with fewer than 12 league apps?It is not neccessary to use all the tables. | table_32374: "Season" [ text] "Team" [ text] | SELECT SUM("Cup Apps") FROM table_32374 WHERE "League Apps" < '12' | null | general |
ฉันต้องการหาค่าโดยสารเที่ยวเดียวที่ถูกที่สุดจากบอสตันไปโอ๊คแลนด์ไม่จำเป็นต้องใช้ตารางทั้งหมด | i would like to find the cheapest one way fare from BOSTON to OAKLANDIt is not neccessary to use all the tables. | code_description: code [ varchar] description [ text] | SELECT DISTINCT fare.fare_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, fare, flight, flight_fare 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_... | null | general |
จำนวนผู้ป่วยอินพุตทั้งหมด 027-22704 ได้รับจนถึง 1,091 วันที่ผ่านมาเป็นเท่าใด ไม่จำเป็นต้องใช้ตารางทั้งหมด | what is the total number of input patient 027-22704 has received until 1091 days ago?It is not neccessary to use all the tables. | treatment: treatmentid [ number] patientunitstayid [ number] treatmentname [ text] treatmenttime [ time] | SELECT SUM(intakeoutput.cellvaluenumeric) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '027-22704')) AND intakeoutput.cellpath LIKE '%in... | null | general |
มีผู้ป่วยกี่คนที่เข้ารับการรักษาอย่างเร่งด่วนและผ่านการทดสอบสำหรับรายการห้องปฏิบัติการ id 50805?ไม่จำเป็นต้องใช้ตารางทั้งหมด | how many patients are admitted urgently and tested for lab item id 50805?It is not neccessary to use all the tables. | demographic: subject_id [ text] hadm_id [ text] name [ text] marital_status [ text] age [ text] dob [ text] gender [ text] language [ text] religion [ text] admission_type [ text] days_stay [ text] insurance [ text] ethnicity [ text] expire_flag [ text] admission_location [ text] discharge_location [ t... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admission_type = "URGENT" AND lab.itemid = "50805" | null | general |
ผู้จัดการทีม Atl tico Baleares ชื่ออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the name of the manager of the Atl tico Baleares?It is not neccessary to use all the tables. | table_64956: "Player" [ text] "Born" [ text] "Debut" [ text] "Manager" [ text] | SELECT "Manager" FROM table_64956 WHERE "Current Club" = 'atlético baleares' | null | general |
ZX Spectrum ใดที่มีหนึ่งปีมากกว่าปี 1984 และมีประเภทของอาร์เคด/กลยุทธ์?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which ZX Spectrum has a Year larger than 1984, and a Genre of arcade/strategy?It is not neccessary to use all the tables. | table_36826: "Title" [ text] "Genre" [ text] "C=64" [ text] "Others" [ text] "Year" [ real] "Format" [ text] | SELECT "ZX Spectrum" FROM table_36826 WHERE "Year" > '1984' AND "Genre" = 'arcade/strategy' | null | general |
มีผู้ป่วยหญิงกี่รายที่มีรายการทดสอบในห้องปฏิบัติการ id 50836?ไม่จำเป็นต้องใช้ตารางทั้งหมด | how many female patients had lab test item id 50836?It is not neccessary to use all the tables. | prescriptions: subject_id [ text] hadm_id [ text] icustay_id [ text] drug_type [ text] drug [ text] formulary_drug_cd [ text] route [ text] drug_dose [ text] | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.gender = "F" AND lab.itemid = "50836" | null | general |
มีรหัสจักรยานที่แตกต่างกันกี่รหัส?ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many different bike ids are there?It is not neccessary to use all the tables. | weather: date [ text] max_temperature_f [ number] mean_temperature_f [ number] min_temperature_f [ number] max_dew_point_f [ number] mean_dew_point_f [ number] min_dew_point_f [ number] max_humidity [ number] mean_humidity [ number] min_humidity [ number] max_sea_level_pressure_inches [ number] mean_sea_le... | SELECT COUNT(DISTINCT bike_id) FROM trip | null | general |
Elaine Powell (g) จากประเทศสหรัฐอเมริกาถูกเลือกเมื่อใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | When was Elaine Powell (g) of the United states picked?It is not neccessary to use all the tables. | table_43656: "Pick" [ real] "Player" [ text] "Nationality" [ text] "College/Country/Team" [ text] | SELECT "Pick" FROM table_43656 WHERE "Nationality" = 'united states' AND "Player" = 'elaine powell (g)' | null | general |
ผลลัพธ์ของสัปดาห์ที่มากกว่า 3 ในวันที่ 1971-11-07 คืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the Result of Week larger than 3 on 1971-11-07?It is not neccessary to use all the tables. | table_name_94: result [ VARCHAR] week [ VARCHAR] date [ VARCHAR] | SELECT result FROM table_name_94 WHERE week > 3 AND date = "1971-11-07" | null | general |
ภูมิประเทศประเภทใดที่ถูกระบุมากที่สุด ?ไม่จำเป็นต้องใช้ตารางทั้งหมด | which type of terrain is listed the most ?It is not neccessary to use all the tables. | table_204_312: id [ number] "stage" [ text] "date" [ text] "route" [ text] "terrain" [ text] "length" [ text] "winner" [ text] | SELECT "terrain" FROM table_204_312 GROUP BY "terrain" ORDER BY COUNT(*) DESC LIMIT 1 | null | general |
ตั้งชื่อผลรวมของชุดว่ายน้ำเมื่อชุดราตรีน้อยกว่า 6.983 และค่าเฉลี่ยน้อยกว่า 7.362 ไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the sum of swimsuit when the evening gown is less than 6.983 and the average is less than 7.362It is not neccessary to use all the tables. | table_name_67: swimsuit [ INTEGER] average [ VARCHAR] evening_gown [ VARCHAR] | SELECT SUM(swimsuit) FROM table_name_67 WHERE average < 7.362 AND evening_gown < 6.983 | null | general |
ค่าเฉลี่ยของการเลือกผู้เล่น จิม เอช. มิทเชล?มันไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | What is the average pick of player jim h. mitchell?It is not neccessary to use all the tables. | table_79476: "Round" [ real] "Pick" [ real] "Player" [ text] "Position" [ text] "Team" [ text] | SELECT AVG("Pick") FROM table_79476 WHERE "Player" = 'jim h. mitchell' | null | general |
เสมอสองทาง (8) เด้งสูงวันไหน?ไม่จำเป็นต้องใช้ตารางทั้งหมด | On what date was a two-way tie (8) the high rebound?It is not neccessary to use all the tables. | table_name_3: date [ VARCHAR] high_rebounds [ VARCHAR] | SELECT date FROM table_name_3 WHERE high_rebounds = "two-way tie (8)" | null | general |
Bulykin ประเภทใดซึ่งมีหน้าต่างถ่ายโอนช่วงฤดูร้อนคืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the type of bulykin, which has a summer transfer window?It is not neccessary to use all the tables. | table_name_79: type [ VARCHAR] transfer_window [ VARCHAR] name [ VARCHAR] | SELECT type FROM table_name_79 WHERE transfer_window = "summer" AND name = "bulykin" | null | general |
ในบรรดาการเรียกร้องทั้งหมด การชำระหนี้ข้อใดมีจำนวนเงินที่เรียกร้องไม่เกินค่าเฉลี่ย? แสดงรายการวันที่เริ่มต้นการเรียกร้อง และนับตามแผนภูมิแท่ง ไม่จำเป็นต้องใช้ตารางทั้งหมด | Among all the claims, which settlements have a claimed amount that is no more than the average? List the claim start date, and count them by a bar chartIt is not neccessary to use all the tables. | Claims: Claim_ID [ INTEGER] Policy_ID [ INTEGER] Date_Claim_Made [ DATE] Date_Claim_Settled [ DATE] Amount_Claimed [ INTEGER] Amount_Settled [ INTEGER] | SELECT Date_Claim_Made, COUNT(Date_Claim_Made) FROM Claims WHERE Amount_Settled <= (SELECT AVG(Amount_Settled) FROM Claims) | null | general |
ทัวร์นาเมนต์ใดในปี 2009 ที่เป็นเฟรนช์โอเพ่น?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which 2009 tournament was french open?It is not neccessary to use all the tables. | table_54433: "Tournament" [ text] "2009" [ text] "2010" [ text] "2011" [ text] "2012" [ text] "2013" [ text] | SELECT "2009" FROM table_54433 WHERE "Tournament" = 'french open' | null | general |
ทีมคืออะไรในวันที่ 20 มกราคม?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the Team on January 20?It is not neccessary to use all the tables. | table_76278: "Game" [ real] "Date" [ text] "Team" [ text] "Score" [ text] "Record" [ text] "Streak" [ text] | SELECT "Team" FROM table_76278 WHERE "Date" = 'january 20' | null | general |
บอกจำนวนผลต่างประตูรวมสำหรับประตูที่ทำได้ 30 ประตูและเล่นน้อยกว่า 18 ประตู ไม่จำเป็นต้องใช้ตารางทั้งหมด | Tell me the totla number of goal difference for goals against of 30 and played less than 18It is not neccessary to use all the tables. | table_name_4: goal_difference [ VARCHAR] goals_against [ VARCHAR] played [ VARCHAR] | SELECT COUNT(goal_difference) FROM table_name_4 WHERE goals_against = 30 AND played < 18 | null | general |
ใครเคยเป็นส่วนหนึ่งของ Club Munster ด้วยการลอง 1 ครั้ง?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Who was part of Club Munster with 1 try?It is not neccessary to use all the tables. | table_12051: "Points" [ real] "Name" [ text] "Club" [ text] "Apps" [ real] "Tries" [ real] "Drop" [ real] | SELECT "Name" FROM table_12051 WHERE "Tries" = '1' AND "Club" = 'munster' | null | general |
จำนวนเหตุการณ์โดยเฉลี่ยคือเท่าใดเมื่อ 5 อันดับแรกน้อยกว่า 1 และ 25 อันดับแรกมากกว่า 1 ไม่จำเป็นต้องใช้ตารางทั้งหมด | what is the average number of events when the top-5 is less than 1 and top 25 more than 1It is not neccessary to use all the tables. | table_15832: "Tournament" [ text] "Wins" [ real] "Top-5" [ real] "Top-25" [ real] "Events" [ real] | SELECT AVG("Events") FROM table_15832 WHERE "Top-5" < '1' AND "Top-25" > '1' | null | general |
.ไม่จำเป็นต้องใช้ทุกตาราง | .It is not neccessary to use all the tables. | PostTypes: Id [ number] Name [ text] | WITH GitHubUsers AS (SELECT u.Id, COUNT(a.Id) AS answersCount, SUM(a.Score) AS answersScore FROM Users AS u LEFT JOIN Posts AS a ON a.PostTypeId = 2 AND a.OwnerUserId = u.Id WHERE u.WebsiteUrl LIKE '%github%' GROUP BY u.Id) SELECT u.Id, u.WebsiteUrl, u.UpVotes, u.Reputation, u.AboutMe, g.answersCount, g.answersScore FR... | null | general |
เบาหวานที่ควบคุมไม่ได้หรือระดับน้ำตาลในเลือด > 180 mg/dl ในวันที่ทำ fdg _pet scan ไม่จำเป็นต้องใช้ตารางทั้งหมด | uncontrolled diabetes or blood glucose > 180 mg / dl on the day of the fdg _ pet scanIt is not neccessary to use all the tables. | table_train_106: "id" [ int] "gender" [ string] "pregnancy_or_lactation" [ bool] "mini_mental_state_examination_mmse" [ int] "uncontrolled_diabetes" [ bool] "blood_glucose" [ int] "rosen_modified_hachinski_ischemic_score" [ int] "body_mass_index_bmi" [ float] "age" [ float] "NOUSE" [ float] | SELECT * FROM table_train_106 WHERE uncontrolled_diabetes = 1 OR blood_glucose > 180 | null | general |
มีผู้ป่วยหญิงกี่คนที่ได้รับการรักษาด้วยทาโครลิมัส?ไม่จำเป็นต้องใช้ตารางทั้งหมด | how many female patients were treated with tacrolimus?It is not neccessary to use all the tables. | prescriptions: subject_id [ text] hadm_id [ text] icustay_id [ text] drug_type [ text] drug [ text] formulary_drug_cd [ text] route [ text] drug_dose [ text] | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.gender = "F" AND prescriptions.drug = "Tacrolimus" | null | general |
แสดงแผนภูมิแท่งสำหรับเงินเดือนต่ำสุดในแผนกต่างๆ โดยมีเงินเดือนเฉลี่ยมากกว่าค่าเฉลี่ยโดยรวม ไม่จำเป็นต้องใช้ตารางทั้งหมด | Display a bar chart for what is the lowest salary in departments with average salary greater than the overall average.It is not neccessary to use all the tables. | instructor: ID [ varchar(5)] name [ varchar(20)] dept_name [ varchar(20)] salary [ numeric(82)] | SELECT dept_name, MIN(salary) FROM instructor GROUP BY dept_name | null | general |
วันที่จัดการแข่งขันมีผู้เข้าร่วม 16,404 คน?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | What was the date of the game with 16,404 people?It is not neccessary to use all the tables. | table_name_18: date [ VARCHAR] attendance [ VARCHAR] | SELECT date FROM table_name_18 WHERE attendance = "16,404" | null | general |
แสดงความสัมพันธ์ระหว่าง ID และ meter_100 ในแผนภูมิกระจาย ไม่จำเป็นต้องใช้ตารางทั้งหมด | Show me about the correlation between ID and meter_100 in a scatter chart.It is not neccessary to use all the tables. | swimmer: ID [ int] name [ text] Nationality [ text] meter_100 [ real] meter_200 [ text] meter_300 [ text] meter_400 [ text] meter_500 [ text] meter_600 [ text] meter_700 [ text] Time [ text] | SELECT ID, meter_100 FROM swimmer | null | general |
วันที่เป้าหมายอย่างเป็นทางการสำหรับโครนาสวีเดนคือเมื่อใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the official target date for the Swedish Krona?It is not neccessary to use all the tables. | table_name_34: official_target_date [ VARCHAR] currency [ VARCHAR] | SELECT official_target_date FROM table_name_34 WHERE currency = "swedish krona" | null | general |
เกมใดที่มีผู้เข้าร่วมน้อยกว่า 18,277 คนและมีคะแนน 64 คะแนน ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which Game has an Attendance smaller than 18,277, and Points of 64?It is not neccessary to use all the tables. | table_48714: "Game" [ real] "Date" [ text] "Opponent" [ text] "Score" [ text] "Location" [ text] "Attendance" [ real] "Record" [ text] "Points" [ real] | SELECT MAX("Game") FROM table_48714 WHERE "Attendance" < '18,277' AND "Points" = '64' | null | general |
ฉันต้องการเที่ยวบินจากนิวยอร์กไปมอนทรีออล วันพฤหัสบดีที่ 5 24 กันยายน ถึงก่อน 12.00 น. ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | i need a flight from NEW YORK to MONTREAL THURSDAY 5 24 arriving before 1200It 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 AS DAYS_0, days AS DAYS_1, flight WHERE (((DAYS_1.day_name = 'THURSDAY' AND flight.arrival_time <= 1200 AND flight.flight_days = DAYS_1.days_code) AND date_day... | null | general |
เธออยู่อันดับที่ 16 ในปีใดด้วยคะแนนมากกว่า 12 คะแนน?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What year was she ranked 16th with over 12 points?It is not neccessary to use all the tables. | table_36496: "Year" [ real] "Class" [ text] "Team" [ text] "Points" [ real] "Rank" [ text] "Wins" [ real] | SELECT COUNT("Year") FROM table_36496 WHERE "Rank" = '16th' AND "Points" > '12' | null | general |
ค้นหาวันที่ในใบแจ้งหนี้ทั้งหมดที่ตรงกับลูกค้าด้วยชื่อ Astrid และนามสกุล Gruber และนับตามแผนภูมิแท่งไม่จำเป็นต้องใช้ตารางทั้งหมด | Find all invoice dates corresponding to customers with first name Astrid and last name Gruber, and count them by a bar chartIt is not neccessary to use all the tables. | PlaylistTrack: PlaylistId [ integer] TrackId [ integer] | SELECT InvoiceDate, COUNT(InvoiceDate) FROM Customer AS T1 JOIN Invoice AS T2 ON T1.CustomerId = T2.CustomerId WHERE T1.FirstName = "Astrid" AND LastName = "Gruber" | null | general |
พล็อตค่าเฉลี่ยเงินเดือนโดยจัดกลุ่มตามวันที่จ้างเป็นกราฟแท่ง และแสดงตามแกน y จากสูงไปต่ำ ไม่จำเป็นต้องใช้ตารางทั้งหมด | Plot the average of salary by grouped by hire date as a bar graph, and display by the y axis from high to low.It is not neccessary to use all the tables. | job_history: EMPLOYEE_ID [ decimal(60)] START_DATE [ date] END_DATE [ date] JOB_ID [ varchar(10)] DEPARTMENT_ID [ decimal(40)] | SELECT HIRE_DATE, AVG(SALARY) FROM employees ORDER BY AVG(SALARY) DESC | null | general |
ชื่ออะไรมีข้อสังเกตถึง #21 us [riaa certified gold มกราคม 3, 1990]?ไม่จำเป็นต้องใช้ทุกตาราง | What title had a remark of #21 us [riaa certified gold january 3, 1990]?It is not neccessary to use all the tables. | table_36552: "Year" [ real] "Title" [ text] "Format" [ text] "Label" [ text] "Catalogno" [ text] "Remark" [ text] | SELECT "Title" FROM table_36552 WHERE "Remark" = '#21 us [riaa certified gold january 3, 1990]' | null | general |
ตั้งชื่อวันเปิดตัวสำหรับ vladimir lyakhov , aleksandr Pavlovich aleksandrovไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the launch date for vladimir lyakhov , aleksandr pavlovich aleksandrovIt is not neccessary to use all the tables. | table_26988: "Expedition" [ text] "Crew" [ text] | SELECT "Launch date" FROM table_26988 WHERE "Crew" = 'Vladimir Lyakhov , Aleksandr Pavlovich Aleksandrov' | null | general |
ปีใดมีเอกสาร NIPS มากที่สุด ?ไม่จำเป็นต้องใช้ตารางทั้งหมด | which year had the most NIPS papers ?It is not neccessary to use all the tables. | journal: journalid [ int] journalname [ varchar] | SELECT DISTINCT COUNT(paper.paperid), paper.year FROM paper, venue WHERE venue.venueid = paper.venueid AND venue.venuename = 'NIPS' GROUP BY paper.year ORDER BY COUNT(paper.paperid) DESC | null | general |
ลองนึกภาพแผนภูมิแท่งเพื่อดูจำนวนการลงทะเบียนทั้งหมดของมหาวิทยาลัยในแต่ละประเภทสังกัด และคุณช่วยแสดงรายการแถบจากมากไปน้อยได้ไหม ไม่จำเป็นต้องใช้ตารางทั้งหมด | Visualize a bar chart for what are the total enrollments of universities of each affiliation type?, and could you list bar from high to low order please?It is not neccessary to use all the tables. | basketball_match: Team_ID [ int] School_ID [ int] Team_Name [ text] ACC_Regular_Season [ text] ACC_Percent [ text] ACC_Home [ text] ACC_Road [ text] All_Games [ text] All_Games_Percent [ int] All_Home [ text] All_Road [ text] All_Neutral [ text] | SELECT Affiliation, SUM(Enrollment) FROM university GROUP BY Affiliation ORDER BY Affiliation DESC | null | general |
ครั้งสุดท้ายที่วัดหรือถ่ายความดันโลหิตของผู้ป่วย 15986 [ค่าล่าง] ในเดือน/23 นี้คือเมื่อใด? ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | when was the last time that patient 15986's arterial bp [diastolic] was measured or taken on this month/23?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 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 = 15986)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'arterial... | null | general |
คนไข้ 8562 นอนโรงพยาบาลครั้งแรกนานแค่ไหน ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | how long does patient 8562 stay in hospital for the first time.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 STRFTIME('%j', admissions.dischtime) - STRFTIME('%j', admissions.admittime) FROM admissions WHERE admissions.subject_id = 8562 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime LIMIT 1 | null | general |
ใครเป็นผู้ดำรงตำแหน่งในเขตจอร์เจีย 2?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Who was the incumbent of district Georgia 2?It is not neccessary to use all the tables. | table_1341472_12: incumbent [ VARCHAR] district [ VARCHAR] | SELECT incumbent FROM table_1341472_12 WHERE district = "Georgia 2" | null | general |
คะแนนสุดท้ายเมื่อบัฟฟาโล บิลส์เป็นทีมเยือนคือเท่าไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What was the final score when the Buffalo Bills were the visiting team?It is not neccessary to use all the tables. | table_70683: "Date" [ text] "Stadium" [ text] | SELECT "Final Score" FROM table_70683 WHERE "Visiting Team" = 'buffalo bills' | null | general |
Roosevelt High School มีตัวเลขการลงทะเบียนจำนวนเท่าใด ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | How many enrollment figures are provided for Roosevelt High School?It is not neccessary to use all the tables. | table_18972: "Location" [ text] "Founded" [ real] "Affiliation" [ text] "Enrollment" [ real] "Nickname" [ text] "Division" [ text] | SELECT COUNT("Enrollment") FROM table_18972 WHERE "High School" = 'Roosevelt' | null | general |
ค่าสูงสุดรายวันของเอาต์พุต amt-blake ระบายเอาต์พุตของผู้ป่วย 017-58432 จนถึง 12/26/2105 คือเท่าใด ไม่จำเป็นต้องใช้ตารางทั้งหมด | what is the daily maximum of output amt-blake drain a output of patient 017-58432 until 12/26/2105?It is not neccessary to use all the tables. | diagnosis: diagnosisid [ number] patientunitstayid [ number] diagnosisname [ text] diagnosistime [ time] icd9code [ text] | SELECT MAX(intakeoutput.cellvaluenumeric) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '017-58432')) AND intakeoutput.celllabel = 'outpu... | null | general |
ค้นหาคำอธิบายประเภทธุรกรรมและวันที่หากจำนวนหุ้นน้อยกว่า 10 จัดกลุ่มตามประเภทธุรกรรม นับวันที่ของธุรกรรม และเก็บวันที่ไว้ในช่วงวันธรรมดา แสดงผลลัพธ์ด้วยแผนภูมิเส้นการจัดกลุ่ม แล้วคุณเรียงลำดับจากสูงได้ไหม ต่ำลงตามแกน X หรือไม่จำเป็นต้องใช้ตารางทั้งหมด | Find the transaction type descriptions and dates if the share count is smaller than 10, group by transaction type, count the date of transaction, and bin the date into the weekday interval Show the result with a grouping line chart, and could you sort from high to low by the X-axis?It is not neccessary to use all the t... | Transactions_Lots: transaction_id [ INTEGER] lot_id [ INTEGER] | SELECT T2.date_of_transaction, COUNT(T2.date_of_transaction) FROM Ref_Transaction_Types AS T1 JOIN Transactions AS T2 ON T1.transaction_type_code = T2.transaction_type_code WHERE T2.share_count < 10 GROUP BY transaction_type_description ORDER BY date_of_transaction DESC | null | general |
ผลลัพธ์คืออะไร เมื่อการแข่งขันคือรอบคัดเลือกฟุตบอลโลก 2010 และวันที่คือวันที่ 10 กันยายน พ.ศ. 2551 ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is Result, when Competition is 2010 FIFA World Cup Qualification, and when Date is 10 September 2008?It is not neccessary to use all the tables. | table_name_37: result [ VARCHAR] competition [ VARCHAR] date [ VARCHAR] | SELECT result FROM table_name_37 WHERE competition = "2010 fifa world cup qualification" AND date = "10 september 2008" | null | general |
วันที่สิ้นสุดการจองอพาร์ทเมนท์ที่มีรหัสประเภท 'Duplex' คือเมื่อใด ผูกปีไว้ในช่วงวันธรรมดาด้วยแผนภูมิแท่ง และจัดเรียงตาม Y ใน asc ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the booking end dates of the apartments with type code 'Duplex'? Bin the year into weekday interval with a bar chart, and sort by the Y in asc.It is not neccessary to use all the tables. | Apartment_Bookings: apt_booking_id [ INTEGER] apt_id [ INTEGER] guest_id [ INTEGER] booking_status_code [ CHAR(15)] booking_start_date [ DATETIME] booking_end_date [ DATETIME] | SELECT booking_end_date, COUNT(booking_end_date) FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.apt_type_code = "Duplex" ORDER BY COUNT(booking_start_date) | null | general |
สำหรับผู้ป่วยที่รับประทานยากันชัก-ยากล่อมประสาทในปีนี้ มี 5 ขั้นตอนที่พบบ่อยที่สุดที่ปฏิบัติตามภายใน 2 เดือนหรือไม่ ไม่จำเป็นต้องใช้ตารางทั้งหมด | for patients who took anticonvulsant - diazepam this year, what are the five most frequent procedures that were followed within 2 months?It is not neccessary to use all the tables. | lab: labid [ number] patientunitstayid [ number] labname [ text] labresult [ number] labresulttime [ time] | SELECT t3.treatmentname FROM (SELECT t2.treatmentname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, treatment.treatmenttime FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'anticonvulsant - diazepam' AND DATETIME(... | null | general |
รหัสหัวเรื่อง 83678 อายุเท่าไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | what is age of subject id 83678?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 demographic.age FROM demographic WHERE demographic.subject_id = "83678" | null | general |
ชื่อร้านค้าปลีกที่มีสัญญาณดิจิตอล/อนาล็อกพร้อมอนาล็อก และชิปเซ็ตที่ใช้กับ radeon 9600 คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the Retail name with a Digital/analog signal with analog, and a Chipset based on with radeon 9600?It is not neccessary to use all the tables. | table_10490: "AVIVO" [ text] | SELECT "Retail name" FROM table_10490 WHERE "Digital/analog signal" = 'analog' AND "Chipset based on" = 'radeon 9600' | null | general |
ผู้ประกอบการ Richard Ernest นำเสนอตอนใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What episode featured entrepreneur Richard Ernest?It is not neccessary to use all the tables. | table_name_15: first_aired [ VARCHAR] entrepreneur_s_ [ VARCHAR] | SELECT first_aired FROM table_name_15 WHERE entrepreneur_s_ = "richard ernest" | null | general |
คลาส 330 มีกี่คลาส?ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many have a class of 330?It is not neccessary to use all the tables. | table_name_97: quantity_made [ VARCHAR] class [ VARCHAR] | SELECT quantity_made FROM table_name_97 WHERE class = "330" | null | general |
ท่อระบายน้ำสมองหรือท่อระบายน้ำของกระเป๋าหน้าท้องที่ผู้ป่วย 94937 มีเมื่อวันที่ 27/12/ปีที่แล้วมีจำนวนเท่าใด? ไม่จำเป็นต้องใช้ตารางทั้งหมด | what was the total of the cerebral drain r ventricular drain output that patient 94937 had on 12/27/last year?It is not neccessary to use all the tables. | icustays: row_id [ number] subject_id [ number] hadm_id [ number] icustay_id [ number] first_careunit [ text] last_careunit [ text] first_wardid [ number] last_wardid [ number] intime [ time] outtime [ time] | 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 = 94937)) AND outputevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'cer... | null | general |
ใครเป็นผู้กำกับตอนที่มีรหัสการผลิต 2j5457?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Who directed the episode that had a production code of 2j5457?It is not neccessary to use all the tables. | table_25851971_1: directed_by [ VARCHAR] production_code [ VARCHAR] | SELECT directed_by FROM table_25851971_1 WHERE production_code = "2J5457" | null | general |
เท่านั้น ง่าย ๆ - ไม่ต้องตรวจสอบ CW หรือ rep cap ไม่จำเป็นต้องใช้ตารางทั้งหมด | s only, simple - no check for CW or rep cap.It is not neccessary to use all the tables. | ReviewTaskStates: Id [ number] Name [ text] Description [ text] | SELECT p.OwnerUserId AS "user_link", COUNT(DISTINCT p.Id) AS "total_questions", SUM(CASE WHEN VoteTypeId = 2 THEN 5 WHEN VoteTypeId = 3 THEN -2 END) + (SELECT COUNT(*) FROM Posts AS acc WHERE acc.OwnerUserId = p.OwnerUserId AND NOT AcceptedAnswerId IS NULL) * 2 AS "total_reputation" FROM Posts AS p INNER JOIN Votes AS ... | null | general |
ค่าใช้จ่ายเฉลี่ยของโรงพยาบาลที่มีการควบคุมความดันในปี 2105 คือเท่าไร?ไม่จำเป็นต้องใช้ทุกโต๊ะ | how much is the average cost of a hospital that involves pressure control in 2105?It is not neccessary to use all the tables. | vitalperiodic: vitalperiodicid [ number] patientunitstayid [ number] temperature [ number] sao2 [ number] heartrate [ number] respiration [ number] systemicsystolic [ number] systemicdiastolic [ number] systemicmean [ number] observationtime [ time] | SELECT AVG(t1.c1) FROM (SELECT SUM(cost.cost) AS c1 FROM cost WHERE cost.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.patientunitstayid IN (SELECT lab.patientunitstayid FROM lab WHERE lab.labname = 'pressure control')) AND STRFTIME('%y', cost.chargetime) = '2105' GRO... | null | general |
ผู้กำกับแต่ละคนมีภาพยนตร์กี่เรื่อง? ส่งกลับแผนภูมิวงกลม ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the number of films of each director? Return a pie chart.It is not neccessary to use all the tables. | schedule: Cinema_ID [ int] Film_ID [ int] Date [ text] Show_times_per_day [ int] Price [ float] | SELECT Directed_by, COUNT(Directed_by) FROM film GROUP BY Directed_by | null | general |
ชุดที่ 4 คืออะไร เมื่อชุดที่ 1 คือ 19-25 และเมื่อชุดที่ 2 คือ 23-25? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is Set 4, when Set 1 is 19-25, and when Set 2 is 23-25?It is not neccessary to use all the tables. | table_name_33: set_4 [ VARCHAR] set_1 [ VARCHAR] set_2 [ VARCHAR] | SELECT set_4 FROM table_name_33 WHERE set_1 = "19-25" AND set_2 = "23-25" | null | general |
ทีมรัฐโคโลราโดมีสัญชาติอะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What Nationality is the Colorado State team?It is not neccessary to use all the tables. | table_name_16: nationality [ VARCHAR] school_club_team [ VARCHAR] | SELECT nationality FROM table_name_16 WHERE school_club_team = "colorado" | null | general |
ตารางต่ำสุดของการแข่ง pkv ซึ่งมี 13 แต้มและน้อยกว่า 64 รอบคืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the lowest grid of pkv racing, which had 13 points and less than 64 laps?It is not neccessary to use all the tables. | table_name_28: grid [ INTEGER] laps [ VARCHAR] team [ VARCHAR] points [ VARCHAR] | SELECT MIN(grid) FROM table_name_28 WHERE team = "pkv racing" AND points = 13 AND laps < 64 | null | general |
ปิด เปิดใหม่หลังจากแก้ไขล่าสุดโดยเจ้าของ หลังจากปิด ไม่จำเป็นต้องใช้ตารางทั้งหมด | Closed ReOpened After LastEdit By Owner After Closed.It is not neccessary to use all the tables. | PostLinks: Id [ number] CreationDate [ time] PostId [ number] RelatedPostId [ number] LinkTypeId [ number] | SELECT p.LastEditDate, p.ClosedDate, CASE WHEN p.LastEditDate >= p.ClosedDate THEN 'Counted' ELSE 'Ignored' END AS Diff, p.Id AS "post_link" FROM Posts AS p, PostHistory AS ph WHERE p.LastEditorUserId = p.OwnerUserId AND p.Id = ph.PostId AND ph.PostHistoryTypeId = 11 ORDER BY 3 | null | general |
การแข่งขันชิงแชมป์ซีรีส์ Sprint Cup คือสนามใด?ไม่จำเป็นต้องใช้ทุกโต๊ะ | What circuit is the Sprint Cup series championship?It is not neccessary to use all the tables. | table_name_29: circuit [ VARCHAR] championship [ VARCHAR] | SELECT circuit FROM table_name_29 WHERE championship = "sprint cup series" | null | general |
ผลลัพธ์ในตารางนี้มาจากปี 2012 คืออะไร?ไม่จำเป็นต้องใช้ทุกตาราง | What result in the table is from the year 2012?It is not neccessary to use all the tables. | table_70327: "Year" [ real] "Award" [ text] "Category" [ text] "Result" [ text] | SELECT "Result" FROM table_70327 WHERE "Year" = '2012' | null | general |
ผู้เข้าร่วมโดยเฉลี่ยในเกมที่มีผลการแข่งขัน w 30-23 เป็นเท่าใด? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the average Attendance at a game with a Result of w 30-23?It is not neccessary to use all the tables. | table_name_16: attendance [ INTEGER] result [ VARCHAR] | SELECT AVG(attendance) FROM table_name_16 WHERE result = "w 30-23" | null | general |
รถสูบน้ำมีรถยนต์จำนวน 1 คัน และมีเจ้าหน้าที่อาสาสมัคร 1 คน และกองพลน้อยแห่งโกรฟเดล 1 คัน และเรือบรรทุกน้ำมันที่เล็กกว่า 1 คัน ไม่จำเป็นที่จะต้องใช้โต๊ะทั้งหมด | How many Pumpers have Cars of 1, and a Staffing of volunteer, and a Brigade of grovedale, and Tankers smaller than 1?It is not neccessary to use all the tables. | table_8401: "Brigade" [ text] "Staffing" [ text] "Type" [ text] "Location" [ text] "Pumpers" [ real] "Tankers" [ real] "Telebooms" [ text] "Platforms" [ text] "Cars" [ text] "Hazmat" [ text] | SELECT COUNT("Pumpers") FROM table_8401 WHERE "Cars" = '1' AND "Staffing" = 'volunteer' AND "Brigade" = 'grovedale' AND "Tankers" < '1' | null | general |
ค้นหาจำนวนผู้ป่วยอายุต่ำกว่า 64 ปี ที่มีภาษาท่า ไม่จำเป็นต้องใช้ทุกตาราง | find the number of patients under age 64 whose language is port.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.language = "PORT" AND demographic.age < "64" | null | general |
โดยที่ title เหมือนกับ body ไม่จำเป็นต้องใช้ตารางทั้งหมด | s where title is same as body.It is not neccessary to use all the tables. | PostTags: PostId [ number] TagId [ number] | SELECT p.Id AS "post_link", p.Body, p.CreationDate FROM (SELECT * FROM Posts WHERE PostTypeId = 1 AND LENGTH(Body) < LENGTH(Title) + 30 AND LENGTH(Body) > LENGTH(Title)) AS p INNER JOIN (SELECT ph1.* FROM PostHistory AS ph1 INNER JOIN (SELECT PostId, MAX(CreationDate) AS CreationDate FROM PostHistory WHERE PostHistoryT... | null | general |
ค่า sao2 ของผู้ป่วย 006-80884 ที่วัดครั้งสุดท้ายในการนัดตรวจใน ICU ปัจจุบันมากกว่าค่าที่วัดครั้งแรกในการนัดตรวจใน ICU ปัจจุบันหรือไม่ ไม่จำเป็นต้องใช้ตารางทั้งหมด | was the sao2 value of patient 006-80884 last measured on the current icu visit greater than the value first measured on the current icu visit?It is not neccessary to use all the tables. | medication: medicationid [ number] patientunitstayid [ number] drugname [ text] dosage [ text] routeadmin [ text] drugstarttime [ time] drugstoptime [ time] | SELECT (SELECT vitalperiodic.sao2 FROM vitalperiodic WHERE vitalperiodic.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '006-80884') AND patient.unitdischargetime IS NULL) AND... | null | general |
คู่หูของผู้แต่ง Dave Stone คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the companion for the author Dave Stone?It is not neccessary to use all the tables. | table_name_7: companion_s_ [ VARCHAR] author [ VARCHAR] | SELECT companion_s_ FROM table_name_7 WHERE author = "dave stone" | null | general |
เมื่ออันดับที่ 7 คือตำแหน่งและอันดับที่ 15 คือการแข่งขันใครเป็นทีม?ไม่จำเป็นต้องใช้ตารางทั้งหมด | When 7th is the position and 15 is the race who is the team?It is not neccessary to use all the tables. | table_27561: "Season" [ real] "Series" [ text] "Team" [ text] "Races" [ real] "Wins" [ real] "Poles" [ real] "F/Laps" [ real] "Podiums" [ real] "Points" [ real] "Position" [ text] | SELECT "Team" FROM table_27561 WHERE "Races" = '15' AND "Position" = '7th' | null | general |
ค้นหา meter_300 และ meter_100 และแสดงภาพด้วยแผนภูมิแท่ง และคุณสามารถแสดงแบบเรียงตามแกน y ได้หรือไม่ ไม่จำเป็นต้องใช้ตารางทั้งหมด | Find meter_300 and meter_100 , and visualize them by a bar chart, and could you display in desc by the y-axis?It is not neccessary to use all the tables. | event: ID [ int] Name [ text] Stadium_ID [ int] Year [ text] | SELECT meter_300, meter_100 FROM swimmer ORDER BY meter_100 DESC | null | general |
ซิดนีย์มีรายการกี่ดอลลาร์เมื่อระยะทาง 10 กม. ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many dollars is listed under Sydney when the distance is 10km?It is not neccessary to use all the tables. | table_31019: "Distance" [ text] "Adelaide" [ text] "Brisbane" [ text] "Canberra" [ text] "Melbourne" [ text] "Perth" [ text] "Sydney" [ text] | SELECT "Sydney" FROM table_31019 WHERE "Distance" = '10km' | null | general |
ใครมีตำแหน่งสุดท้ายและทีมโรงเรียน/สโมสรของรัฐโอเรกอน? ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | WHo has a Position of end and a School/Club Team of oregon state?It is not neccessary to use all the tables. | table_36511: "Round" [ real] "Pick" [ real] "Player" [ text] "Position" [ text] | SELECT "Player" FROM table_36511 WHERE "Position" = 'end' AND "School/Club Team" = 'oregon state' | null | general |
ม้าตัวไหนจบใน 8? ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Which Horse finished in 8?It is not neccessary to use all the tables. | table_name_54: horse [ VARCHAR] finished [ VARCHAR] | SELECT horse FROM table_name_54 WHERE finished = "8" | null | general |
ด้วยตั๋วรีพับลิกันของ Frank M. Williams ซึ่งเป็นตั๋วโปรเกรสซีฟ?ไม่จำเป็นต้องใช้ทุกโต๊ะ | With the Republican ticket of Frank M. Williams who was the Progressive ticket?It is not neccessary to use all the tables. | table_name_63: progressive_ticket [ VARCHAR] republican_ticket [ VARCHAR] | SELECT progressive_ticket FROM table_name_63 WHERE republican_ticket = "frank m. williams" | null | general |
อายุเฉลี่ยของคนไข้ที่มีสถานภาพสมรสแล้วและสถานที่รับเข้าคือ trsf ภายในสถานที่นี้คือเท่าใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | what is average age of patients whose marital status is married and admission location is trsf within this facility?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 AVG(demographic.age) FROM demographic WHERE demographic.marital_status = "MARRIED" AND demographic.admission_location = "TRSF WITHIN THIS FACILITY" | null | general |
เมืองใดมีวันที่ 19 พฤษภาคม 1976? ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which City has a Date of may 19, 1976?It is not neccessary to use all the tables. | table_name_23: city [ VARCHAR] date [ VARCHAR] | SELECT city FROM table_name_23 WHERE date = "may 19, 1976" | null | general |
ผ่านไปกี่ชั่วโมงนับตั้งแต่ครั้งแรกในการเยี่ยมโรงพยาบาลปัจจุบัน ผู้ป่วย 14671 พักอยู่ในแผนกดูแลผู้ป่วย?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | how many hours have passed since first time on the current hospital visit patient 14671 stayed in the careunit micu?It is not neccessary to use all the tables. | labevents: row_id [ number] subject_id [ number] hadm_id [ number] itemid [ number] charttime [ time] valuenum [ number] valueuom [ text] | SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', transfers.intime)) FROM transfers WHERE transfers.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 14671 AND admissions.dischtime IS NULL) AND transfers.careunit = 'micu' ORDER BY transfers.intime LIMIT 1 | null | general |
ตำแหน่งที่ดีที่สุดสองตำแหน่งที่คาซลูได้รับการจัดอันดับในการแข่งขันระดับโลกที่สำคัญคือ ________ และ ______ ไม่จำเป็นต้องใช้ตารางทั้งหมด | the two best positions in which kazlou has ranked in major world competition were ________ and ______ .It is not neccessary to use all the tables. | table_203_238: id [ number] "year" [ number] "competition" [ text] "venue" [ text] "position" [ text] "notes" [ text] | SELECT "position" FROM table_203_238 ORDER BY "position" LIMIT 2 | null | general |
รหัสโครงการแต่ละโครงการมีพนักงานกี่คน แสดงรายการตามลำดับที่เพิ่มขึ้น ไม่จำเป็นต้องใช้ตารางทั้งหมด | For each project id, how many staff does it have? List them in increasing order.It is not neccessary to use all the tables. | organisations: organisation_id [ number] organisation_type [ text] organisation_details [ text] | SELECT T1.project_id, COUNT(*) FROM project_staff AS T1 JOIN projects AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id ORDER BY COUNT(*) | null | general |
เมื่อพาร์เนล ดิกคินสันเป็นผู้เล่นและรอบนั้นต่ำกว่า 7 คน อะไรคือตัวเลือกที่สูงที่สุด?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | When parnell dickinson was the player and the rounds were under 7, what's the highest pick?It is not neccessary to use all the tables. | table_55511: "Pick" [ real] "Round" [ real] "Player" [ text] "Position" [ text] "School" [ text] | SELECT MAX("Pick") FROM table_55511 WHERE "Player" = 'parnell dickinson' AND "Round" < '7' | null | general |
ชื่อผู้เล่นจาก Charlotte, NC คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the Name of the Player from Charlotte, NC?It is not neccessary to use all the tables. | table_39830: "Name" [ text] "Height" [ text] "Position" [ text] "Year" [ text] | SELECT "Name" FROM table_39830 WHERE "Home Town" = 'charlotte, nc' | null | general |
มีส่วนประกอบในห้องปฏิบัติการสำหรับรุ่น 520 หรือไม่ ?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Is there a lab component for 520 ?It is not neccessary to use all the tables. | semester: semester_id [ int] semester [ varchar] year [ int] | SELECT COUNT(*) > 0 FROM course WHERE department = 'EECS' AND has_lab = 'Y' AND number = 520 | null | general |
แสดงจำนวนหลักสูตรที่ผู้สอนแต่ละคนสอนเป็นแผนภูมิแท่ง และจัดอันดับแกน y จากมากไปน้อย ไม่จำเป็นต้องใช้ตารางทั้งหมด | Show the number of courses each instructor taught in a bar chart, and rank y-axis from high to low order.It is not neccessary to use all the tables. | ENROLL: CLASS_CODE [ varchar(5)] STU_NUM [ int] ENROLL_GRADE [ varchar(50)] | SELECT EMP_FNAME, COUNT(EMP_FNAME) FROM CLASS AS T1 JOIN EMPLOYEE AS T2 ON T1.PROF_NUM = T2.EMP_NUM GROUP BY EMP_FNAME ORDER BY COUNT(EMP_FNAME) DESC | null | general |
เมื่อสัญชาติเป็นสหรัฐอเมริกาและเวลาคือ 58.06 และความร้อนมากกว่า 5 อันดับต่ำสุดคืออะไรไม่จำเป็นต้องใช้ตารางทั้งหมด | When the nationality is united states, and the time is 58.06, and the heat is larger than 5 what is the lowest rank?It is not neccessary to use all the tables. | table_63273: "Rank" [ real] "Heat" [ real] "Lane" [ real] "Name" [ text] "Nationality" [ text] "Time" [ text] | SELECT MIN("Rank") FROM table_63273 WHERE "Nationality" = 'united states' AND "Time" = '58.06' AND "Heat" > '5' | null | general |
เป็นครั้งแรกที่มีการจ่ายยาคาร์บามาซีพีนจำนวนเท่าใดในเดือนนี้ให้กับผู้ป่วย 6170?ไม่จำเป็นต้องใช้ทุกตาราง | for the first time, how much carbamazepine was prescribed during this month to patient 6170?It is not neccessary to use all the tables. | prescriptions: row_id [ number] subject_id [ number] hadm_id [ number] startdate [ time] enddate [ time] drug [ text] dose_val_rx [ text] dose_unit_rx [ text] route [ text] | SELECT prescriptions.dose_val_rx FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 6170) AND prescriptions.drug = 'carbamazepine' AND DATETIME(prescriptions.startdate, 'start of month') = DATETIME(CURRENT_TIME(), 'start of month', '-0 month') ORDE... | null | general |
จำนวนคะแนนต่ำสุดของทีมที่แพ้ 2 ครั้งและต่ำกว่า 1 ตำแหน่งคือเท่าไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the lowest number of points of the team with 2 losses and a lower than 1 position?It is not neccessary to use all the tables. | table_name_73: points [ INTEGER] losses [ VARCHAR] position [ VARCHAR] | SELECT MIN(points) FROM table_name_73 WHERE losses = 2 AND position > 1 | null | general |
ค่าเฉลี่ยที่รวมกับชื่อเล่นของ wildcats ใน longmeadow, แมสซาชูเซตส์คืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the average Joined with a Nickname of wildcats in longmeadow, massachusetts?It is not neccessary to use all the tables. | table_15612: "Location" [ text] "Nickname" [ text] "Founded" [ real] "Type" [ text] "Enrollment" [ real] "Joined" [ real] "Left" [ real] | SELECT AVG("Joined") FROM table_15612 WHERE "Nickname" = 'wildcats' AND "Location" = 'longmeadow, massachusetts' | null | general |
African Spoonbill คืออะไรเมื่อนกกระจอกเทศเป็นนกกระเต็นคลุมสีน้ำตาล?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | What is the African Spoonbill when the Ostrich is Brown-hooded Kingfisher?It is not neccessary to use all the tables. | table_20042805_2: african_spoonbill [ VARCHAR] ostrich [ VARCHAR] | SELECT african_spoonbill FROM table_20042805_2 WHERE ostrich = "Brown-hooded Kingfisher" | null | general |
กี่ปีในอาชีพของ TeBe สำหรับผู้เล่นที่มีการแข่งขันในลีก 163 นัดพอดี? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What are the years of TeBe career for the players whose league matches are exactly 163?It is not neccessary to use all the tables. | table_30712: "Player" [ text] "Nation" [ text] | SELECT "TeBe career" FROM table_30712 WHERE "League matches" = '163' | null | general |
ผู้เล่นสมุนไพรเอสเตสหนึ่งคนรีบาวด์ได้กี่ครั้ง?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | How many rebounds have a Player of herb estes?It is not neccessary to use all the tables. | table_name_51: total_rebounds [ VARCHAR] player [ VARCHAR] | SELECT COUNT(total_rebounds) FROM table_name_51 WHERE player = "herb estes" | null | general |
ตั้งชื่อวันที่ l 92 103 (ot)ไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the date for l 92 103 (ot)It is not neccessary to use all the tables. | table_17322817_6: date [ VARCHAR] score [ VARCHAR] | SELECT date FROM table_17322817_6 WHERE score = "L 92–103 (OT)" | null | general |
มีผู้ป่วยกี่รายที่ได้รับการวินิจฉัยว่าเป็นโรคนิวโทรพีเนียที่เกิดจากยา และได้ฉีดยาที่ตาซ้ายของตน?ไม่จำเป็นต้องใช้ตารางทั้งหมด | how many of the patients diagnosed with drug induced neutropenia, had a drug administered to their left eye?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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE diagnoses.long_title = "Drug induced neutropenia" AND prescriptions.route = "LEFT EYE" | null | general |
ห้องพักมีกี่ประเภท?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | How many different types of rooms are there?It is not neccessary to use all the tables. | room: roomtype [ VARCHAR] | SELECT COUNT(DISTINCT roomtype) FROM room | null | general |
สำหรับพนักงานที่ได้รับการว่าจ้างก่อนวันที่ 21-06-2545 แสดงให้ฉันเห็นเกี่ยวกับการแจกแจงของ job_id และผลรวมของ Employee_id และจัดกลุ่มตามแอตทริบิวต์ job_id ในแผนภูมิแท่ง โปรดแสดงแถบจากสูงไปต่ำตามลำดับ ไม่จำเป็น ใช้ตารางทั้งหมด | For those employees who was hired before 2002-06-21, show me about the distribution of job_id and the sum of employee_id , and group by attribute job_id in a bar chart, show bars from high to low order please.It is not neccessary to use all the tables. | employees: EMPLOYEE_ID [ decimal(60)] FIRST_NAME [ varchar(20)] LAST_NAME [ varchar(25)] EMAIL [ varchar(25)] PHONE_NUMBER [ varchar(20)] HIRE_DATE [ date] JOB_ID [ varchar(10)] SALARY [ decimal(82)] COMMISSION_PCT [ decimal(22)] MANAGER_ID [ decimal(60)] DEPARTMENT_ID [ decimal(40)] | SELECT JOB_ID, SUM(EMPLOYEE_ID) FROM employees WHERE HIRE_DATE < '2002-06-21' GROUP BY JOB_ID ORDER BY JOB_ID DESC | null | general |
สิ่งที่แสดงในวันอังคารซึ่งเป็นวันพุธคือ Fox Sports Tonight (สิ้นสุด 01.00 น. ของวันถัดไป) ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is shown on Tuesday when Wednesday is Fox Sports Tonight (ends 1 am next day)?It is not neccessary to use all the tables. | table_63882: "Monday" [ text] "Tuesday" [ text] "Wednesday" [ text] "Thursday" [ text] "Friday" [ text] | SELECT "Tuesday" FROM table_63882 WHERE "Wednesday" = 'fox sports tonight (ends 1 am next day)' | null | general |
ทีมใดร่าง steve scifres?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What team drafted steve scifres?It is not neccessary to use all the tables. | table_13758243_1: nfl_team [ VARCHAR] player [ VARCHAR] | SELECT nfl_team FROM table_13758243_1 WHERE player = "Steve Scifres" | null | general |
มีกี่ฝ่ายที่ได้รับการตั้งชื่อว่า Center Allianceไม่จำเป็นต้องใช้ตารางทั้งหมด | How many parties are named the Center AllianceIt is not neccessary to use all the tables. | table_23687: | SELECT COUNT("2013 Parliamentary election") FROM table_23687 WHERE "English party name" = 'Center Alliance' | null | general |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.