input
stringclasses 87
values | instruction
stringlengths 0
626
| output
stringlengths 1
794
|
---|---|---|
กงไกรลาศ ย้ายอำเภอเพราะเหตุผลอะไร | เนื่องจากเกาะกงมีน้ำท่วมถึงในฤดูน้ำหลาก ไม่สะดวกในการติดต่อราชการของประชาชน |
|
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-70851 เท่าไหร่ | SELECT patient.admissionheight FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '028-70851') AND NOT patient.admissionheight IS NULL ORDER BY patient.unitadmittime 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
)
| สถานะสมรสของผู้ป่วย 81871 ในการเข้ารับการรักษาในโรงพยาบาลครั้งแรกเป็นอย่างไร | SELECT admissions.marital_status FROM admissions WHERE admissions.subject_id = 81871 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime 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", CreationDate FROM Posts WHERE CreationDate >= '02.07.2018' AND CreationDate <= '02.08.2018' |
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 | SELECT COUNT(*) FROM Posts |
ท่าอากาศยานนานาชาติสุลต่านฮาซานุดดินเปิดให้ใช้งานเมื่อไหร่ | 20 สิงหาคม ค.ศ. 2008 |
|
ซ่งฉื่อ บันทึกอะไรข้างใน | บันทึกประวัติศาสตร์ราชวงศ์ซ่ง |
|
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 DATEADD(month, DATEDIFF(month, @start, CreationDate), @start) AS "month", SUM(CASE WHEN PostTypeId = 1 THEN 1 ELSE 0 END) AS "questions", SUM(CASE WHEN PostTypeId = 2 THEN 1 ELSE 0 END) AS "answers" FROM Posts WHERE (PostTypeId = 1 OR PostTypeId = 2) AND CreationDate >= @start AND CreationDate < @stop AND Score = 0 GROUP BY DATEADD(month, DATEDIFF(month, @start, CreationDate), @start) ORDER BY DATEADD(month, DATEDIFF(month, @start, CreationDate), @start) |
CREATE TABLE Comments (
Id number,
PostId number,
Score number,
Text text,
CreationDate time,
UserDisplayName text,
UserId number,
ContentLicense text
)
| ความคิดเห็นของฉันโดยมีคะแนนพร้อมด้วยลิงก์โพสต์ | SELECT PostId AS "post_link", Text, Score FROM Comments WHERE UserId = '##UserId##' ORDER BY Score DESC |
CREATE TABLE Badges (
Id number,
UserId number,
Name text,
Date time,
Class number,
TagBased boolean
)
| ป้ายประชาสัมพันธ์ที่ได้รับรางวัลภายในระยะเวลาที่กำหนด | SELECT UserId AS "user_link", SUM(CASE WHEN Name = 'Publicist' THEN 1 ELSE 0 END) AS Publicist, SUM(CASE WHEN Name = 'Booster' THEN 1 ELSE 0 END) AS Booster, SUM(CASE WHEN Name = 'Announcer' THEN 1 ELSE 0 END) AS Announcer, SUM(CASE WHEN (Name = 'Announcer') OR (Name = 'Booster') OR (Name = 'Publicist') THEN 1 ELSE 0 END) AS total FROM Badges WHERE Date >= '##Date1?2019-12-12##' AND Date <= '##Date2?2019-12-14##' GROUP BY UserId ORDER BY Publicist DESC, Booster DESC, Announcer DESC, total DESC LIMIT 200 |
ดาวเคราะห์ใดเป็นดาวเคราะห์ที่อยู่ห่างไกลมากที่สุดในระบบสุริยะ | ดาวเนปจูน |
|
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 u.DisplayName, u.Location FROM Users AS u WHERE u.Location LIKE '%Bosnia%' ORDER BY u.Location |
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 Id AS "user_link", Reputation, activity = 'site://users/' + CAST(Id AS TEXT) + '?tab=topactivity|Activity', profile = 'site://users/' + CAST(Id AS TEXT) + '?tab=profile|Profile' FROM Users ORDER BY Reputation DESC LIMIT 200 |
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 อันดับแรกจากบัลแกเรีย | SELECT Id AS "user_link", DisplayName, Reputation, Location FROM Users WHERE Location LIKE '%Sofia%' OR Location LIKE '%Bulgaria%' ORDER BY Reputation DESC LIMIT 200 |
ทอมมี่ ลี โจนส์ เขาเคยมีเพื่อนร่วมห้องชื่อว่าอะไร | อัล กอร์ รองประธานาธิบดีของสหรัฐฯ |
|
Wanna One เซ็นสัญญาเป็นศิลปินกับบริษัทใด | YMC Entertainment |
|
เฟลเวอร์ออฟไลฟ์ มียอดดาวน์โหลดสูงสุดเท่าไร | 7.7 ล้านครั้ง |
|
อำเภอกะพ้อ ห่างจากอำเภอเมืองอะไร | เมืองปัตตานี |
|
บุญยิ่ง นันทาภิวัฒน์ได้รับพระราชทานเพลิงศพเมื่อไหร่ | 11 มีนาคม พ.ศ. 2528
|
|
ยุทธศักดิ์ ศศิประภา เป็นอดีตรัฐมนตรีช่วยว่าการกระทรวงอะไร | กลาโหม |
|
ไลบรารี เจเนซิส คืออะไร | โปรแกรมค้นหาสำหรับบทความทางวิทยาศาสตร์ และหนังสือ |
|
สตีเฟน เคลลี มีอาชีพอะไร | นักฟุตบอล |
|
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
)
| เมื่อ 5 ปีที่แล้วผู้ป่วยหมายเลข 84346 ออกจากโรงพยาบาลเมื่อใดเป็นครั้งแรก? | SELECT admissions.dischtime FROM admissions WHERE admissions.subject_id = 84346 AND DATETIME(admissions.dischtime) >= DATETIME(CURRENT_TIME(), '-5 year') ORDER BY admissions.dischtime LIMIT 1 |
กองทัพแห่งชาติรัฐชาน สถาปนาขึ้นเมื่อวันที่เท่าไร | 7 กรกฎาคม พ.ศ. 2538 |
|
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
)
| 320 ขนาดเท่ากับอะไร? | SELECT DISTINCT num_enrolled FROM course WHERE department = 'EECS' AND number = 320 |
CREATE TABLE PostHistory (
Id number,
PostHistoryTypeId number,
PostId number,
RevisionGUID other,
CreationDate time,
UserId number,
UserDisplayName text,
Comment text,
Text text,
ContentLicense text
)
| จำนวนรายการใน PostHistory | SELECT COUNT(*) FROM PostHistory |
มีลูกกี่คน | ลูกชาย 3 คน |
|
ประเทศฝรั่งเศส เข้าร่วมแข่งขันกีฬาโอลิมปิกฤดูหนาวครั้งที่ 6 ประเทศอะไร | ประเทศนอร์เวย์ |
|
หอพระคันธารราษฎร์ สร้างขึ้นในการเฉลิมฉลองอะไร | กรุงเทพฯ 100 ปี |
|
นักเรียนบ้านสลิธีรินมักจะมีลักษณะอย่างไร | ฉลาด แกมโกง |
|
ต้นปลาไหลเผือกมีชื่อทางวิทยาศาสตร์ว่าอย่างไร | ชื่อวิทยาศาสตร์ : Eurycoma longifolia Jack |
|
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-28507 มีการเปลี่ยนแปลงไปเท่าไหร่ เมื่อเทียบกับค่าครั้งแรกที่เข้ารักษาตัวในโรงพยาบาลในปัจจุบัน | SELECT (SELECT patient.admissionweight FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '013-28507' AND patient.hospitaldischargetime IS NULL) 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 = '013-28507' AND patient.hospitaldischargetime IS NULL) AND NOT patient.admissionweight IS NULL ORDER BY patient.unitadmittime LIMIT 1) |
นาส ทำอาชีพอะไร | แร็ปเปอร์ |
|
อุปกรณ์ถ่ายเทประจุ มีความสำคัญอย่างไร | เป็นชิ้นส่วนสำคัญของเทคโนโลยีในการถ่ายภาพดิจิทัล |
|
ปลาทรงเครื่องมีชื่อทางวิทยาศาสตร์ว่าอย่างไร | ชื่อวิทยาศาสตร์ว่า Epalzeorhynchos bicolor |
|
ตัว P เป็นอักษรตัวที่เท่าไหร๋ | 16 |
|
สถานีรถไฟยูรากุโจ อยุ่ประเทศอะไร | ประเทศญี่ปุ่น |
|
ปลาซิวควายข้างเงินมีชื่อทางวิทยาศาสตร์ว่าอย่างไีร | ชื่อวิทยาศาสตร์ว่า Rasbora argyrotaenia |
|
ผลงานที่สร้างชื่อของ จิระ มะลิกุล | หับ โห้ หิ้น |
|
โชฟุ มีขนาดพื้นที่ทั้งสิ้น | 21.53 ตารางกิโลเมตร |
|
ตรีชฎา เพชรรัตน์ มีชื่อเสียงจากเวทีประกวดนางงามอะไร | มิสอินเตอร์เนชั่นแนลควีนกับมิสทิฟฟานี่ยูนิเวิร์ส |
|
จูเลียส ซีซาร์ ถึงใครลอบสังหาร | กลุ่มสมาชิกวุฒิสภากบฏลอบสังหาร นำโดยมาร์กุส ยูนิอุส บรูตุส |
|
CREATE TABLE aircraft (
aircraft_code varchar,
aircraft_description varchar,
manufacturer varchar,
basic_type varchar,
engines int,
propulsion varchar,
wide_body varchar,
wing_span int,
length int,
weight int,
capacity int,
pay_load int,
cruising_speed int,
range_miles int,
pressurized varchar
) | มีผู้คนกี่คนที่ขึ้นรถ 73S | SELECT DISTINCT aircraft_code FROM aircraft WHERE aircraft_code = '73S' |
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
)
| เลือก 10 อันดับแรกจาก Posts | SELECT * FROM Posts WHERE ViewCount > 31000 AND ViewCount <= 33000 ORDER BY ViewCount DESC |
เลสลีนีลเซนแสดงภาพยนตร์ครั้งแรกในปีใด | ค.ศ. 1956 |
|
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
)
| มีแล็บของ 475 มั้ย ? | SELECT COUNT(*) > 0 FROM course WHERE department = 'EECS' AND has_lab = 'Y' AND number = 475 |
เดอะไลต์นิงซีดส์ มีซิงเกิลแรกชื่ออะไร | Pure |
|
สโมสรกีฬาราชประชา เคยได้รางวัลชนะเลิศฟุตบอลชิงถ้วยพระราชทานประเภท ก. กี่สมัย? | 4 สมัย |
|
วีซีดี รูปแบบวีซีดีมาตรฐานถูกสร้างขึ้นในปีอะไร | ค.ศ. 1993 |
|
ทุตโมสมีบทบาทเป็นอะไร | นักบวชแห่งเทพพทาห์ในเมืองเมมฟิส |
|
วันสตรีไทยตรงกับวันที่เท่าไหร่ | วันที่ 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
)
| ผู้ใช้สูงสุด 200 คนแรกในรัฐโอไฮโอ | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation, Location FROM Users WHERE LOWER(Location) LIKE '%oh%' OR LOWER(Location) LIKE '%ohio%' ORDER BY Reputation DESC LIMIT 200 |
สโมสรกีฬาราชประชา เคยได้รางวัลชนะเลิศถ้วยพระราชทานควีนส์คัพกี่สมัย? | 2 สมัย |
|
จาณักยะ เป็นชาวประเทศอะไร | อินเดีย |
|
โดยทีมชาติฝรั่งเศสชนะฟุตบอลทีมชาติใด | ฟุตบอลทีมชาติเดนมาร์ก |
|
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 AND DATETIME(admissions.dischtime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-0 year') |
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
)
| ปีที่แล้วมีคนไข้ที่รักษาในหอ 888 กี่คน | SELECT COUNT(DISTINCT patient.uniquepid) FROM patient WHERE patient.wardid = 888 AND DATETIME(patient.unitadmittime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year') |
CREATE TABLE PostLinks (
Id number,
CreationDate time,
PostId number,
RelatedPostId number,
LinkTypeId number
)
| การคัดลอกที่แพร่หลาย: คำถามที่มีการคัดลอกมากที่สุด http://meta.stackexchange.com/a/244636/200117 | SELECT l.RelatedPostId AS "post_link", COUNT(l.PostId) AS "Duplicate Count" FROM PostLinks AS l WHERE l.LinkTypeId = 3 GROUP BY l.RelatedPostId ORDER BY 'Duplicate Count' DESC LIMIT 100 |
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
)
| วิวัฒนาการของคะแนนเฉลี่ยและจำนวนคำถามในปี 2015 โดยแบ่งเป็นสัปดาห์ วิวัฒนาการของคะแนนเฉลี่ยและจำนวนคำถามในปี 2015 โดยแบ่งเป็นสัปดาห์ | SELECT TIME_TO_STR(p.CreationDate, '%W') AS weekOfCreation, AVG(p.Score) AS meanQuestionScore, COUNT(p.Id) AS NumberOfPosts FROM Posts AS p WHERE p.PostTypeId = 1 AND TIME_TO_STR(p.CreationDate, '%Y') = 2015 GROUP BY TIME_TO_STR(p.CreationDate, '%W') ORDER BY TIME_TO_STR(p.CreationDate, '%W') |
ซินเดอเรลล่ามีความหมายว่าอย่างไร | เอลลาผู้มอมแมม |
|
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 LastAccessDate FROM Users WHERE Id = 1438 |
แสดงประกอบมิวสิกวิดีโอเพลงดังกล่าว ในวันที่เท่าไร | 9 กรกฎาคม พ.ศ. 2553 |
|
สำนักงานคณะกรรมการนโยบายเขตพัฒนาพิเศษภาคตะวันออก บังคับบัญชาของใคร | นายกรัฐมนตรี |
|
อัลเบิร์ท เกิดวันที่เท่าไร | 29 มีนาคม พ.ศ. 2519 |
|
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
)
| ผู้ป่วย 8569 เข้ารับการรักษาในโรงพยาบาลครั้งล่าสุดในปีนี้ เพราะอะไร | SELECT admissions.admission_type FROM admissions WHERE admissions.subject_id = 8569 AND DATETIME(admissions.admittime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-0 year') ORDER BY admissions.admittime DESC LIMIT 1 |
ต้นโมกมีชื่อเรียกพื้นเมืองว่าอย่างไร จงอธิบาย | ปิดจงวา (เขมร สุรินทร์) โมกซ้อน (กลาง) โมกบ้าน (กลาง) และ หลักป่า (ระยอง) |
|
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 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
) | สุดยอดชาวศรีลังกาใน Stackoverflow | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation FROM Users WHERE LOWER(Location) LIKE '%Sri%' ORDER BY Reputation DESC LIMIT 300 |
ไอโฟนผลิตและจำหน่ายโดยบริษัทใด | บริษัทแอปเปิล |
|
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
)
| ปีที่แล้ว ผู้ป่วยหมายเลข 26849 เข้ารับการรักษาตัวในโรงพยาบาลเป็นครั้งแรกอย่างไร | SELECT admissions.admission_type FROM admissions WHERE admissions.subject_id = 26849 AND DATETIME(admissions.admittime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year') ORDER BY admissions.admittime 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
)
| คำถามที่ไม่มีคำตอบและไม่มีการเคลื่อนไหวใดเป็น 6 เดือน | SELECT q.Id AS "post_link", q.AnswerCount AS Answers FROM Posts AS q WHERE q.LastActivityDate < '2011-05-06' AND q.ViewCount <= 100 AND q.PostTypeId = 1 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
)
| เลยมาแล้วกี่วันจากครั้งสุดท้ายที่คนไข้ 027-85328 นอนห้อง 996 ใน HN ครั้งนี้ | SELECT 1 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', patient.unitadmittime)) FROM patient WHERE patient.uniquepid = '027-85328' AND patient.wardid = 996 AND patient.hospitaldischargetime IS NULL ORDER BY patient.unitadmittime DESC LIMIT 1 |
CREATE TABLE constructorStandings (
constructorStandingsId INTEGER,
raceId INTEGER,
constructorId INTEGER,
points REAL,
position INTEGER,
positionText TEXT,
wins INTEGER
)
| ตัวเลขการแข่งขันของแต่ละ ID ผู้สร้างคืออะไร แสดงความสัมพันธ์ | SELECT COUNT(*), constructorId FROM constructorStandings GROUP BY constructorId |
CREATE TABLE PostHistory (
Id number,
PostHistoryTypeId number,
PostId number,
RevisionGUID other,
CreationDate time,
UserId number,
UserDisplayName text,
Comment text,
Text text,
ContentLicense text
)
| ค้นหาคำถามหรือคำตอบจาก revisionGUID | SELECT PostId AS "post_link" FROM PostHistory WHERE RevisionGUID = '865e9305-bef6-4397-9097-2848d0dc1233' |
คณะทันตแพทยศาสตร์ มหาวิทยาลัยรังสิตได้รับการรับรองหลักสูตรทันตแพทยศาสตรบัณฑิตเมื่อไร | วันที่ 24 มีนาคม 2549 |
|
วงศ์ปลาหวีเกศในประเทศไทยมีกี่สกุล | 4 สกุล |
|
ส่วนใหญ่หนังสือพิมพ์จะออกเป็นรายอะไร | รายวัน |
|
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
)
| จำนวนผู้ป่วยที่ออกจากโรงพยาบาลในปี 2102 ที่แท้จริงคือเท่าไร | SELECT COUNT(DISTINCT patient.uniquepid) FROM patient WHERE NOT patient.hospitaldischargetime IS NULL AND STRFTIME('%y', patient.hospitaldischargetime) = '2102' |
การประชุมยัลตาคืออะไร | เป็นการประชุมหัวหน้ารัฐบาลในสงครามโลกครั้งที่สองของสหรัฐ สหราชอาณาจักรและสหภาพโซเวียต |
|
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
)
| รับรายชื่อผู้ใช้ของ SO ซึ่งมีชีวประวัติประกอบไปด้วยคำที่กำหนดให้ | SELECT 'id' AS "user_link" FROM Users WHERE AboutMe LIKE '%##SearchText##%' LIMIT 10 |
ตามความเชื่อทางโลกาวินาศศาสตร์ปรากฏการณ์จะเกิดขึ้นเมื่อไหร่ | วันที่ 21 ธันวาคม ค.ศ. 2012 |
|
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-50368 อายุเท่าไหร่ตอนเข้ารับการรักษาในโรงพยาบาลครั้งแรก | SELECT patient.age FROM patient WHERE patient.uniquepid = '006-50368' AND NOT patient.hospitaldischargetime IS NULL ORDER BY patient.hospitaladmittime LIMIT 1 |
สามก๊ก ตอน โจโฉ มหาอุปราชผู้หวังครองแผ่นดิน เป็นภาพยนตร์แนวอะไร | อิงประวัติศาสตร์ |
|
ปลาเทพามีชื่อทางวิทยาศาสตร์ว่าอย่างไร | ชื่อวิทยาศาสตร์ว่า Pangasius sanitwongsei |
|
ดาร์ดะเนลส์ อยู่ประเทศอะไร | ประเทศตุรกี |
|
ลอรา ลินนีย์ ทำอาชีพอะไร | นักแสดงชาวอเมริกัน |
|
บุญชู 2 น้องใหม่ เป็นภาพยนตร์ประเทศอะไร | ไทย |
|
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
)
| ผู้ป่วยหมายเลข 015-100195 มีเวลาเข้ารับการรักษาที่โรงพยาบาลในปี 2105 กี่ครั้ง | SELECT patient.hospitaladmittime FROM patient WHERE patient.uniquepid = '015-100195' AND STRFTIME('%y', patient.hospitaladmittime) = '2105' |
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 medication (
medicationid number,
patientunitstayid number,
drugname text,
dosage text,
routeadmin text,
drugstarttime time,
drugstoptime time
)
| ให้ ringers lactate IV ถุง 1000 ml กี่ครั้ง | SELECT COUNT(*) FROM medication WHERE medication.drugname = 'lactated ringers iv : 1000 ml bag' |
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 YEAR(CreationDate) AS "year", COUNT(*) AS "cnt" FROM Posts WHERE Title LIKE '%fax%' AND PostTypeId = 1 AND ClosedDate IS NULL GROUP BY YEAR(CreationDate) ORDER BY YEAR(CreationDate) |
วัดเขาสมโภชน์ จัดตั้งเป็นวัดเมื่อไร | วันที่23 กันยายน พ.ศ 2525 |
|
มานซูร์ บิน ซาเยด อัล นาห์ยาน ทำงานร่วมกับใคร | ซาอีฟ บิน ซาเยด อัล นาห์ยาน |
|
จอห์น วิลค์ส บูธ เกิดวันที่เท่าไร | 10 พฤษภาคม ค.ศ. 1838 |
|
สปีดเดมอน มาจากสตูดิโออัลบั้มที่เท่าไร | 11 Bad |