input
stringclasses
87 values
instruction
stringlengths
0
626
output
stringlengths
1
794
อากิเลส โฮเซ กุซมัน มาตูเตเกิดวันที่เท่าไหร่
เกิดเมื่อ 13 เมษายน พ.ศ. 2508
องค์ชายโซฮยอนได้ทรงเข้าพิธีอภิเษกสมรสกับใคร
ป้อมนัมฮัน
CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, admission_type text, admission_location text, discharge_location text, insurance text, language text, marital_status text, ethnicity text, age number )
ผู้ป่วย 28910 มาโรงพยาบาลกี่ครั้งตั้งแต่ปี 2557 เป็นต้นมา
SELECT COUNT(DISTINCT admissions.hadm_id) FROM admissions WHERE admissions.subject_id = 28910 AND STRFTIME('%y', admissions.admittime) >= '2104'
CREATE TABLE Comments ( Id number, PostId number, Score number, Text text, CreationDate time, UserDisplayName text, UserId number, ContentLicense text )
ค้นหาคำขอบคุณง่าย ๆ (น้อยกว่า 50 ตัวอักษร)
SELECT c.Id AS "comment_link", c.Text AS "comment_body", (SELECT COUNT(c.Id) AS "comment_link" FROM Comments AS c WHERE (c.Text LIKE '%fack%' OR c.Text LIKE '%fck%') AND LENGTH(c.Text) < 50) AS "total_comments" FROM Comments AS c WHERE (c.Text LIKE '%fu%' OR c.Text LIKE '%fuu%') AND LENGTH(c.Text) < 50 ORDER BY c.CreationDate DESC
สถานที่เกิดของเนาวรัตน์ พงษ์ไพบูลย์
บ้านพนมทวน อำเภอพนมทวน จังหวัดกาญจนบุรี
สะพานขึงข้ามแม่น้ำแดง ตั้งอยู่ที่ฮานอยมีชื่อเรียกว่าสะพานอะไร
สะพานเหญิตเติน
โฮลดิงได้สวมเสื้อหมายเลข 16 ที่เดิมเคยเป็นของใคร
แอรอน แรมซีย์
อันตรกิริยาอย่างอ่อน เรียกอีกอย่างว่าอะไร
แรงนิวเคลียร์อย่างอ่อน
ผู้อำนวยการกองประกวดมิสฟรานซ์คนปัจจุบันคือใคร
ซิลวี เทลเลีย
พิพิธภัณฑ์ปราโด ตั้งอยู่ที่ใด
ที่กรุงมาดริด ประเทศสเปน
CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, admission_type text, admission_location text, discharge_location text, insurance text, language text, marital_status text, ethnicity text, age number )
ผู้ป่วย 71320 เข้ารับการรักษาในโรงพยาบาลครั้งแรกตั้งแต่ปี 2103 ใช่ไหม
SELECT admissions.admittime FROM admissions WHERE admissions.subject_id = 71320 AND STRFTIME('%y', admissions.admittime) >= '2103' ORDER BY admissions.admittime LIMIT 1
อะโลน ร้องโดยวงอะไร
วงฮาร์ต
CREATE TABLE Products ( Product_ID VARCHAR(100), Product_Name VARCHAR(255), Product_Price DECIMAL(20,4), Product_Description VARCHAR(255), Other_Product_Service_Details VARCHAR(255) )
กราฟแท่งเกี่ยวกับชื่อสินค้าต่างๆ มีอะไรบ้าง? ราคาสินค้าเฉลี่ยสำหรับแต่ละประเภทคือเท่าไหร่? จัดเรียง X จากต่ำไปสูง
SELECT Product_Name, AVG(Product_Price) FROM Products GROUP BY Product_Name ORDER BY Product_Name
CREATE TABLE Products ( product_id INTEGER, product_type_code VARCHAR(10), product_name VARCHAR(80), product_price DECIMAL(19,4) )
ราคาเฉลี่ยในแต่ละประเภทของผลิตภัณฑ์มีเท่าไหร่ ฉันต้องการให้แสดงตามแกน x จากมากไปน้อย
SELECT product_type_code, AVG(product_price) FROM Products GROUP BY product_type_code ORDER BY product_type_code DESC
พระธรรมมหาวีรานุวัตร หรืออีกชื่อหนึ่งว่าอะไร
อำนวย จนฺทสโร ป.ธ.๔
สมาธิคืออะไร
การฝึกฝนทางจิตหลากหลายรูปแบบ
CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text )
ดูสถิติในคำถามของคุณ จำนวนวิวต่อวันของคำถาม และยอดวิวทั้งหมด เรียงลำดับจากอัตราการรับชมสูงสุดไปยังต่ำสุด
SELECT ViewCount, ROUND(CAST(ViewCount AS FLOAT) / DATEDIFF(dd, CreationDate, GETDATE()), 1) AS ViewsPerDay, Id AS "post_link" FROM Posts WHERE PostTypeId = 1 AND OwnerUserId = '##UserId##' ORDER BY ViewCount DESC
เจ้าชายอาดัลแบร์ทแห่งปรัสเซีย เป็นโอรสคนที่เท่าไร
องค์ที่สาม
CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, admission_type text, admission_location text, discharge_location text, insurance text, language text, marital_status text, ethnicity text, age number )
มีผู้ป่วยปัจจุบันอยู่กี่คนแล้ว
SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE admissions.dischtime IS NULL
CREATE TABLE treatment ( treatmentid number, patientunitstayid number, treatmentname text, treatmenttime time )
มีการทำหัตถการ vasopressors - dopamine 5-15 micrograms/kg/min กี่ครั้ง
SELECT COUNT(*) FROM treatment WHERE treatment.treatmentname = 'vasopressors - dopamine 5-15 micrograms/kg/min'
พิพิธบางลำพู คืออะไร
ศูนย์การเรียนรู้เชิงวัฒนธรรมชุมชน
ยาคอฟ ดซูกัสวิลี เป็นหนึ่งในสามบุตรธิดาของใคร
โจเซฟ สตาลิน
CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text )
ELECT * จากโพสต์ที่มี ID ต่ำกว่า 50000
SELECT * FROM Posts WHERE Id > 50000 AND Id < 10000
จังหวัดโทยามะตั้งอยู้ที่ใด
บริเวณภาคชูบุของญี่ปุ่น
พระเจ้าชัยวรรมันที่ 1 สิ้นพระชนม์เมื่อไหน
ค.ศ. 681
ปลาฉลามหัวค้อนเป็นปลาทะเลที่จัดอยู่ในวงศ์ใด
วงศ์ Sphyrnidae
CREATE TABLE patient ( uniquepid text, patienthealthsystemstayid number, patientunitstayid number, gender text, age text, ethnicity text, hospitalid number, wardid number, admissionheight number, admissionweight number, dischargeweight number, hospitaladmittime time, hospitaladmitsource text, unitadmittime time, unitdischargetime time, hospitaldischargetime time, hospitaldischargestatus text )
เมื่อ 06/2103 คนไข้หมายเลข 011-23004 มีน้ำหนักครั้งแรกเท่าไร
SELECT patient.admissionweight FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '011-23004') AND NOT patient.admissionweight IS NULL AND STRFTIME('%y-%m', patient.unitadmittime) = '2103-06' ORDER BY patient.unitadmittime LIMIT 1
นาถยา แดงบุหงา มีพี่น้องกี่คน
9 คน
เรือพายในกีฬาแห่งชาติครั้งที่ 41 แข่งขันกี่เมตร
1000 เมตร
กุ้งยิงมีอาการอย่างไร
อาการบวม แดง ร้อน และอาจมีอาการปวด แต่ไม่เป็นอันตรายต่อนัยน์ตา
ใครรับบทเป็น ดร. อเล็กซานเดอร์ ไอเซก
เอียน เกล็น
CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text )
โพสต์ทั้งหมดของฉันตั้งแต่ปี 2016
SELECT COUNT(*) FROM Posts WHERE Posts.OwnerUserId = 263693 AND TIME_TO_STR(CreationDate, '%YEAR') = 2016
CREATE TABLE patient ( uniquepid text, patienthealthsystemstayid number, patientunitstayid number, gender text, age text, ethnicity text, hospitalid number, wardid number, admissionheight number, admissionweight number, dischargeweight number, hospitaladmittime time, hospitaladmitsource text, unitadmittime time, unitdischargetime time, hospitaldischargetime time, hospitaldischargestatus text )
ระยะเวลาทำงานของผู้ป่วย 033-22108 นับตั้งแต่วันเข้า ICU กี่วันแล้ว
SELECT 1 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', patient.unitadmittime)) FROM patient WHERE patient.uniquepid = '033-22108' AND patient.unitdischargetime IS NULL
CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text )
ค้นหาคำถามที่มีตัวอักษรตัวแรกของหัวข้อเป็นตัวพิมพ์เล็ก
SELECT Title, CONCAT('https://electronics.stackexchange.com/questions/', CAST(Id AS TEXT), '/') AS URL FROM Posts WHERE PostTypeId = 1 AND LEFT(Title, 1) = LOWER(LEFT(Title, 1)) ORDER BY CreationDate DESC
ว็อล์ฟกัง เพาล์ เกิดที่เมืองอะไร
เมืองโลเร็นทซ์เคียร์ชในแซกโซนี
ใครเป็นประกาศจัดตั้งองค์การบริหารส่วนตำบลโพนโกอย่างเป็นทางการ
นายบรรหาร ศิลปอาชา
ปาโก เฆนโต ชื่อเต็มว่าอะไร
ฟรันซิสโก "ปาโก" เฆนโต โลเปซ
CREATE TABLE invoices ( id INTEGER, customer_id INTEGER, invoice_date TIMESTAMP, billing_address VARCHAR(70), billing_city VARCHAR(40), billing_state VARCHAR(40), billing_country VARCHAR(40), billing_postal_code VARCHAR(10), total NUMERIC(10,2) )
แสดงให้ฉันดูในรูปแบบแผนภูมิแท่งว่ามีการจ่ายใบแจ้งหนี้ไปกี่ใบจากแต่ละครองรัฐ โดยแสดงตามแกนตั้งเรียงจากมากไปน้อย
SELECT billing_state, COUNT(*) FROM invoices WHERE billing_country = "USA" GROUP BY billing_state ORDER BY COUNT(*) DESC
จำนวนประชากรใน กิลกิต-บัลติสถาน
มีประชากรประมาณ 1,800,000 คนในปี พ.ศ. 2558
พระโลกนาถคือใคร
พระภิกษุนิกายเถรวาทชาวอิตาลี
เพราะความรักมันไม่เลือกเวลาเกิด ออกจำหน่ายและมิวสิกวิดีโอเผยแพร่ในวันที่เท่าไร
15 ตุลาคม พ.ศ. 2558
กางเขนอันแรกสร้างเมื่อปีใด
ปี 1913
CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text )
สถิติเกี่ยวกับคำตอบของผู้ใช้
SELECT OwnerUserId, OwnerDisplayName, Id, PostTypeId, AnswerCount, CommentCount, Score, ViewCount, FavoriteCount FROM Posts WHERE OwnerUserId IN (12960) AND PostTypeId = 1
การถ่ายแบบดีเอ็นเอ เป็นกระบวนการทางอะไร
ชีววิทยา
ขอทราบชื่อสินค้าหน่อย
Diamond Satin Transparent
ยาคอฟ ดซูกัสวิลี เกิดวันที่เท่าไร
18 มีนาคม ค.ศ. 1907
ซัดดัม ฮุสเซน ถูกจับกุมและถอดออกจากตำแหน่ง โดยกองกำลังอะไร
กำลังนานาชาติ
CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, admission_type text, admission_location text, discharge_location text, insurance text, language text, marital_status text, ethnicity text, age number )
คนไข้ 8991 เข้ารักษาตัวในโรงพยาบาลเมื่อปีที่แล้วครั้งสุดท้ายอย่างไร
SELECT admissions.admission_type FROM admissions WHERE admissions.subject_id = 8991 AND DATETIME(admissions.admittime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year') ORDER BY admissions.admittime DESC LIMIT 1
CREATE TABLE patients ( row_id number, subject_id number, gender text, dob time, dod time )
ผู้ป่วย 1819 เกิดวันที่เท่าไหร่
SELECT patients.dob FROM patients WHERE patients.subject_id = 1819
CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, admission_type text, admission_location text, discharge_location text, insurance text, language text, marital_status text, ethnicity text, age number )
คนไข้ 8204 เข้าโรงพยาบาลครั้งแรกได้อย่างไร
SELECT admissions.admission_type FROM admissions WHERE admissions.subject_id = 8204 ORDER BY admissions.admittime LIMIT 1
CREATE TABLE patient ( uniquepid text, patienthealthsystemstayid number, patientunitstayid number, gender text, age text, ethnicity text, hospitalid number, wardid number, admissionheight number, admissionweight number, dischargeweight number, hospitaladmittime time, hospitaladmitsource text, unitadmittime time, unitdischargetime time, hospitaldischargetime time, hospitaldischargestatus text )
ผู้ป่วยรหัส 018-20179 เข้ารักษาที่โรงพยาบาลมาแล้วกี่ชั่วโมง
SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', patient.hospitaladmittime)) FROM patient WHERE patient.uniquepid = '018-20179' AND patient.hospitaldischargetime IS NULL
นางตุลสีหรือนางวฤนทาอยู่ในศาสนาใด ?
ศาสนาฮินดู
ดอยอินทนนท์ เดิมมีชื่อว่าอะไร
ดอยหลวงอ่างกา
CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, admission_type text, admission_location text, discharge_location text, insurance text, language text, marital_status text, ethnicity text, age number )
ผู้ป่วย 26156 เข้ามารักษาในโรงพยาบาลครั้งสุดท้ายเมื่อใด
SELECT admissions.admittime FROM admissions WHERE admissions.subject_id = 26156 ORDER BY admissions.admittime DESC LIMIT 1
ไฟนอลแฟนตาซี ปัจจุบันคือบริษัทอะไร
บริษัท สแควร์เอนิกซ์
CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, admission_type text, admission_location text, discharge_location text, insurance text, language text, marital_status text, ethnicity text, age number )
ตั้งแต่ผู้ป่วย 3125 เข้ารับการรักษาในโรงพยาบาลเป็นเวลาเท่าไหร่
SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', admissions.admittime)) FROM admissions WHERE admissions.subject_id = 3125 AND admissions.dischtime IS NULL
CREATE TABLE patient ( uniquepid text, patienthealthsystemstayid number, patientunitstayid number, gender text, age text, ethnicity text, hospitalid number, wardid number, admissionheight number, admissionweight number, dischargeweight number, hospitaladmittime time, hospitaladmitsource text, unitadmittime time, unitdischargetime time, hospitaldischargetime time, hospitaldischargestatus text )
ผู้ป่วย 032-24135 เข้ารักษาในหอผู้ป่วย 1068 เป็นเวลากี่ชั่วโมงตั้งแต่เข้ารักษาในโรงพยาบาลครั้งแรก
SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', patient.unitadmittime)) FROM patient WHERE patient.uniquepid = '032-24135' AND patient.wardid = 1068 AND patient.hospitaldischargetime IS NULL ORDER BY patient.unitadmittime LIMIT 1
44 21 4 เกม เป็นรายการอะไร
รายการเกมโชว์ด้านภาษาไทย
CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text )
คำถามทั้งหมดที่ไม่ดี คำถามทั้งหมดที่ดี และคำถามทั้งหมด
SELECT COUNT(*) FROM Posts WHERE PostTypeId = 1 AND AnswerCount > 1
เทศบาลตำบลโนนสูง หลังจากอาคารทรุดตัวลง ได้กู้เงินองค์กรอะไรในการสร้างใหม่
ก.ส.ท.
แมทธิว มัวร์ ฮาร์ดี มากจากครอบครัวชื่ออะไร
กิลเบิร์ตและรูบี มัวร์ ฮาร์ดี
CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, admission_type text, admission_location text, discharge_location text, insurance text, language text, marital_status text, ethnicity text, age number )
สำหรับผู้ป่วยรายที่ 18866 เข้ารับบริการที่โรงพยาบาลครั้งแรกเป็นการไปแผนกฉุกเฉินหรือไม่
SELECT COUNT(*) > 0 FROM admissions WHERE admissions.subject_id = 18866 AND admissions.admission_location = 'emergency room admit' AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime LIMIT 1
ขนาดของอนุภาคจะส่งผลต่อสุขภาพ โดยอนุภาคที่มีขนาด 10 ไมโครเมตรหรือเล็กกว่า สามารถเข้าไปในส่วนที่ลึกสุดของอวัยวะใด ?
ปอด
ซิลิฟูลส์ได้ร่วมโครงการอะไร
Rock Rider
วศิน อินทสระได้บวชเป็นสามเณรตอนอายุเท่าใด
อายุ 13 ปี
CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text )
จำนวนคำถามที่ควรได้รับการปกป้องโดยอัตโนมัติ ป้อนคำอธิบายคิวรี
SELECT COUNT(Id) FROM Posts AS q WHERE PostTypeId = 1 AND DATEDIFF(m, q.CreationDate, GETDATE()) >= 6 AND AnswerCount >= 1 AND ViewCount >= 1000
มนต์สยาม ได้ชิงแชมป์ OPBF รุ่นไลท์ฟลายเวท กับใคร
ฟิล ทากูปา
คณะรัฐบาลในสมเด็จพระจักพรรดิได้ทำสงครามกับประเทศใด
จักรวรรดิรัสเซีย
CREATE TABLE course ( course_id int, name varchar, department varchar, number varchar, credits varchar, advisory_requirement varchar, enforced_requirement varchar, description varchar, num_semesters int, num_enrolled int, has_discussion varchar, has_lab varchar, has_projects varchar, has_exams varchar, num_reviews int, clarity_score int, easiness_score int, helpfulness_score int )
มีบางคลาสที่ไม่มีห้องปฏิบัติการหรือไม่?
SELECT DISTINCT name, number FROM course WHERE department = 'EECS' AND has_lab = 'N'
วสุ ห้าวหาญปัจจุบันอยู่ค่ายใด
แกรมมี่โกลด์
CREATE TABLE Users ( Id number, Reputation number, CreationDate time, DisplayName text, LastAccessDate time, WebsiteUrl text, Location text, AboutMe text, Views number, UpVotes number, DownVotes number, ProfileImageUrl text, EmailHash text, AccountId number )
ผู้ใช้ที่มีอีเมลของ Stack Exchange Inc. บน 'เกี่ยวกับฉัน' โดเมนอีเมลที่รวม: stackexchange.com และ stackoverflow.com
SELECT Id AS "user_link", AboutMe, WebsiteUrl FROM Users WHERE (AboutMe LIKE '%@stackexchange.com%' OR AboutMe LIKE '%@stackoverflow.com%' OR AboutMe LIKE '%valued associate%')
CREATE TABLE PostHistory ( Id number, PostHistoryTypeId number, PostId number, RevisionGUID other, CreationDate time, UserId number, UserDisplayName text, Comment text, Text text, ContentLicense text )
คำถามที่บุคคลในชุมชนโหวตเพิ่มขึ้นหลายครั้ง
SELECT RANK() OVER (ORDER BY COUNT(ph.Id) DESC) AS "rank", COUNT(ph.Id) AS "count", ph.PostId AS "post_link", 'site://posts/' + CAST(ph.PostId AS TEXT) + '/revisions' AS "revision_history" FROM PostHistory AS ph WHERE ph.PostHistoryTypeId = 50 GROUP BY ph.PostId ORDER BY COUNT(ph.Id) DESC
CREATE TABLE Tourist_Attractions ( Tourist_Attraction_ID INTEGER, Attraction_Type_Code CHAR(15), Location_ID INTEGER, How_to_Get_There VARCHAR(255), Name VARCHAR(255), Description VARCHAR(255), Opening_Hours VARCHAR(255), Other_Details VARCHAR(255) )
ทำแผนภูมิวงกลมโดยแสดงวิธีที่เป็นไปได้ทั้งหมดในการเดินทางไปยังสถานที่ท่องเที่ยวพร้อมกับจำนวนสถานที่ท่องเที่ยวที่สามารถเข้าถึงได้โดยวิธีดังกล่าว
SELECT How_to_Get_There, COUNT(*) FROM Tourist_Attractions GROUP BY How_to_Get_There
CREATE TABLE Products ( product_id INTEGER, product_type_code VARCHAR(10), product_name VARCHAR(80), product_price DECIMAL(19,4) )
ราคาต่ำสุดของผลิตภัณฑ์คืออะไร โดยจัดกลุ่มตามประเภทผลิตภัณฑ์ แสดงเป็นแผนภูมิแท่ง
SELECT product_type_code, MIN(product_price) FROM Products GROUP BY product_type_code ORDER BY product_type_code
ที่เกิดของ มอร์ริส อีสต์ คือที่ใด
ซัมบาเลส ฟิลิปปินส์
อาร์เธอร์ อีแวนส์ เกิดวันที่เท่าไร
8 กรกฎาคม พ.ศ. 2394
CREATE TABLE days ( days_code varchar, day_name varchar )
SA คืออะไร
SELECT DISTINCT day_name FROM days WHERE days_code = 'SA'
CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, admission_type text, admission_location text, discharge_location text, insurance text, language text, marital_status text, ethnicity text, age number )
6 ปีที่ผ่านมามีสิทธิเข้ารับบริการที่โรงพยาบาลกี่ครั้ง
SELECT COUNT(DISTINCT admissions.hadm_id) FROM admissions WHERE admissions.subject_id = 80119 AND DATETIME(admissions.admittime) >= DATETIME(CURRENT_TIME(), '-6 year')
CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, admission_type text, admission_location text, discharge_location text, insurance text, language text, marital_status text, ethnicity text, age number )
เวลาเข้ารับการรักษาตัวของคนไข้หมายเลข 16554 ตั้งแต่ 2105 เป็นต้นมามีอะไรบ้าง
SELECT admissions.admittime FROM admissions WHERE admissions.subject_id = 16554 AND STRFTIME('%y', admissions.admittime) >= '2105'
ออกอัมบั้มแรกของซิลิฟูลส์ ภายใต้ค่ายสังกัด อาร์เอส ชื่ออัมบั้มอะไร
เดอะวัน
โดยใช้ชื่อว่า "สามเณราลัย แสงธรรม" ปัจจุบันมี บาทหลวงอะไร เป็นอธิการบดี ?
ดร.ชาติชาย พงษ์ศิริ
CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, admission_type text, admission_location text, discharge_location text, insurance text, language text, marital_status text, ethnicity text, age number )
จำนวนผู้ป่วยที่ออกจากโรงพยาบาล
SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE NOT admissions.dischtime IS NULL
อัลบัมแรกของ โบโนโบ
Animal Magic อยู่ต้นสังกัด Tru Thoughts ในปี 2001
CREATE TABLE Comments ( Id number, PostId number, Score number, Text text, CreationDate time, UserDisplayName text, UserId number, ContentLicense text )
คำติชมของ Chris ที่ว่า 'ใช้ข้อมูลอ้างอิง'
SELECT CreationDate, Id AS "comment_link" FROM Comments WHERE UserId = 962089 AND Text LIKE '%a reference%' ORDER BY CreationDate
CREATE TABLE appointment ( appointmentid number, patient number, prepnurse number, physician number, start time, end time, examinationroom text )
id ของการนัดหมายใดที่เริ่มล่าสุด
SELECT appointmentid FROM appointment ORDER BY start DESC LIMIT 1
แพ็ก กวัง-ฮย็อน ได้ถูก นำเรื่องราวของเขามาสร้างเป็นละครชุดเกาหลีในชื่อภาษาไทยว่าอะไร
ควังยอน หมอม้าแห่งโชซอน
CREATE TABLE patient ( uniquepid text, patienthealthsystemstayid number, patientunitstayid number, gender text, age text, ethnicity text, hospitalid number, wardid number, admissionheight number, admissionweight number, dischargeweight number, hospitaladmittime time, hospitaladmitsource text, unitadmittime time, unitdischargetime time, hospitaldischargetime time, hospitaldischargestatus text )
เพศของผู้ป่วย 032-1755 คืออะไร
SELECT DISTINCT patient.gender FROM patient WHERE patient.uniquepid = '032-1755'
CREATE TABLE assets ( asset_id number, maintenance_contract_id number, supplier_company_id number, asset_details text, asset_make text, asset_model text, asset_acquired_date time, asset_disposed_date time, other_asset_details text )
แสดงรายการทรัพย์สินทั้งหมดยี่ห้อ รุ่น รายละเอียดตามวันที่จำหน่ายโดยเรียงจากน้อยไปมาก
SELECT asset_make, asset_model, asset_details FROM assets ORDER BY asset_disposed_date
ดนตรีแทร็ป เป็นรูปแบบอะไร
ดนตรีอิเล็กทรอนิกส์แดนซ์
CREATE TABLE restriction ( restriction_code text, advance_purchase int, stopovers text, saturday_stay_required text, minimum_stay int, maximum_stay int, application text, no_discounts text )
AP/55 คือข้อจำกัดอะไร
SELECT DISTINCT advance_purchase, application, maximum_stay, minimum_stay, no_discounts, restriction_code, saturday_stay_required, stopovers FROM restriction WHERE restriction_code = 'AP/55'
CREATE TABLE PostFeedback ( Id number, PostId number, IsAnonymous boolean, VoteTypeId number, CreationDate time )
คุณภาพของเนื้อหา: จำนวนการโหวตขึ้นค่าเฉลี่ย
SELECT Month = DATEADD(MONTH, DATEDIFF(MONTH, 0, CreationDate), 0), 'Average amount of upvotes' = SUM(CASE WHEN VoteTypeId = 2 THEN 1 ELSE 0 END) / CAST(COUNT(Id) AS FLOAT) FROM PostFeedback GROUP BY DATEADD(MONTH, DATEDIFF(MONTH, 0, CreationDate), 0) ORDER BY DATEADD(MONTH, DATEDIFF(MONTH, 0, CreationDate), 0)
เมทัลลิกาก่อตั้งขึ้นเมื่อปีใด
ค.ศ. 1981
CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text )
เลือก * จาก Posts ที่ Title เหมือน '%deeplearning%'
SELECT * FROM Posts WHERE Title LIKE '%learn%'
CREATE TABLE Users ( Id number, Reputation number, CreationDate time, DisplayName text, LastAccessDate time, WebsiteUrl text, Location text, AboutMe text, Views number, UpVotes number, DownVotes number, ProfileImageUrl text, EmailHash text, AccountId number )
200 ผู้ใช้จากอิหร่าน อันดับสูงสุด รายชื่อ 200 ผู้ใช้ (อันดับตามชื่อเสียง) ที่อาศัยอยู่ในอิหร่านตามข้อมูลในโปรไฟล์ของตน
SELECT Id, DisplayName, Reputation, WebsiteUrl, Location FROM Users WHERE Location LIKE '%Iran%' ORDER BY Reputation DESC LIMIT 200
เสียงคืออะไร
คลื่นเชิงกลที่เกิดจากการสั่นสะเทือนของวัตถุ
ลีซา เอเดลสตีนเป็นลูกของใคร
บอนนี และแอลวิน เอเดลสตีน
แอนดี้เขมพิมุกจบการศึกษาระดับปริญญาโทจากมหาวิทยาลัยใด
มหาวิทยาลัยมหิดล
CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, admission_type text, admission_location text, discharge_location text, insurance text, language text, marital_status text, ethnicity text, age number )
ผู้ป่วย 3939 ทีประวัติการเข้ารับการรักษาในครั้งแรกเป็นอย่างไร
SELECT admissions.admission_type FROM admissions WHERE admissions.subject_id = 3939 ORDER BY admissions.admittime LIMIT 1
สมาชิกของเดอะบีเทิลส์คนใดทำหน้าที่ร้องนำและมือกีต้าร์
จอห์น เลนนอน
ฟ้าทะลายโจรมีขื่อทางวิทยาศาสตร์ว่าอะไร
ชื่อวิทยาศาสตร์ : Andrographis paniculata (Burm.) Wall. ex Nees