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 |
|---|---|---|---|---|---|
บันทึกสำหรับ Superbrawl 21 คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the record for the Superbrawl 21?It is not neccessary to use all the tables. | table_name_68: record [ VARCHAR] event [ VARCHAR] | SELECT record FROM table_name_68 WHERE event = "superbrawl 21" | null | general |
แสดงชื่อลูกค้าที่สั่งซื้อพร้อมวิธีจัดส่ง FedEx และสถานะการสั่งซื้อ ชำระเงินแล้ว ไม่จำเป็นต้องใช้ทุกตาราง | Show the names of customers having an order with shipping method FedEx and order status Paid.It is not neccessary to use all the tables. | customer_orders: customer_id [ VARCHAR] | SELECT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE shipping_method_code = 'FedEx' AND order_status_code = 'Paid' | null | general |
เปอร์เซ็นไทล์ของกลูโคสข้างเตียงคือ 84.0 ในผู้ป่วยอายุเดียวกันกับผู้ป่วย 030-42006 ในระหว่างการเข้ารับการรักษาในโรงพยาบาลนี้?ไม่จำเป็นต้องใช้ตารางทั้งหมด | what percentile of bedside glucose is 84.0 in patients of the same age as patient 030-42006 during this hospital encounter?It is not neccessary to use all the tables. | allergy: allergyid [ number] patientunitstayid [ number] drugname [ text] allergyname [ text] allergytime [ time] | SELECT DISTINCT t1.c1 FROM (SELECT lab.labresult, PERCENT_RANK() OVER (ORDER BY lab.labresult) AS c1 FROM lab WHERE lab.labname = 'bedside glucose' AND lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.age = (SELECT patient.age FROM patient WHERE patient.uniquepid = '030-42006' AND p... | null | general |
นับจำนวนคนไข้เพศ m และประเภทยาเสริมหรือไม่ไม่จำเป็นต้องใช้ทุกตาราง | count the number of patients whose gender is m and drug type is additive?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 prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.gender = "M" AND prescriptions.drug_type = "ADDITIVE" | null | general |
การเปรียบเทียบใดที่มีลิงก์ของเว็บเซิร์ฟเวอร์ซอร์สโค้ด ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which Comparative has a Link of sourcecode webserver?It is not neccessary to use all the tables. | table_name_43: comparative [ VARCHAR] link [ VARCHAR] | SELECT comparative FROM table_name_43 WHERE link = "sourcecode webserver" | null | general |
สถานที่ของผู้เล่นจากสกอตแลนด์คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the Place of the Player from Scotland?It is not neccessary to use all the tables. | table_45150: "Place" [ text] "Player" [ text] "Country" [ text] "Score" [ text] | SELECT "Place" FROM table_45150 WHERE "Country" = 'scotland' | null | general |
เดมอนสร้างภาพยนตร์เรื่องใดหลังจากสัตว์ประหลาด?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | what film did damon produce right after monster ?It is not neccessary to use all the tables. | table_203_438: id [ number] "year" [ number] "title" [ text] "role" [ text] "notes" [ text] | SELECT "title" FROM table_203_438 WHERE id = (SELECT id FROM table_203_438 WHERE "title" = 'monster') - 1 | null | general |
ผู้เล่น Utah Jazz จาก Southern Methodist, Play กี่ปี ไม่จำเป็นต้องใช้ตารางทั้งหมด | What years did the Utah Jazz Player from Southern Methodist, Play?It is not neccessary to use all the tables. | table_54486: "Player" [ text] "Nationality" [ text] "Position" [ text] | SELECT "Years for Jazz" FROM table_54486 WHERE "School/Club Team" = 'southern methodist' | null | general |
สถานที่สำหรับอ่าว Hawke?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Venue for Hawke's bay?It is not neccessary to use all the tables. | table_45687: "Against" [ real] "Date" [ text] "Venue" [ text] "Status" [ text] | SELECT "Venue" FROM table_45687 WHERE "Opposing Team" = 'hawke''s bay' | null | general |
เปรียบเทียบจำนวนรวมของชื่อผลิตภัณฑ์ที่แตกต่างกัน แสดงแกน y ตามลำดับ asc ไม่จำเป็นต้องใช้ตารางทั้งหมด | Compare the total number of different product names, show y axis in asc order.It is not neccessary to use all the tables. | Events: Event_ID [ INTEGER] Address_ID [ INTEGER] Channel_ID [ INTEGER] Event_Type_Code [ CHAR(15)] Finance_ID [ INTEGER] Location_ID [ INTEGER] | SELECT Product_Name, COUNT(Product_Name) FROM Products GROUP BY Product_Name ORDER BY COUNT(Product_Name) | null | general |
รายชื่อผู้กำกับทั้งหมดพร้อมกับจำนวนภาพยนตร์ที่ผู้กำกับแต่ละคนกำกับ เขียนเป็นแผนภูมิแท่ง กรุณาเรียงลำดับแกน X จากสูงไปต่ำ ไม่จำเป็นต้องใช้ตารางทั้งหมด | List all directors along with the number of films directed by each director Plot them as bar chart, list X-axis from high to low order please.It is not neccessary to use all the tables. | film: Film_ID [ int] Rank_in_series [ int] Number_in_season [ int] Title [ text] Directed_by [ text] Original_air_date [ text] Production_code [ text] | SELECT Directed_by, COUNT(*) FROM film GROUP BY Directed_by ORDER BY Directed_by DESC | null | general |
เมื่อทีมเจ้าบ้านเป็นคาร์ลตันทีมเยือนได้คะแนนเท่าไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | When the Home team was Carlton, what was the Away team score?It is not neccessary to use all the tables. | table_56816: "Venue" [ text] "Crowd" [ real] "Date" [ text] | SELECT "Away team score" FROM table_56816 WHERE "Home team" = 'carlton' | null | general |
ตั้งชื่อลักษณะการเดินทางในวันที่ 26 มกราคม วันที่นัดหมาย ไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the manner of departyre for 26 january date of appointmentIt is not neccessary to use all the tables. | table_name_4: manner_of_departure [ VARCHAR] date_of_appointment [ VARCHAR] | SELECT manner_of_departure FROM table_name_4 WHERE date_of_appointment = "26 january" | null | general |
ใครคือนักแข่งที่ชนะเมื่อ Michael Schumacher ครองโพลและทำรอบได้เร็วที่สุด?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Who was the winning driver when Michael Schumacher had the pole and the fastest lap?It is not neccessary to use all the tables. | table_1137695_3: winning_driver [ VARCHAR] fastest_lap [ VARCHAR] pole_position [ VARCHAR] | SELECT winning_driver FROM table_1137695_3 WHERE fastest_lap = "Michael Schumacher" AND pole_position = "Michael Schumacher" | null | general |
งาน NJKF Titans Neo X จัดขึ้นกี่โมง? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What was the time of the NJKF Titans Neo X event?It is not neccessary to use all the tables. | table_5578: "Result" [ text] "Record" [ text] "Opponent" [ text] "Event" [ text] "Method" [ text] "Round" [ text] "Time" [ text] | SELECT "Time" FROM table_5578 WHERE "Event" = 'njkf titans neo x' | null | general |
โรงเรียนใดเป็นโรงเรียนประถมศึกษาที่มี DCSF หมายเลข 2045 ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which school is a primary school with DCSF number 2045?It is not neccessary to use all the tables. | table_name_62: name [ VARCHAR] type [ VARCHAR] dcsf_number [ VARCHAR] | SELECT name FROM table_name_62 WHERE type = "primary" AND dcsf_number = 2045 | null | general |
มีคนไข้กี่คนที่อายุเข้ารักษาน้อยกว่า 2,177 ปี และชื่อย่อของการรักษาคือ การให้ยา vasopressor? ไม่จำเป็นต้องใช้ตารางทั้งหมด | how many patients whose admission year is less than 2177 and procedure short title is infusion of vasopressor?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 procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admityear < "2177" AND procedures.short_title = "Infusion of vasopressor" | null | general |
ตั้งชื่อจุดสำหรับเมื่อ try diff คือ +19 ไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the points for for when try diff is +19It is not neccessary to use all the tables. | table_30385: "Team" [ text] "P" [ real] "W" [ real] "D" [ real] "L" [ real] "Pts" [ real] | SELECT "Points for" FROM table_30385 WHERE "Try diff" = '+19' | null | general |
ผลรวมต่ำสุดเมื่ออาหรับคือ 4,000 คืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the lowest total when arabs is 4000?It is not neccessary to use all the tables. | table_25947046_1: total [ INTEGER] arabs [ VARCHAR] | SELECT MIN(total) FROM table_25947046_1 WHERE arabs = 4000 | null | general |
หมายเลขการเลือกร่างและคลาสร่างสำหรับผู้เล่นที่เล่นตำแหน่ง Defender คืออะไร แสดงแผนภูมิแท่ง ไม่จำเป็นต้องใช้ตารางทั้งหมด | What are the draft pick numbers and draft classes for players who play the Defender position. Show bar chart.It is not neccessary to use all the tables. | match_season: Season [ real] Player [ text] Position [ text] Country [ int] Team [ int] Draft_Pick_Number [ int] Draft_Class [ text] College [ text] | SELECT Draft_Class, Draft_Pick_Number FROM match_season WHERE Position = "Defender" | null | general |
ไดร์เวอร์ที่มากกว่า 10 โดยมี Q1 เป็น 18 ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Driver at larger than 10 with a Q1 of 18.It is not neccessary to use all the tables. | table_name_28: driver [ VARCHAR] q1_order [ VARCHAR] q1_pos [ VARCHAR] | SELECT driver FROM table_name_28 WHERE q1_order > 10 AND q1_pos = 18 | null | general |
เกาะโคลอนเซย์มีพื้นที่เท่าใด?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | What is the area of Colonsay Island?It is not neccessary to use all the tables. | table_143579_1: area___ha__ [ INTEGER] island [ VARCHAR] | SELECT MIN(area___ha__) FROM table_143579_1 WHERE island = "Colonsay" | null | general |
เมืองที่มีความจุ 41,311 ชื่ออะไร?ไม่จำเป็นที่จะต้องใช้โต๊ะทั้งหมด | What is the name of the city with a capacity of 41,311?It is not neccessary to use all the tables. | table_41287: "Team" [ text] "City" [ text] "State" [ text] "Capacity" [ text] | SELECT "City" FROM table_41287 WHERE "Capacity" = '41,311' | null | general |
เอ็ด โฮโรวิตซ์ เขียนตอนแรกออกอากาศเมื่อใด? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What was the original air date when ed horowitz wrote it?It is not neccessary to use all the tables. | table_name_89: original_airdate [ VARCHAR] written_by [ VARCHAR] | SELECT original_airdate FROM table_name_89 WHERE written_by = "ed horowitz" | null | general |
มีผู้ป่วยกี่รายที่ไม่ได้ใช้ Procrastin-X เป็นยา?ไม่จำเป็นต้องใช้ทุกตาราง | How many patients are not using Procrastin-X as medication?It is not neccessary to use all the tables. | stay: stayid [ number] patient [ number] room [ number] staystart [ time] stayend [ time] | SELECT COUNT(*) FROM patient WHERE NOT ssn IN (SELECT T1.patient FROM prescribes AS T1 JOIN medication AS T2 ON T1.medication = T2.code WHERE T2.name = 'Procrastin-X') | null | general |
ชื่ออะไรเปิดตัวเมื่อวันที่ 17 พฤศจิกายน พ.ศ. 2552 ในอัตราส่วนภาพ 169?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What title was release November 17, 2009 in a 169 aspect ratio?It is not neccessary to use all the tables. | table_8583: "Season" [ text] | SELECT "DVD title" FROM table_8583 WHERE "Aspect ratio" = '16:9' AND "Release date" = 'november 17, 2009' | null | general |
ผู้ป่วยหญิงมี SDH เป็นโรคหลักกี่คน?ไม่จำเป็นต้องใช้ตารางทั้งหมด | how many of the female patients had sdh as the primary disease?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.gender = "F" AND demographic.diagnosis = "SDH" | null | general |
ป้ายหมายเลขสำหรับผู้ใช้เฉพาะ..ไม่จำเป็นต้องใช้ทุกตาราง | Badge numbers for specific user..It is not neccessary to use all the tables. | ReviewTaskTypes: Id [ number] Name [ text] Description [ text] | SELECT b.UserId AS "user_link", b.Name, COUNT(b.Id) FROM Badges AS b GROUP BY b.UserId, b.Name ORDER BY COUNT(b.Id) DESC | null | general |
แสดงภาพแผนภูมิแท่งสำหรับชื่อและระดับของโครงสร้างแค็ตตาล็อกที่มีหมายเลขระดับระหว่าง 5 ถึง 10 โดยไม่จำเป็นต้องใช้ตารางทั้งหมด | Visualize a bar chart for what are the name and level of catalog structure with level number between 5 and 10It is not neccessary to use all the tables. | Catalogs: catalog_id [ INTEGER] catalog_name [ VARCHAR(50)] catalog_publisher [ VARCHAR(80)] date_of_publication [ DATETIME] date_of_latest_revision [ DATETIME] | SELECT catalog_level_name, catalog_level_number FROM Catalog_Structure WHERE catalog_level_number BETWEEN 5 AND 10 | null | general |
Brett Conrad และ Liz Sagal เขียนตัวเลขในฤดูกาลนี้กี่หมายเลข?ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many numbers in the season were written by Brett Conrad & Liz Sagal?It is not neccessary to use all the tables. | table_23858: "Title" [ text] "Directedby" [ text] "Writtenby" [ text] "Originalairdate" [ text] | SELECT COUNT("No. in season") FROM table_23858 WHERE "Writtenby" = 'Brett Conrad & Liz Sagal' | null | general |
บทลงโทษที่ใหญ่ที่สุดคืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | what is the largest penalty ?It is not neccessary to use all the tables. | table_204_664: id [ number] "rank" [ number] "bib" [ number] "name" [ text] "nationality" [ text] "start" [ text] "time" [ text] "deficit" [ text] | SELECT MAX("penalties (p+p+s+s)") FROM table_204_664 | null | general |
เพลงไหนคือเพลง Rip it Up สูงที่สุด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the highest track for the song Rip it Up?It is not neccessary to use all the tables. | table_54850: "Track" [ real] "Recorded" [ text] "Catalogue" [ text] "Time" [ text] | SELECT MAX("Track") FROM table_54850 WHERE "Song Title" = 'rip it up' | null | general |
ผู้ชนะไททันส์หรือคนบ้าระห่ำหรือไม่ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | did the titans or the daredevils winners ?It is not neccessary to use all the tables. | table_204_642: id [ number] "team" [ text] "position" [ text] "appearance" [ text] "qualified" [ text] | SELECT "team" FROM table_204_642 WHERE "team" IN ('titans', 'delhi daredevils') AND "position" = 'winners' | null | general |
นับจำนวนผู้ป่วยที่อายุน้อยกว่า 55 ปี และรหัสยาคือ syrg1 หรือไม่ไม่จำเป็นต้องใช้ทุกตาราง | count the number of patients whose age is less than 55 and drug code is syrg1?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.age < "55" AND prescriptions.formulary_drug_cd = "SYRG1" | null | general |
ฝ่ายตรงข้ามคนไหนมีคะแนน 3 6, 5 7 ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which Opponent has a Score of 3 6, 5 7?It is not neccessary to use all the tables. | table_38576: "Date" [ text] "Tournament" [ text] "Surface" [ text] "Opponent" [ text] "Score" [ text] | SELECT "Opponent" FROM table_38576 WHERE "Score" = '3–6, 5–7' | null | general |
ปีใดที่มีการเสนอชื่อเข้าชิง และผลการเสนอชื่อเข้าชิง?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What year has a Nominee of , and a Result of nominated?It is not neccessary to use all the tables. | table_66172: "Year" [ real] "Award" [ text] "Nominee" [ text] "Episode" [ text] "Result" [ text] | SELECT AVG("Year") FROM table_66172 WHERE "Nominee" = '—' AND "Result" = 'nominated' | null | general |
ทีมโรงเรียน/สโมสรใดที่มีรอบมากกว่า 3 และเป็นผู้เล่นของ sammy okpro?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Which School/Club Team has a Round larger than 3, and a Player of sammy okpro?It is not neccessary to use all the tables. | table_name_15: school_club_team [ VARCHAR] round [ VARCHAR] player [ VARCHAR] | SELECT school_club_team FROM table_name_15 WHERE round > 3 AND player = "sammy okpro" | null | general |
มหาวิทยาลัยเปิดสอนหลักสูตร MDE หรือ PreMajor สำหรับภาคเรียนฤดูร้อนหรือไม่ ?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Does the university offer MDE or PreMajor classes for the Summer term ?It is not neccessary to use all the tables. | course_offering: offering_id [ int] course_id [ int] semester [ int] section_number [ int] start_time [ time] end_time [ time] monday [ varchar] tuesday [ varchar] wednesday [ varchar] thursday [ varchar] friday [ varchar] saturday [ varchar] sunday [ varchar] has_final_project [ varchar] has_final_exam... | SELECT DISTINCT course.department, course.name, course.number, program_course.category FROM course, course_offering, program_course, semester WHERE course.course_id = course_offering.course_id AND program_course.category IN ('MDE', 'PreMajor') AND program_course.course_id = course.course_id AND semester.semester = 'Sum... | null | general |
คะแนนของ Partner Tomas Behrend ในรอบชิงชนะเลิศเป็นเท่าใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is Partner Tomas Behrend's Score in the final?It is not neccessary to use all the tables. | table_71913: "Tournament" [ text] "Surface" [ text] "Partner" [ text] | SELECT "Score in the final" FROM table_71913 WHERE "Partner" = 'tomas behrend' | null | general |
อะไรคือสถิติของเกมที่แพ้วิลเลียมส์ (3-1)?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What was the record for the game that had a loss of Williams (3-1)?It is not neccessary to use all the tables. | table_name_30: record [ VARCHAR] loss [ VARCHAR] | SELECT record FROM table_name_30 WHERE loss = "williams (3-1)" | null | general |
sigma phi omega เป็นองค์กรประเภทใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | what type of organization is sigma phi omega?It is not neccessary to use all the tables. | table_27627: "Letters" [ text] "Organization" [ text] "Nickname" [ text] "Type" [ text] | SELECT "Type" FROM table_27627 WHERE "Organization" = 'Sigma Phi Omega' | null | general |
ไดโตะตั้งอยู่ในจังหวัดใด?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | In what prefecture is Daito located?It is not neccessary to use all the tables. | table_27445: "Prefecture" [ text] "City/Town" [ text] | SELECT "Prefecture" FROM table_27445 WHERE "City/Town" = 'Daito' | null | general |
Michael I. Jordan มีเอกสารกี่ฉบับในปี 2559 ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many papers does Michael I. Jordan have in 2016 ?It is not neccessary to use all the tables. | dataset: datasetid [ int] datasetname [ varchar] | SELECT DISTINCT COUNT(writes.paperid) FROM author, paper, writes WHERE author.authorname = 'Michael I. Jordan' AND paper.year = 2016 AND writes.authorid = author.authorid AND writes.paperid = paper.paperid | null | general |
จำนวนคนอเมริกันพื้นเมืองที่มีคนผิวขาวเป็น 1.0%ไม่จำเป็นต้องใช้ตารางทั้งหมด | how many native american with whites being 1.0%It is not neccessary to use all the tables. | table_18064: "Country" [ text] "Population" [ real] "Whites" [ text] "Blacks" [ text] "Asians" [ text] | SELECT COUNT("Native American") FROM table_18064 WHERE "Whites" = '1.0%' | null | general |
การทดสอบในห้องปฏิบัติการที่ได้รับคำสั่งบ่อยที่สุดสี่รายการสำหรับผู้ป่วยที่เคยได้รับคำแนะนำ CV cath plcmt w ในเดือนเดียวกันจนถึงปี 2104 คืออะไร? ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | what were the four most frequently ordered lab tests for patients who had previously received cv cath plcmt w guidance in the same month, until 2104?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 d_labitems.label FROM d_labitems WHERE d_labitems.itemid IN (SELECT t3.itemid FROM (SELECT t2.itemid, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, procedures_icd.charttime FROM procedures_icd JOIN admissions ON procedures_icd.hadm_id = admissions.hadm_id WHERE procedures_i... | null | general |
จะมีการระบุไว้ทั้งหมดกี่ครั้งเมื่อผู้เล่นคือ Jay Washington?ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many times is a total listed when the player is Jay Washington?It is not neccessary to use all the tables. | table_4072: "Category" [ text] "Player" [ text] "Team" [ text] "Totals" [ text] "Average" [ text] | SELECT COUNT("Totals") FROM table_4072 WHERE "Player" = 'Jay Washington' | null | general |
เมื่อ 102 mpg-e (33kw-hrs/100mi) ได้รับการให้คะแนนการประหยัดเชื้อเพลิงแบบรวมของ epa ว่าเป็นรถประเภทใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | When 102 mpg-e (33kw-hrs/100mi) is the epa rated combined fuel economy what is the vehicle type?It is not neccessary to use all the tables. | table_27010: "Vehicle" [ text] | SELECT "Vehicle" FROM table_27010 WHERE "EPA rated combined fuel economy" = '102 mpg-e (33kW-hrs/100mi)' | null | general |
ให้จำนวนผู้ป่วยโรคหลักคือโรคหลอดเลือดหัวใจ/หลอดเลือดหัวใจตีบ/sda และอายุต่ำกว่า 89 ปี ไม่จำเป็นต้องใช้ทุกตาราง | give the number of patients whose primary disease is coronary artery disease/coronary artery bypass graft/sda and who were aged below 89 years.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.diagnosis = "CORONARY ARTERY DISEASE\CORONARY ARTERY BYPASS GRAFT /SDA" AND demographic.age < "89" | null | general |
ประเทศใดที่มีการนับเหรียญทองแดงสูงสุด มีโลหะเงินมากกว่า 1 ชิ้น และน้อยกว่าอันดับที่ 1?ไม่จำเป็นต้องใช้ตารางทั้งหมด | WHAT COUNTRY HAS THE HIGHEST BRONZE COUNT, MORE THAN 1 SILVER METAL, AND LESS THAN 1ST PLACE?It is not neccessary to use all the tables. | table_name_46: bronze [ INTEGER] silver [ VARCHAR] rank [ VARCHAR] | SELECT MAX(bronze) FROM table_name_46 WHERE silver > 1 AND rank > 1 | null | general |
พวกเขาเล่นเกมทั้งหมดกี่เกมในปี 1905?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | How many games did they play in 1905?It is not neccessary to use all the tables. | table_68655: "Stadium" [ text] "Years" [ text] "Played" [ real] "Wins" [ real] "Losses" [ real] "Draw" [ text] | SELECT AVG("Played") FROM table_68655 WHERE "Years" = '1905' | null | general |
ตั้งชื่อเสาส่วนใหญ่สำหรับมาเก๊ากรังด์ปรีซ์ไม่จำเป็นต้องใช้ตารางทั้งหมด | Name th most poles for macau grand prixIt is not neccessary to use all the tables. | table_24466191_1: poles [ INTEGER] series [ VARCHAR] | SELECT MAX(poles) FROM table_24466191_1 WHERE series = "Macau Grand Prix" | null | general |
แสดงความสัมพันธ์ระหว่างรหัสบัญชีและชื่อบัญชีสำหรับบัญชีทั้งหมดโดยลูกค้าที่มีชื่อ 'Meaghan' ในแผนภูมิกระจาย ไม่จำเป็นต้องใช้ตารางทั้งหมด | Show the relationship between accout id and account name for all accounts by the customer with first name 'Meaghan' in a scatter chart.It is not neccessary to use all the tables. | Financial_Transactions: transaction_id [ INTEGER] account_id [ INTEGER] invoice_number [ INTEGER] transaction_type [ VARCHAR(15)] transaction_date [ DATETIME] transaction_amount [ DECIMAL(194)] transaction_comment [ VARCHAR(255)] other_transaction_details [ VARCHAR(255)] | SELECT account_id, account_name FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = 'Meaghan' | null | general |
กีฬาฤดูหนาวมีทัวร์นาเมนต์แรกกี่รายการที่มี 1 ดิวิชั่นพอดี?ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many first tournaments were winter sports with exactly 1 division?It is not neccessary to use all the tables. | table_30537: "Season" [ text] "Sport" [ text] | SELECT COUNT("1st Tournament") FROM table_30537 WHERE "Season" = 'Winter' AND "# of Divisions" = '1' | null | general |
ค้นหารายชื่อนักเรียนทุกคนที่เรียนหลักสูตรใดวิชาหนึ่งแล้วได้ A หรือ C ไม่จำเป็นต้องใช้ตารางทั้งหมด | Find names of all students who took some course and got A or C.It is not neccessary to use all the tables. | course: crs_code [ text] dept_code [ text] crs_description [ text] crs_credit [ number] | SELECT T1.stu_fname, T1.stu_lname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE T2.enroll_grade = 'C' OR T2.enroll_grade = 'A' | null | general |
ซึ่งเป็นรายการโทรทัศน์รายการเดียวที่ gauri นำแสดงโดย ซึ่งเธอเล่นเอง ?ไม่จำเป็นต้องใช้โต๊ะทั้งหมดเลย | which was the only television show gauri starred in , in which she played herself ?It is not neccessary to use all the tables. | table_203_485: id [ number] "year" [ text] "show" [ text] "role" [ text] "notes" [ text] | SELECT "show" FROM table_203_485 WHERE "role" = 'herself' | null | general |
ความฝันของฤดูใบไม้ผลิมีกี่หน้า?ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many pages does a dream of spring have?It is not neccessary to use all the tables. | table_79869: "Title" [ text] "Pages" [ text] "Chapters" [ text] "Audio" [ text] | SELECT "Pages" FROM table_79869 WHERE "Title" = 'a dream of spring' | null | general |
จนถึง 35 เดือนที่ผ่านมา sao2 ของผู้ป่วย 22295 เป็นปกติหรือไม่?ไม่จำเป็นต้องใช้ตารางทั้งหมด | until 35 months ago has patient 22295's sao2 been normal?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 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 = 22295)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'sao2' AND d_items... | null | general |
การทดสอบในห้องปฏิบัติการสามครั้งที่พบบ่อยที่สุดเมื่อ 2 ปีที่แล้วสำหรับผู้ป่วยอายุ 40 ปีคืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | what was the three most frequently taken lab test until 2 years ago for patients with an age 40s?It is not neccessary to use all the tables. | procedures_icd: row_id [ number] subject_id [ number] hadm_id [ number] icd9_code [ text] charttime [ time] | SELECT d_labitems.label FROM d_labitems WHERE d_labitems.itemid IN (SELECT t1.itemid FROM (SELECT labevents.itemid, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.age BETWEEN 40 AND 49) AND DATETIME(labevents.chartti... | null | general |
จัดทำรายชื่อผู้ป่วยอายุต่ำกว่า 85 ปี ที่มีโรคปอดบวมเป็นโรคหลัก ไม่จำเป็นต้องใช้ตารางทั้งหมด | Provide the list of patients under 85 years who are suffering from pneumonia as their primary disease.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.diagnosis = "PNEUMONIA" AND demographic.age < "85" | null | general |
COSPAR ID ของ Ariel 3 คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is Ariel 3's COSPAR ID?It is not neccessary to use all the tables. | table_name_3: cospar_id [ VARCHAR] satellite [ VARCHAR] | SELECT cospar_id FROM table_name_3 WHERE satellite = "ariel 3" | null | general |
คะแนนเฉลี่ยต่อแท็ก (นับ) ไม่จำเป็นต้องใช้ตารางทั้งหมด | Average Score Per Tag (with count).It is not neccessary to use all the tables. | ReviewRejectionReasons: Id [ number] Name [ text] Description [ text] PostTypeId [ number] | SELECT TagName, AVG(Score) AS Score, COUNT(Posts.Id) AS Number FROM Posts INNER JOIN PostTags ON PostTags.PostId = Posts.Id INNER JOIN Tags ON Tags.Id = PostTags.TagId GROUP BY TagName ORDER BY COUNT(Posts.Id) DESC, AVG(Score) DESC, TagName | null | general |
การแข่งขันคืออะไรหลังจากปี 2009?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What tournament was after 2009?It is not neccessary to use all the tables. | table_71139: "Year" [ real] "Tournament" [ text] "Venue" [ text] "Result" [ text] "Event" [ text] | SELECT "Tournament" FROM table_71139 WHERE "Year" > '2009' | null | general |
ทีมไหนมีสิทธิ์เลือกอันดับ 64?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which team has the # 64 pick?It is not neccessary to use all the tables. | table_name_13: college_junior_club_team [ VARCHAR] pick__number [ VARCHAR] | SELECT college_junior_club_team FROM table_name_13 WHERE pick__number = "64" | null | general |
หมายเลขรุ่น CORE I7-940 จะวางจำหน่ายเมื่อใด?ไม่จำเป็นต้องใช้ทุกตาราง | What's the release date of model number CORE I7-940?It is not neccessary to use all the tables. | table_63642: "Frequency" [ text] "Turbo" [ text] "Cores" [ real] "Mult." [ text] "Memory" [ text] "Voltage" [ text] "Socket" [ text] | SELECT "Release date" FROM table_63642 WHERE "Model number" = 'core i7-940' | null | general |
สำหรับพนักงานที่ไม่ได้ทำงานในแผนกที่มีผู้จัดการที่มีรหัสระหว่าง 100 ถึง 200 ให้วาดแผนภูมิแท่งเกี่ยวกับการแจกแจง phone_number และ Employee_id และโปรดระบุ X ตามลำดับ โดยไม่จำเป็นต้องใช้ตารางทั้งหมด | For those employees who do not work in departments with managers that have ids between 100 and 200, draw a bar chart about the distribution of phone_number and employee_id , and list X in desc order please.It is not neccessary to use all the tables. | departments: DEPARTMENT_ID [ decimal(40)] DEPARTMENT_NAME [ varchar(30)] MANAGER_ID [ decimal(60)] LOCATION_ID [ decimal(40)] | SELECT PHONE_NUMBER, EMPLOYEE_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY PHONE_NUMBER DESC | null | general |
หมายเลขเลือกสูงสุดสำหรับผู้เล่น don barber คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the highest pick number for player don barber?It is not neccessary to use all the tables. | table_2679061_6: pick__number [ INTEGER] player [ VARCHAR] | SELECT MAX(pick__number) FROM table_2679061_6 WHERE player = "Don Barber" | null | general |
นักเขียนคำตอบ Java Java อันดับต้น ๆ ของฟินแลนด์ ไม่จำเป็นต้องใช้ตารางทั้งหมด | Top Finland Java Answers writers.It is not neccessary to use all the tables. | ReviewTaskTypes: Id [ number] Name [ text] Description [ text] | SELECT u.DisplayName, u.Reputation, COUNT(*) AS ClojureAnswers FROM Users AS u, Posts AS p, Posts AS pp WHERE u.Id IN (SELECT Id FROM Users WHERE Location LIKE ('%Finland')) AND p.OwnerUserId = u.Id AND pp.Id = p.ParentId AND pp.Tags LIKE ('%<clojure>%') GROUP BY u.DisplayName, u.Reputation ORDER BY ClojureAnswers DESC | null | general |
ขอแผนภูมิวงกลมที่แสดงสัดส่วนของชั้นเรือที่ไม่มีกัปตันให้ฉันหน่อย ไม่จำเป็นต้องใช้ตารางทั้งหมด | Give me a pie chart showing the proportion of ships' classes that do not have a captain.It is not neccessary to use all the tables. | Ship: Ship_ID [ int] Name [ text] Type [ text] Built_Year [ real] Class [ text] Flag [ text] | SELECT Class, COUNT(Class) FROM Ship WHERE NOT Ship_ID IN (SELECT Ship_ID FROM captain) GROUP BY Class | null | general |
ใครกำลังขับรถด้วยตาราง 13?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Who was driving with a Grid of 13?It is not neccessary to use all the tables. | table_53342: "Driver" [ text] "Constructor" [ text] "Laps" [ real] "Time/Retired" [ text] "Grid" [ real] | SELECT "Driver" FROM table_53342 WHERE "Grid" = '13' | null | general |
สำหรับพนักงานทุกคนที่มีตัวอักษร D หรือ S ในชื่อ แผนภูมิแท่งจะแสดงการกระจายของ Hire_date และจำนวน Hire_date bin Hire_date ตามเวลา ไม่จำเป็นต้องใช้ตารางทั้งหมด | For all employees who have the letters D or S in their first name, a bar chart shows the distribution of hire_date and the amount of hire_date bin hire_date by time.It is not neccessary to use all the tables. | countries: COUNTRY_ID [ varchar(2)] COUNTRY_NAME [ varchar(40)] REGION_ID [ decimal(100)] | SELECT HIRE_DATE, COUNT(HIRE_DATE) FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' | null | general |
ใครคือบุคคลที่อายุมากที่สุด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Who is the oldest person?It is not neccessary to use all the tables. | person: name [ VARCHAR] age [ INTEGER] | SELECT name FROM Person WHERE age = (SELECT MAX(age) FROM Person) | null | general |
รหัสสถานที่ของประเทศ 'แคนาดา' คืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the location code for the country 'Canada'?It is not neccessary to use all the tables. | Ref_locations: location_code [ VARCHAR] location_name [ VARCHAR] | SELECT location_code FROM Ref_locations WHERE location_name = "Canada" | null | general |
Sanford Bishop เป็นสมาชิกพรรคใด?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | What party is Sanford Bishop a member of?It is not neccessary to use all the tables. | table_1341522_13: party [ VARCHAR] incumbent [ VARCHAR] | SELECT party FROM table_1341522_13 WHERE incumbent = "Sanford Bishop" | null | general |
มีชั้นเรียนวันศุกร์สำหรับหลักสูตร 464 ของ Prof. Ian Fulcher หรือไม่ ไม่จำเป็นต้องใช้ตารางทั้งหมด | Are there Friday classes for Prof. Ian Fulcher 's 464 course ?It is not neccessary to use all the tables. | program_course: program_id [ int] course_id [ int] workload [ int] category [ varchar] | SELECT COUNT(*) = 0 FROM course INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN offering_instructor ON offering_instructor.offering_id = course_offering.offering_id INNER JOIN instructor ON offering_instructor.instructor_id = instructor.instructor_id WHERE course.number = 464 AND c... | null | general |
ผลลัพธ์จะเป็นเช่นไรหาก Coba เป็นตัวเลือกเพลง?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the result if Coba is the song choice?It is not neccessary to use all the tables. | table_22736523_1: result [ VARCHAR] song_choice [ VARCHAR] | SELECT result FROM table_22736523_1 WHERE song_choice = "Coba" | null | general |
เกมปีใดที่จบลงด้วยสกอร์ 24-14?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What year was the game that ended with a score of 24-14?It is not neccessary to use all the tables. | table_name_22: year [ INTEGER] result [ VARCHAR] | SELECT AVG(year) FROM table_name_22 WHERE result = "24-14" | null | general |
ส่งกลับแผนภูมิแท่งเกี่ยวกับการแจกแจงของเวลาและรหัส ไม่จำเป็นต้องใช้ตารางทั้งหมด | Return a bar chart about the distribution of Time and ID .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 Time, ID FROM swimmer | null | general |
นับจำนวนผู้ป่วยที่มีเชื้อชาติเป็นคนผิวดำ/เคปเวิร์ด และรหัสขั้นตอนการรักษา icd9 คือ 3806 หรือไม่ไม่จำเป็นต้องใช้ตารางทั้งหมด | count the number of patients whose ethnicity is black/cape verdean and procedure icd9 code is 3806?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 procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.ethnicity = "BLACK/CAPE VERDEAN" AND procedures.icd9_code = "3806" | null | general |
แต่ละประเภทมีภาพยนตร์กี่เรื่อง? ส่งกลับแผนภูมิแท่ง และเรียงลำดับ Y ตามลำดับจากน้อยไปมาก ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many films for each type? Return a bar chart, and sort Y in ascending order.It is not neccessary to use all the tables. | market: Market_ID [ int] Country [ text] Number_cities [ int] | SELECT Type, COUNT(Type) FROM film AS T1 JOIN film_market_estimation AS T2 ON T1.Film_ID = T2.Film_ID GROUP BY Type ORDER BY COUNT(Type) | null | general |
ชื่อและเกรดเฉลี่ยของภาควิชาที่นักเรียนมีเกรดเฉลี่ยสูงสุดคืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the name and the average gpa of department whose students have the highest average gpa?It is not neccessary to use all the tables. | department: dept_name [ VARCHAR] dept_code [ VARCHAR] | SELECT T2.dept_name, AVG(T1.stu_gpa) FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY AVG(T1.stu_gpa) DESC LIMIT 1 | null | general |
มีผู้ป่วยชาวยิวกี่รายที่ได้รับการทดสอบในห้องปฏิบัติการชื่อโมโนไซต์?ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many jewish patients had a lab test named monocytes?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.religion = "JEWISH" AND lab.label = "Monocytes" | null | general |
แสดงจำนวนผู้ป่วยหญิงที่ได้รับคำสั่งทดสอบเซลล์เม็ดเลือดแดงในห้องปฏิบัติการ ไม่จำเป็นต้องใช้ตารางทั้งหมด | show me the number of female patients for whom nucleated red cells lab test order was placed.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 lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.gender = "F" AND lab.label = "Nucleated Red Cells" | null | general |
ใครมีสถิติมากที่สุด ?ไม่จำเป็นต้องใช้ตารางทั้งหมด | who has held the most records ?It is not neccessary to use all the tables. | table_204_550: id [ number] "event" [ text] "record" [ text] "athlete" [ text] "date" [ text] "meet" [ text] "place" [ text] | SELECT "athlete" FROM table_204_550 GROUP BY "athlete" ORDER BY COUNT(*) DESC LIMIT 1 | null | general |
ผู้ป่วยที่รักษาตัวในโรงพยาบาลเกิน 16 วัน และวินิจฉัยว่ารหัส icd9 คือ 5781 มีจำนวนเท่าใด ไม่จำเป็นต้องใช้ตารางทั้งหมด | what is the number of patients whose days of hospital stay is greater than 16 and diagnoses icd9 code is 5781?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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.days_stay > "16" AND diagnoses.icd9_code = "5781" | null | general |
โรงเรียน American Southwest Conference แห่งใดก่อตั้งขึ้นเมื่อปี 1883? ไม่จำเป็นที่จะต้องใช้โต๊ะทั้งหมด | What American Southwest Conference school was founded in 1883?It is not neccessary to use all the tables. | table_name_87: institution [ VARCHAR] founded [ VARCHAR] current_conference [ VARCHAR] | SELECT institution FROM table_name_87 WHERE founded > 1883 AND current_conference = "american southwest" | null | general |
แสดงช่วงราคาเฉลี่ยของโรงแรมที่มีระดับ 5 ดาวและอนุญาตให้นำสัตว์เลี้ยงเข้าได้ ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Show the average price range of hotels that have 5 star ratings and allow pets.It is not neccessary to use all the tables. | tourist_attraction_features: tourist_attraction_id [ number] feature_id [ number] | SELECT AVG(price_range) FROM hotels WHERE star_rating_code = "5" AND pets_allowed_yn = 1 | null | general |
มีการแข่งขันกี่รายการเมื่อ Sigachev มี 38 คะแนน?ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many races were there when Sigachev had 38 points?It is not neccessary to use all the tables. | table_25421463_1: races [ INTEGER] points [ VARCHAR] | SELECT MIN(races) FROM table_25421463_1 WHERE points = "38" | null | general |
ค่าสูงสุดสำหรับ col(m) เมื่อ prominence(m) คือ 3755 คืออะไร ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the highest value for col(m) when prominence(m) is 3755?It is not neccessary to use all the tables. | table_18946749_4: col__m_ [ INTEGER] prominence__m_ [ VARCHAR] | SELECT MAX(col__m_) FROM table_18946749_4 WHERE prominence__m_ = 3755 | null | general |
แสดงผู้ได้รับการเสนอชื่อที่แตกต่างกันและจำนวนละครเพลงที่พวกเขาได้รับการเสนอชื่อ พล็อตเป็นแผนภูมิแท่ง และคุณสามารถเรียงลำดับจำนวนทั้งหมดตามลำดับได้หรือไม่ ไม่จำเป็นต้องใช้ตารางทั้งหมด | Show different nominees and the number of musicals they have been nominated Plot them as bar chart, and could you order the total number in desc order?It is not neccessary to use all the tables. | actor: Actor_ID [ int] Name [ text] Musical_ID [ int] Character [ text] Duration [ text] age [ int] | SELECT Nominee, COUNT(*) FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC | null | general |
ตำแหน่งที่ Scott Junk เป็นฝ่ายตรงข้ามอยู่ที่ไหน? ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Where is the location where Scott Junk was the opponent?It is not neccessary to use all the tables. | table_name_89: location [ VARCHAR] opponent [ VARCHAR] | SELECT location FROM table_name_89 WHERE opponent = "scott junk" | null | general |
นักเรียนที่ลงทะเบียนเรียนในชั้นเรียน ACCT-211 และได้เกรด C ชื่ออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the first name of students enrolled in class ACCT-211 and got grade C?It is not neccessary to use all the tables. | course: crs_code [ text] dept_code [ text] crs_description [ text] crs_credit [ number] | SELECT T3.stu_fname FROM class AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211' AND T2.enroll_grade = 'C' | null | general |
ทั้งสองทีมที่ลงแข่งในปี 2554 คือ คาร์ลิน มอเตอร์สปอร์ต และทีมอื่น ?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | the two teams who raced in 2011 are carlin motorsport and what other team ?It is not neccessary to use all the tables. | table_204_722: id [ number] "season" [ text] "series" [ text] "team" [ text] "races" [ number] "wins" [ number] "poles" [ number] "f/lap" [ number] "podiums" [ number] "points" [ number] "position" [ text] | SELECT "team" FROM table_204_722 WHERE "team" <> 'carlin motorsport' AND "season" = 2011 | null | general |
ซีรีส์ใดเกิดขึ้นที่ผู้เข้ารอบรองชนะเลิศได้รองชนะเลิศ และ 7800.00 เป็น 6420.00?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which series occurred in which the semi-finalist was runner-up and the 7800.00 was 6420.00?It is not neccessary to use all the tables. | table_27681: "22/06/2008" [ text] "S.Series" [ text] "7800.00" [ text] "Runner-Up" [ text] | SELECT "Indonesia Super Series 2008" FROM table_27681 WHERE "Runner-Up" = 'Semi-Finalist' AND "7800.00" = '6420.00' | null | general |
คำถามระบุสถานะตามเวลา (เปอร์เซ็นต์) ไม่จำเป็นต้องใช้ตารางทั้งหมด | Question States over Time (Percent).It is not neccessary to use all the tables. | Votes: Id [ number] PostId [ number] VoteTypeId [ number] UserId [ number] CreationDate [ time] BountyAmount [ number] | WITH Batches AS (SELECT DATEADD(mm, DATEPART(mm, Post.CreationDate) - 1, DATEADD(yy, DATEPART(yyyy, Post.CreationDate) - 1900, 0)) AS "date", COUNT(*) AS Total, SUM(CASE WHEN NOT Post.LastEditorUserId IS NULL THEN 1 ELSE 0 END) AS "edited" FROM Posts AS Post GROUP BY DATEPART(yyyy, Post.CreationDate), DATEPART(mm, Post... | null | general |
แคตตาล็อกคืออะไร เมื่อภูมิภาคเป็นสหราชอาณาจักร และเมื่อ Label เป็น Razor Records ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is Catalog, when the Region is UK, and when Label is Razor Records?It is not neccessary to use all the tables. | table_42770: "Region" [ text] "Date" [ real] "Label" [ text] "Format" [ text] "Catalog" [ text] | SELECT "Catalog" FROM table_42770 WHERE "Region" = 'uk' AND "Label" = 'razor records' | null | general |
แสดงแผนภูมิแท่งสำหรับชื่อเครื่องบินแต่ละลำ และแต่ละเที่ยวบินเสร็จสิ้นไปกี่เที่ยวบิน แล้วคุณช่วยจัดเรียงตามแกน x ตามลำดับได้ไหม ไม่จำเป็นต้องใช้ตารางทั้งหมด | Display a bar chart for what is the name of each aircraft and how many flights does each one complete?, and could you sort by the x axis in desc?It is not neccessary to use all the tables. | certificate: eid [ number(90)] aid [ number(90)] | SELECT name, COUNT(*) FROM flight AS T1 JOIN aircraft AS T2 ON T1.aid = T2.aid GROUP BY T1.aid ORDER BY name DESC | null | general |
ผู้เข้าร่วมในวันที่ 6 พฤศจิกายน พ.ศ. 2503 เป็นเท่าใด ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | What was the Attendance on November 6, 1960?It is not neccessary to use all the tables. | table_8315: "Week" [ real] "Date" [ text] "Opponent" [ text] "Result" [ text] "Attendance" [ text] | SELECT "Attendance" FROM table_8315 WHERE "Date" = 'november 6, 1960' | null | general |
Tournament คืออะไร เมื่อปี 2001 เป็น '1R'?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is Tournament, when 2001 is '1R'?It is not neccessary to use all the tables. | table_50644: "Tournament" [ text] "2000" [ text] "2001" [ text] "2002" [ text] "2003" [ text] "2004" [ text] "2005" [ text] | SELECT "Tournament" FROM table_50644 WHERE "2001" = '1r' | null | general |
กราฟแท่งเพื่อแสดงจำนวนปีจากปีที่แตกต่างกัน ไม่จำเป็นต้องใช้ตารางทั้งหมด | Bar graph to show how many yearid from different yearidIt is not neccessary to use all the tables. | team_franchise: franchise_id [ TEXT] franchise_name [ TEXT] active [ TEXT] na_assoc [ TEXT] | SELECT yearid, COUNT(yearid) FROM hall_of_fame | null | general |
ลูกค้าแต่ละรายจองไว้กี่ราย? แสดงรหัสลูกค้าเป็นแกน Y และชื่อเป็นแกน X ในแผนภูมิแท่ง และจัดอันดับตาม customer_id ใน asc ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many bookings did each customer make? Show the customer id as the Y-axis and the first name as the X-axis in a bar chart, and rank by the customer_id in asc.It is not neccessary to use all the tables. | Customers: customer_id [ INTEGER] coupon_id [ INTEGER] good_or_bad_customer [ VARCHAR(4)] first_name [ VARCHAR(80)] last_name [ VARCHAR(80)] gender_mf [ VARCHAR(1)] date_became_customer [ DATETIME] date_last_hire [ DATETIME] | SELECT T1.first_name, T1.customer_id FROM Customers AS T1 JOIN Bookings AS T2 ON T1.customer_id = T2.customer_id ORDER BY T1.customer_id | null | general |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.