input
stringclasses 87
values | instruction
stringlengths 0
626
| output
stringlengths 1
794
|
---|---|---|
ต้นโมกมีการขยายพันธุ์ไม้ในรูปแบบลักษณะใด | ทำการขยายพันธุ์โดยการปักชำ หรือ เพาะเมล็ด |
|
เลตอิตบี เป็นลำดับที่เท่าไรของวง | สุดท้ายของวงร็อกอังกฤษ |
|
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
)
| หลักสูตรเครดิต 12 หน่วยมีวิชาอะไรบ้าง? | SELECT DISTINCT name, number FROM course WHERE credits = 12 AND department = 'EECS' |
CREATE TABLE tourist_attractions (
tourist_attraction_id number,
attraction_type_code text,
location_id number,
how_to_get_there text,
name text,
description text,
opening_hours text,
other_details text
)
| สถานที่ท่องเที่ยวที่จะสามารถเข้าถึงได้โดยรถบัส มีชื่อว่าอะไรบ้าง | SELECT name FROM tourist_attractions WHERE how_to_get_there = "bus" |
ใครคือผู้ก่อตั้งบ้านเรเวนคลอ | โรเวนนา เรเวนคลอ |
|
คุณชายเลี้ยงหมู คุณหนูเลี้ยงแกะ ออกอากาศทุกวันอะไร | พุธ - พฤหัสบดี |
|
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
)
| คนไข้ 027-154299 น้ำหนักล่าสุด เดือน 12/ปีนี้ เท่าไหร่ | SELECT patient.admissionweight FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '027-154299') AND NOT patient.admissionweight IS NULL AND DATETIME(patient.unitadmittime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-0 year') AND STRFTIME('%m', patient.unitadmittime) = '12' ORDER BY patient.unitadmittime 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
)
| ครั้งที่เข้ารับบริการที่โรงพยาบาลปัจจุบัน ผู้ป่วย 006-195316 ได้เข้ารับบริการที่ห้องฉุกเฉินหรือไม่ | SELECT COUNT(*) > 0 FROM patient WHERE patient.uniquepid = '006-195316' AND patient.hospitaladmitsource = 'emergency department' AND patient.hospitaldischargetime IS NULL |
ปลาดุกมูนถือว่าเป็นปลาน้ำจืดชนิดหนึ่งที่จัดอยู่ในวงศ์ใด | วงศ์ปลากด (Bagridae) |
|
แชมป์ประเทศไทยรุ่นแบนตัมเวท ชิงเมื่อไร | 20 สิงหาคม 2540 |
|
หม่อมราชวงศ์สดศรี ปันยารชุน มีนามเดิมว่า | หม่อมราชวงศ์สดศรีสุริยา จักรพันธุ์ |
|
ใครเป็นบุคคลแรกที่จดบันทึกรูปลักษณ์ของแถบมืดในสเปกตรัมดวงอาทิตย์ | วิลเลียม ไฮด์ วอลลาสตัน |
|
รัชฎาภรณ์ แก้วสนิท จัดตั้งในพรรคอะไร | พรรคคอมมิวนิสต์แห่งประเทศไทย (พคท.) |
|
CREATE TABLE Behavior_Incident (
incident_id INTEGER,
incident_type_code VARCHAR(10),
student_id INTEGER,
date_incident_start DATETIME,
date_incident_end DATETIME,
incident_summary VARCHAR(255),
recommendations VARCHAR(255),
other_details VARCHAR(255)
)
| จำนวนสิ้นสุดเหตุการณ์ที่เกิดขึ้นมีรหัสประเภทเหตุการณ์ 'NOISE'? แยกตามวันในสัปดาห์และแสดงแผนภูมิแท่ง และเรียงลำดับจากน้อยไปมากตามแกน y | SELECT date_incident_start, COUNT(date_incident_start) FROM Behavior_Incident WHERE incident_type_code = "NOISE" ORDER BY COUNT(date_incident_start) |
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 department, name, number FROM course WHERE (description LIKE '%Physiology Masters Research Capstone%' OR name LIKE '%Physiology Masters Research Capstone%') AND department = 'EECS' |
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 Body LIKE '%<code>%' AND ParentId IN (1109022, 151777, 541966, 1016896, 6343166, 477572, 2591036, 3145089, 2201917, 5033012, 600207, 3035692, 1560788, 2091465, 531427, 2139134, 6495898, 3166501, 4605527, 2736389, 2150078, 6200533, 867518, 2471935, 3624280, 2459916, 1667278, 2795833, 2317428, 3495890, 1397361, 2169649, 2403632, 2644134, 2695746, 4946295, 7723964, 8500283, 3331527, 11444238, 5105354, 2130932, 2617266, 2160619, 454315, 3226495, 1556987, 2322234, 5832368, 1101380, 5694933, 2973270, 419184, 6330260, 2271131, 3349121, 4165414, 2780102, 6290531, 574195, 1851633, 5357455, 2217753, 3647993, 3611457, 11281010, 8181828, 3916330, 5763304, 11321129, 660151, 6520718, 6176391, 4617898, 3996938, 6070805, 4894885, 1724937, 5495225, 16143562, 13739785) |
สร้างโดยไซมอน ฟูลเลอร์, ไนเจล ลิธโกว์, อัลเลน ชาพิโร และใคร ? | แบร์รี่ อเดลแมน |
|
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
) | ตั้งแต่ 4 ปีที่ผ่านมา เวลาสุดท้ายที่เข้าห้องพักฟื้นของคนไข้ 028-23341 คือเมื่อไหร่ครับ | SELECT patient.hospitaladmittime FROM patient WHERE patient.uniquepid = '028-23341' AND patient.hospitaladmitsource = 'recovery room' AND DATETIME(patient.hospitaladmittime) >= DATETIME(CURRENT_TIME(), '-4 year') ORDER BY patient.hospitaladmittime DESC LIMIT 1 |
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 Score, COUNT(Id) FROM Posts WHERE PostTypeId = 2 AND OwnerUserId = 6309 GROUP BY Score ORDER BY Score DESC |
อาร์ดวาร์ก มีชื่อภาษาแอฟริคาน แปลว่าอะไร | หมูดิน |
|
ไอโซโพรพานอลเป็นตัวทำลายสารชนิดใด | เอทิลเซลลูโลส โพลิไวนิลบิวทิรัล น้ำมัน อัลคาลอยด์ และยางไม้ได้ |
|
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
)
| ผู้ป่วยหมายเลข 012-68650 รายแรก เข้ารับการรักษาในช่วงปีที่ผ่านมาเพราะอะไร | SELECT patient.hospitaladmitsource FROM patient WHERE patient.uniquepid = '012-68650' AND DATETIME(patient.hospitaladmittime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year') ORDER BY patient.hospitaladmittime LIMIT 1 |
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
)
| จำนวนบัญชีผู้ใช้ที่ถูกสร้างต่อสัปดาห์ | SELECT (TIME_TO_STR(CreationDate, '%y') + (TIME_TO_STR(CreationDate, '%W') - 1) / 52.0) AS YR_WK, COUNT(*) AS c FROM Users GROUP BY (TIME_TO_STR(CreationDate, '%y') + (TIME_TO_STR(CreationDate, '%W') - 1) / 52.0) ORDER BY (TIME_TO_STR(CreationDate, '%y') + (TIME_TO_STR(CreationDate, '%W') - 1) / 52.0) |
เจ้ากอง หรืออีกชื่อหนึ่งคือ ? | ขุนหลวงพระเสด็จกอน |
|
CREATE TABLE Comments (
Id number,
PostId number,
Score number,
Text text,
CreationDate time,
UserDisplayName text,
UserId number,
ContentLicense text
)
| คุณได้ลอง comment อะไร | SELECT Id FROM Comments WHERE Text = 'http://whathaveyoutried.com' |
ต้นมะคำดีควายมีชื่อทางวิทยาศาสตร์ว่าอย่างไร | ชื่อวิทยาศาสตร์ : Sapindus emarginatus Wall. |
|
พังก์โกส์อะคูสติก 2 ออกจำหน่ายเมื่อปีอะไร | พ.ศ. 2546 |
|
มีอาณาเขตติดต่อกับอะไร ? | เทศบาลตูบูรัน, ตีโป-ตีโป, อีซาเบลา และช่องแคบบาซีลัน |
|
เทอร์โบ คืออะไร | เครื่องอัดอากาศเข้าสู่ห้องเผาไหม้ |
|
พระเจ้าบรมวงศ์เธอ พระองค์เจ้างอนรถ ประสูติเมื่อไร | วันพฤหัสบดี เดือนยี่ ขึ้น 5 ค่ำ ปีกุน สัปตศก จ.ศ. 1177 |
|
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
)
| ครั้งก่อนของปีที่แล้วผู้ป่วย 7476 มาโรงพยาบาลโดยการ admit ผ่านห้องฉุกเฉินเมื่อใด | SELECT admissions.admittime FROM admissions WHERE admissions.subject_id = 7476 AND admissions.admission_location = 'emergency room admit' AND DATETIME(admissions.admittime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year') ORDER BY admissions.admittime DESC LIMIT 1 |
ปลากะรังลายจุดมีชื่อทางวิทยาศาสตร์ว่าอย่างไร | ชื่อวิทยาศาสตร์: Epinephelus malabaricus |
|
ในครอบครัวชนชั้นกลางในชื่อ ออง บุนหัวในหมู่บ้านริมทะเลเมือง ? | ซิเตียวัน |
|
CREATE TABLE products (
product_id number,
product_type_code text,
product_name text,
product_price number
)
| รหัสและชื่อสินค้าใด ที่ราคาขายต่ำกว่า 600 หรือสูงกว่า 900 | SELECT product_id, product_name FROM products WHERE product_price < 600 OR product_price > 900 |
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
) | คนไข้หมายเลข 14397 เข้ารับการรักษาในโรงพยาบาลล่าสุดอย่างไร | SELECT admissions.admission_type FROM admissions WHERE admissions.subject_id = 14397 ORDER BY admissions.admittime DESC LIMIT 1 |
CREATE TABLE 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
)
| ตัวเลขการจ่ายยา adefovir dipivoxil จนถึงปี 2557 เป็นเท่าไร | SELECT COUNT(*) FROM prescriptions WHERE prescriptions.drug = 'adefovir dipivoxil' AND STRFTIME('%y', prescriptions.startdate) <= '2104' |
สาธารณรัฐโปรตุเกส เข้าร่วมการแข่งขันอะไร | กีฬาโอลิม |
|
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
)
| ผู้ป่วยหมายเลข 017-20711 เข้ารับการรักษาตัวในโรงพยาบาลได้ตั้งแต่ปี 2105 เป็นคนแรกได้อย่างไร | SELECT patient.hospitaladmitsource FROM patient WHERE patient.uniquepid = '017-20711' AND STRFTIME('%y', patient.hospitaladmittime) >= '2105' ORDER BY patient.hospitaladmittime LIMIT 1 |
มีขนาดของสินค้าอยู่เท่าไร | ขนาด 6 mm. ขนาดตามสั่ง หนา 6 มิลลิเมตร |
|
CREATE TABLE Products (
product_id INTEGER,
product_type_code VARCHAR(10),
product_name VARCHAR(80),
product_price DECIMAL(19,4)
)
| แสดงผลราคาเฉลี่ยของแต่ละประเภทสินค้าโดยใช้แผนภูมิแท่ง พร้อมแสดงรายการราคาเฉลี่ยของสินค้าจากมากไปน้อย | SELECT product_type_code, AVG(product_price) FROM Products GROUP BY product_type_code ORDER BY AVG(product_price) DESC |
กุกบุยโป้วมีสีอะไร | สีแดงอมน้ำตาล |
|
ปัจจุบันรถรุ่นนี้ถูกเรียกรวมๆว่าอะไร | แลนด์โรเวอร์ ซีรีส์ |
|
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
)
| ผู้ใช้ที่อายุยังไม่ถึง 18 ปี | SELECT Id, DisplayName, Views AS Age, Reputation FROM Users WHERE Age < 18 AND Reputation >= 200 ORDER BY Age |
CREATE TABLE Accounts (
account_id INTEGER,
customer_id INTEGER,
date_account_opened DATETIME,
account_name VARCHAR(50),
other_account_details VARCHAR(255)
)
| แสดงจำนวนบัญชีที่เปิดในแต่ละวัน Bin วันที่เปิดบัญชีตามวันในสัปดาห์และแบ่งกลุ่มตามรายละเอียดบัญชีอื่นๆ ในแผนภูมิแท่งแบบซ้อน และเรียงลำดับแบบเรียงจากน้อยไปมากตามจำนวนทั้งหมด | SELECT date_account_opened, COUNT(date_account_opened) FROM Accounts GROUP BY other_account_details ORDER BY COUNT(date_account_opened) |
นายยิ่งพันธ์ มนะสิการ เกิดวันที่เท่าไร | 23 พฤศจิกายน พ.ศ. 2480 |
|
CREATE TABLE Bookings (
Booking_ID INTEGER,
Customer_ID INTEGER,
Workshop_Group_ID VARCHAR(100),
Status_Code CHAR(15),
Store_ID INTEGER,
Order_Date DATETIME,
Planned_Delivery_Date DATETIME,
Actual_Delivery_Date DATETIME,
Other_Order_Details VARCHAR(255)
)
| สร้างแผนภาพเส้นแสดงจำนวนวันที่สั่งซื้อตามวันที่สั่งซื้อ | SELECT Order_Date, COUNT(Order_Date) FROM Bookings |
CREATE TABLE PostLinks (
Id number,
CreationDate time,
PostId number,
RelatedPostId number,
LinkTypeId number
)
| ทำซ้ำเป้าหมายของโพสต์ที่ให้ | SELECT RelatedPostId AS "post_link" FROM PostLinks WHERE (PostId = '##id?1331325##') AND (LinkTypeId = 3) |
ตำนานแห่งซิลมาริล แต่งโดยใคร | เจ. อาร์. อาร์. โทลคีน |
|
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
)
| คำนวณระยะเวลาการนอนพักรักษาตัวของผู้ป่วย 035-22706 ครั้งหลังที่เข้าพัก | SELECT STRFTIME('%j', patient.hospitaldischargetime) - STRFTIME('%j', patient.hospitaladmittime) FROM patient WHERE patient.uniquepid = '035-22706' AND NOT patient.hospitaladmittime IS NULL ORDER BY patient.hospitaladmittime 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
)
| บอกเพศของผู้ป่วย 006-195541 | SELECT DISTINCT patient.gender FROM patient WHERE patient.uniquepid = '006-195541' |
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
)
| น้ำหนักของผู้ป่วย 016-8658 ครั้งสุดท้ายที่มีการวัด ในการเข้ารักษาครั้งแรกที่โรงพยาบาล ต่างกับค่าครั้งแรกที่วัด ในการเข้ารักษาครั้งแรกที่โรงพยาบาล เท่าไหร่ | SELECT (SELECT patient.admissionweight FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '016-8658' AND NOT patient.hospitaldischargetime IS NULL ORDER BY patient.hospitaladmittime LIMIT 1) AND NOT patient.admissionweight IS NULL ORDER BY patient.unitadmittime DESC LIMIT 1) - (SELECT patient.admissionweight FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '016-8658' AND NOT patient.hospitaldischargetime IS NULL ORDER BY patient.hospitaladmittime LIMIT 1) AND NOT patient.admissionweight IS NULL ORDER BY patient.unitadmittime LIMIT 1) |
ปรากฏการณ์เกาะความร้อน มีอีกชื่อหนึ่งว่าอะไร | เกาะความร้อนเมือง |
|
ใครคือคนแรกที่ลาออกจากโอเอซิส | โทนี แม็คคารอล |
|
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
)
| ผู้ใช้งาน 150 อันดับจากบัลแกเรีย | SELECT Id, DisplayName, Reputation, WebsiteUrl, Location FROM Users WHERE Location LIKE '%Bulgaria%' OR Location LIKE '%sofia%' ORDER BY Reputation DESC LIMIT 150 |
อย่างไรก็ตาม ชาวยุโรปเริ่มทำของหวานทานเป็นครั้งแรกในช่วงยุคใด ? | ยุคกลาง |
|
ซิมอน โบลิบาร์ เรียกอีกชื่อหนึ่งว่าอะไร | สงครามโบลิบาร์ |
|
นระหว่างช่วงเหตุการณ์ กบฏทหารนอกราชการ หรือ กบฏ 9 กันยา เกิดอะไรขึ้นกับประพันธ์ ธูปะเตมีย์ | พลอากาศเอก ประพันธ์ เป็น 1 ในบุคคลที่ถูกคณะผู้ก่อการจับกุมตัว |
|
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 * FROM Posts |
ขอทราบชื่อสินค้าหน่อย | Bronze Satin Transparent |
|
แยชือ ดูแด็ก เกิดวันที่เท่าไร | 23 มีนาคม ค.ศ. 1973 |
|
CREATE TABLE PostFeedback (
Id number,
PostId number,
IsAnonymous boolean,
VoteTypeId number,
CreationDate time
)
| การโหวตติชมแบบไม่ระบุชื่อผ่านกาลเวลา | SELECT COUNT(*) FROM PostFeedback |
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)
)
| 5 อันดับประเทศที่มีจำนวนบิลมากที่สุดแต่ละประเทศมีกี่บิล แสดงข้อมูลเป็นแผนภูมิแท่ง | SELECT billing_country, COUNT(*) FROM invoices GROUP BY billing_country ORDER BY COUNT(*) DESC LIMIT 5 |
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
)
| จำนวนโพสต์ตามช่วงอายุในหน่วยวัน | WITH PostAge AS (SELECT Id, DATEDIFF(day, CreationDate, @LastVote) AS Age FROM Posts WHERE PostTypeId = '##PostTypeId:int?2##'), PostsByAge AS (SELECT Age, COUNT(*) AS Count FROM PostAge GROUP BY Age) SELECT Age, Count, SUM(Count) OVER (ORDER BY Age DESC ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS RollingCount FROM PostsByAge ORDER BY Age |
CREATE TABLE tracks (
id number,
name text,
album_id number,
media_type_id number,
genre_id number,
composer text,
milliseconds number,
bytes number,
unit_price number
)
| ราคาต่อหน่วยของเพลง 'Fast As a Shark' คือเท่าไร | SELECT unit_price FROM tracks WHERE name = "Fast As a Shark" |
หม่อมหลวงขาบ กุญชร เป็นบุตรคนที่เท่าไร | 30 |
|
เคโรโระเกิดเมื่อไหร่ | 9 ธันวาคม |
|
บริษัท กัลฟ์ เอ็นเนอร์จี ดีเวลลอปเมนท์ จำกัด (มหาชน) หรือเรียก ย่อย่อว่า ? | GULF |
|
สร้างโดยใคร | แฟรงก์ ดาราบอนต์ |
|
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 'id' AS "post_link", 'score', 'creationdate', 'closeddate', 'body' FROM Posts WHERE Score < -10 ORDER BY CreationDate DESC LIMIT 50 |
CREATE TABLE circuits (
circuitId INTEGER,
circuitRef TEXT,
name TEXT,
location TEXT,
country TEXT,
lat REAL,
lng REAL,
alt TEXT,
url TEXT
) | ไอดีและตำแหน่งของวงจรทั้งหมดในฝรั่งเศสหรือเบลเยียม คืออะไร แสดงแผนภูมิแท่ง คุณสามารถจัดลำดับแกน X จากมากไปหาน้อยได้หรือไม่ | SELECT location, circuitId FROM circuits WHERE country = "France" OR country = "Belgium" ORDER BY location DESC |
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
)
| คำนวณความยาวของการพักรักษาทั้งหมดของผู้ป่วยหมายเลข 013-12480 ในหอผู้ป่วยวิกฤตครั้งที่ 1 | SELECT STRFTIME('%j', patient.unitdischargetime) - STRFTIME('%j', patient.unitadmittime) FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '013-12480') AND NOT patient.unitadmittime IS NULL ORDER BY patient.unitadmittime LIMIT 1 |
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 Id AS "post_link", Score, CreationDate, LENGTH(Body) FROM Posts WHERE PostTypeId = 2 AND Body LIKE '%<img%' ORDER BY Score DESC, LENGTH(Body) |
เอ็มทีวีออสเตรเลียวิดีโอมิวสิกอะวอดส์ เป็นงานแจกรางวัลให้ศิลปินประเทศอะไร | ออสเตรเลีย |
|
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
)
| ครั้งนี้ที่ผู้ป่วยหมายเลข 006-133605 นอนที่ห้อง 384 มาแล้วทั้งสิ้นกี่ชั่วโมง | SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', patient.unitadmittime)) FROM patient WHERE patient.uniquepid = '006-133605' AND patient.wardid = 384 AND patient.hospitaldischargetime IS NULL ORDER BY patient.unitadmittime DESC LIMIT 1 |
ได้รับเครื่องอิสริยาภรณ์ชั้นสูงด้านการศึกษาจากรัฐบาลฝรั่งเศสในปีใด | พ.ศ. 2551 |
|
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
)
| คนไข้ 10211 ออกจากโรงพยาบาลครั้งสุดท้ายเมื่อไหร่ ตั้งแต่ 2104 | SELECT admissions.dischtime FROM admissions WHERE admissions.subject_id = 10211 AND STRFTIME('%y', admissions.dischtime) >= '2104' ORDER BY admissions.dischtime DESC LIMIT 1 |
ประเทศไทยมีขนาดใหญ่เป็นอันดับที่เท่าไหร่ของโลก | อันดับที่ 50 ของโลก |
|
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
) | คุณรู้มั้ยว่า 800 มีแล็บมั้ย | SELECT COUNT(*) > 0 FROM course WHERE department = 'EECS' AND has_lab = 'Y' AND number = 800 |
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
)
| รูปแบบการจัดการข้อมูล Stack Exchange http://meta.stackexchange.com/questions/287120/schema-of-stack-exchange-data-dump | SELECT * FROM Posts WHERE PostTypeId = 6 AND CreationDate BETWEEN '2014-02-10' AND '2014-02-25' |
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(1) AS nbe_answers, Questions.OwnerUserId AS "user_link", AVG(Answers.Score) AS A_score, AVG(Questions.Score) AS Q_score FROM Posts AS Questions, Posts AS Answers WHERE Questions.PostTypeId = 1 AND Answers.PostTypeId = 2 AND Answers.ParentId = Questions.Id AND Answers.OwnerUserId = '##UserId1##' GROUP BY Questions.OwnerUserId ORDER BY nbe_answers DESC |
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
)
| เมื่อไหร่เป็นครั้งแรกที่ผู้ป่วย หมายเลข 028-7951 เข้ารับการรักษาในโรงพยาบาลจนถึงปี 2104 | SELECT patient.hospitaladmittime FROM patient WHERE patient.uniquepid = '028-7951' AND STRFTIME('%y', patient.hospitaladmittime) <= '2104' ORDER BY patient.hospitaladmittime LIMIT 1 |
จอห์น เลนนอนเสียชีวิตด้วยสาเหตุใด | ถูกยิงในเดือนธันวาคม 1980 |
|
ปลาถ้ำมีชื่อสามัญว่าอะไร | Cave fish |
|
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
)
| รับผู้ใช้ทั้งหมดจากคิวบา | SELECT Reputation, DisplayName, Location FROM Users ORDER BY Reputation DESC |
ปลาช่อนงูเห่าเป็นปลาน้ำจืดชนิดหนึ่งที่จัดอยู่ในวงศ์อะไร | วงศ์ปลาช่อน (Channidae) |
|
เอ็กมาอินเตอร์เนชันแนล ดำเนินงานเกี่ยวกับอะไร | ระบบสารสนเทศและการสื่อสาร |
|
คำว่า บัลร็อก เป็นภาษาอะไร | ซินดาริน |
|
รัฐลูเซิร์น ตั้งอยู่ทางตะวันออกของรัฐโดยอยู่ติดกับทะเลสาบอะไร | บลูเซิร์น |
|
อิวามิซาวะ มีที่มาจากศัพท์ภาษาญี่ปุ่นว่าอะไร | โยวามิซาวะ |
|
ต้นมณฑามีชื่อทางวิทยาศาสตร์ว่าอย่างไร | ชื่อวิทยาศาสตร์: Magnolia liliifera |
|
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
)
| ผู้ใช้ 50 อันดับแรกจากตุรกี | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation, Location FROM Users WHERE LOWER(Location) LIKE '%turkey' ORDER BY Reputation DESC LIMIT 50 |
ประมุขที่มาใหม่มาแทนลอร์ดแห่งไอร์แลนด์ที่เป็นตำแหน่งที่มีมาตั้งแต่ปีอะไร | ค.ศ. 1171 |
|
มงคลกิตติ์ สุขสินธารานนท์ มีชื่อเล่นว่าอะไร | เต้ |
|
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
)
| ผู้ใช้งานสูงสุด 1000 คน ในประเทศไทย | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS Rank, Id, DisplayName, Reputation, WebsiteUrl, Location FROM Users WHERE Location LIKE '%Thailand%' LIMIT 1000 |
ศาสตราจารย์ประจำบ้านเรเวนคลอคือใคร | ศาสตราจารย์ฟลิตวิก |
|
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
)
| รายการสมาชิกในสถานที่ที่กำหนด โดยคัดแยกตามสถานที่ คำสั่งนี้จะแสดง list สมาชิกทั้งหมดในสถานที่ที่กำหนด | SELECT Id AS "user_link", Location, Reputation FROM Users WHERE UPPER(LEFT(Location, 5)) = 'INDIA' AND Reputation >= '##minimumReputation##' ORDER BY Location |
ผลงานเพลงอัลบั้มชุดแรกคืออะไร | บ้าหอบฟาง |
|
ประเทศไทยมีชื่ออย่างเป็นทางราชการว่าอย่างไร | ราชอาณาจักรไทย |