Datasets:
AIAT
/

input
stringclasses
87 values
instruction
stringlengths
0
626
output
stringlengths
1
794
บราสสิโนสเตอรอยด์เป็นสารกลุ่มที่ออกฤทธิ์ต่ออะไร
ออกฤทธิ์ต่อการเจริญเติบโตของพืช
เจ้าชายฟิลิปแห่งออสเตรียเป็นพระราชโอรสของใคร
สมเด็จพระจักรพรรดิแม็กซิมิเลียนที่ 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 )
ตัวกรองแบบกำหนดเองของ SebasSBM (ช่วงทดสอบ)
SELECT Id FROM Posts WHERE ViewCount = 9999
ภารกิจเลือด ตีพิมพ์ครั้งแรกที่ประเทศไทยเมื่อไร
เดือนมีนาคม พ.ศ. 2547
ประเทศใดใช้พูดภาษาอังกฤษเป็นภาษาที่หนึ่ง
สหราชอาณาจักร สหรัฐอเมริกา แคนาดา ออสเตรเลีย ไอร์แลนด์ นิวซีแลนด์ และประเทศในแคริบเบียน
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 )
คะแนนเฉลี่ยต่อการดู 100 ครั้ง
WITH counts_cte AS (SELECT LAST_DATE_OF_MONTH(p.CreationDate) AS Cmonth, SUM(Score) AS Score, SUM(ViewCount) AS Views FROM Posts AS p WHERE PostTypeId = 1 GROUP BY LAST_DATE_OF_MONTH(p.CreationDate)) SELECT Cmonth, 100 * (CAST(Score AS FLOAT)) / (CAST(Views AS FLOAT)) AS "score_per_view" FROM counts_cte ORDER BY Cmonth
ราคาเท่าไรหรอครับ
ราคาเริ่มต้น : เริ่มจากขนาดความหนา 6 มม. 150 บาท/ตารางฟุต
ตะไคร้หอมถือว่าเป็นพืชสมุนไพรจัดอยู่ในวงศ์พรรณไม้ชนิดใด
วงศ์ : Gramineae
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
CREATE TABLE patients ( row_id number, subject_id number, gender text, dob time, dod time )
คนไข้หมายเลข 23930 เป็นเพศชายหรือเพศหญิง
SELECT patients.gender FROM patients WHERE patients.subject_id = 23930
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 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 )
โพสต์ที่มี 9 คะแนน
SELECT Score, Id AS "post_link" FROM Posts WHERE Score = 9 AND TIME_TO_STR(CreationDate, '%YEAR') = 2016 ORDER BY CreationDate 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 TIME_TO_STR(q.CreationDate, '%I') AS "Hour", CAST((100.0 * COUNT(q.ClosedDate) / COUNT(*)) AS FLOAT(10, 0)) AS "Closed percent", COUNT(*) AS "question_count" FROM Posts AS q WHERE q.PostTypeId = 1 GROUP BY TIME_TO_STR(q.CreationDate, '%I') ORDER BY 'Hour'
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 )
คำตอบที่ผู้ใช้มีการอ้างอิงถึง Wikipedia จะดึงคำตอบจากผู้ใช้ที่เลือกมาทั้งหมดที่มี 'en.wikipedia.org/wiki' ในนั้น
SELECT A.Id AS "post_link", A.CreationDate AS "answer_date" FROM Posts AS A WHERE A.PostTypeId = 2 AND (A.Body LIKE '%en.m.wikipedia.org/wiki%') ORDER BY 'answer_date' 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 )
ตั้งแต่ผู้ป่วยหมายเลข 032-9230 เข้าพักรักษาตัวในครั้งปัจจุบันในหอผู้ป่วย 1068 เป็นเวลาทั้งหมดกี่ชั่วโมงแล้ว
SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', patient.unitadmittime)) FROM patient WHERE patient.uniquepid = '032-9230' AND patient.wardid = 1068 AND patient.hospitaldischargetime IS NULL ORDER BY patient.unitadmittime LIMIT 1
ต้นเกดมีชื่อทางวิทยาศาสตร์ว่าอย่างไร
Manilkara hexandra
เจ้าแก้วบูฮม คือใคร
เจ้านายลาวผู้สร้างเมืองท่งหรือเมืองทุ่งศรีภูมิ
ปลาฉลามขาวอาศัยอยู่ตามแถบทะเลชายฝั่งเกือบทั่วทุกมุมโลกแต่ต้องมีอุณหภูมิเท่าไหร่
อุณหภูมิระหว่าง 12C - 24C
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 DisplayName, Reputation, Id จาก Users ที่ไหน UPPER(Location) LIKE '%ISRAEL%' สั่ง B
SELECT DisplayName, Reputation, Id AS "user_link" FROM Users WHERE UPPER(Location) LIKE '%ISRAEL%' ORDER BY 2 DESC
ต้นมะขามมีชื่อทางวิทยาศาสตร์ว่าอย่างไร
ชื่อวิทยาศาสตร์ : Tamarindus indica L.
CREATE TABLE payment ( payment_id number, customer_id number, staff_id number, rental_id number, amount number, payment_date time, last_update time )
ส่งคืนยอดรวมของยอดชำระเงินทั้งหมด
SELECT SUM(amount) FROM payment
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, Title, Score FROM Posts WHERE Title LIKE '/%/'
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
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 อันดับแรก ใน Arizona
SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation, Location FROM Users WHERE Reputation >= (SELECT Reputation FROM Users WHERE Id = 5285908) AND (UPPER(Location) LIKE '% AZ%' OR UPPER(Location) LIKE '% ARIZONA%') ORDER BY Reputation
พระอภัยมณีเป็นวรรณคดีผลงานชิ้นเอกของใคร
พระสุนทรโวหาร หรือสุนทรภู่
อาคารเดิมของธรีเวิลด์เทรดเซ็นเตอร์เริ่มก่อสร้างเมื่อใด
ธันวาคม ค.ศ. 1979
ฮิตเลอร์แต่งตั้งใครเป็นผู้บังคับบัญชากองทัพเยอรมัน
จอมพล เออร์วิน รอมเมล
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 COUNT(*), Users.Location FROM Users WHERE LOWER(Users.Location) = '%india%' GROUP BY Users.Location
CREATE TABLE medication ( medicationid number, patientunitstayid number, drugname text, dosage text, routeadmin text, drugstarttime time, drugstoptime time )
จำนวนใบสั่งยาแน่ชัดที่ปฏิบัติตั้งแต่ 4 ปีที่แล้ว มีจำนวนเท่าไหร่
SELECT COUNT(*) FROM medication WHERE medication.drugname = 'definity' AND DATETIME(medication.drugstarttime) >= DATETIME(CURRENT_TIME(), '-4 year')
ความสัมพันธ์ระหว่างลำดับของนิวคลีโอไทด์และลำดับของกรดอะมิโนนี้เรียกว่าอะไร
รหัสพันธุกรรม
ตรีชฎา เพชรรัตน์ เกิดวันที่เท่าไร
5 ตุลาคม 2529
ผู้ร้ายนำ Pll ไปใช้ทำอะไรได้บ้าง
การโจรกรรมอัตลักษณ์บุคคล
จังหวัดกำแพงเพชรอยู่ห่างจากกรุงเทพกี่กิโลเมตร
362 กิโลเมตร
อ็องตวน กาล็องมาจากประเทศอะไร
ฝรั่งเศส
พระโคตมพุทธเจ้า
เจ้าชายสิทธัตถะ
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 )
จนถึง 2104 คนไข้หมายเลข 86206 เข้ามาโรงพยาบาลครั้งแรกทาง Phys referral/Normal deli เมื่อไหร่
SELECT admissions.admittime FROM admissions WHERE admissions.subject_id = 86206 AND admissions.admission_location = 'phys referral/normal deli' AND STRFTIME('%y', admissions.admittime) <= '2104' ORDER BY admissions.admittime LIMIT 1
สาวผู้ที่สามารถดูดพลังผู้อื่นได้มีชื่อว่า ?
แอนนา มารี
CREATE TABLE Comments ( Id number, PostId number, Score number, Text text, CreationDate time, UserDisplayName text, UserId number, ContentLicense text )
การ์ตูนวิเคราะห์ข้อมูลที่คุณชื่นชอบคืออะไร?
SELECT * FROM Comments WHERE PostId = 423
สินค้าที่มีค่าของศูนย์กลางการค้าที่สำคัญของแอฟริกาคืออะไร
ยางสน ยางไม้หอม และเครื่องเทศ
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, CASE WHEN PostTypeId = 1 THEN 'Question' WHEN PostTypeId = 2 THEN 'Answer' END AS "Post Type", OwnerUserId AS "user_link" FROM Posts ORDER BY Score DESC LIMIT 100
อาหรับราตรีภาษาอังกฤษฉบับแรกใช้ชื่อว่าอะไร
ความบันเทิงอาหรับราตรี (The Arabian Nights' Entertainment)
ลิงคินพาร์ก ออกจำหน่ายเมื่อวันที่เท่าไร
2 สิงหาคม พ.ศ. 2553
มหกรรมกีฬาโอลิมปิกฤดูร้อนครั้งที่ 20 ประจำปีอะไร
ค.ศ. 1972 (พ.ศ. 2515)
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 )
คำถาม N คำ ที่มีหัวเรื่องสั้นที่สุดในไซต์ที่กำหนด
SELECT Id AS "post_link", LENGTH(Title) AS "no._of_characters" FROM Posts WHERE PostTypeId = 1 ORDER BY 'no._of_characters' LIMIT 100
CREATE TABLE medication ( medicationid number, patientunitstayid number, drugname text, dosage text, routeadmin text, drugstarttime time, drugstoptime time )
มีการจ่ายใบสั่งยาสำหรับการเตรียมสารละลายNSS ในปี 2101 กี่ใบ?
SELECT COUNT(*) FROM medication WHERE medication.drugname = 'nss infusion' AND STRFTIME('%y', medication.drugstarttime) = '2101'
ฟุตบอลชิงถ้วยพระราชทานประเภท ก. ชื่อเดิมว่าอะไร
ถ้วยใหญ่
CREATE TABLE Invoices ( Invoice_ID INTEGER, Order_ID INTEGER, payment_method_code CHAR(15), Product_ID INTEGER, Order_Quantity VARCHAR(288), Other_Item_Details VARCHAR(255), Order_Item_ID INTEGER )
ให้กราฟแท่งจำนวนรวมของแต่ละรหัสวิธีการชำระเงิน และเรียงข้อมูลแกน y จากน้อยไปมาก
SELECT payment_method_code, COUNT(*) FROM Invoices GROUP BY payment_method_code ORDER BY COUNT(*)
สัตว์ฟันแทะมีการดำรงชีวิตเป็นแบบใด
ขุดโพรงอยู่ใต้ดิน ในโพรงมีทางเข้าออกหลายทาง ซึ่งในโพรงนั้นเป็นแบ่งเป็นห้อง ๆ
ท่าอากาศยานนานาชาติสุลต่านมะฮ์มุด บาดารูดินที่ 2 อยู่เมืองอะไร
เมืองปาเล็มบัง
นายประพันธ์ บูรณุปกรณ์ เกิดเมื่อวันที่ เท่าไหร่ ?
12 เมษายน พ.ศ. 2492
เวิลด์ไวด์เว็บคืออะไร
พื้นที่ที่เก็บข้อมูลข่าวสารที่เชื่อมต่อกันทางอินเทอร์เน็ต
โรงเรียนปัวตั้งอยู่ที่ใด
ลขที่ 266 หมู่ 8 ถนนวรนคร ตำบลปัว อำเภอปัว จังหวัดน่าน
นมมีสีอะไร
สีขาว
ถนนพญาไท เป็นถนนสายไหนของประเทศ
สายหนึ่งในกรุงเทพมหานคร
ประชากรทั้งหมดของโตเกียวมีจำนวนเท่าใด
กว่า 35 ล้านคน
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 department, name, number FROM course WHERE (description LIKE '%Anthropology of Contemporary American Culture%' OR name LIKE '%Anthropology of Contemporary American Culture%') AND credits = 12
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 overflow)
SELECT u.Id, u.DisplayName, u.Reputation, u.WebsiteUrl, u.Age, u.LastAccessDate, u.Location FROM Users AS u WHERE (LOWER(u.Location) LIKE LOWER('##Location:string##')) OR (LOWER(u.Location) LIKE LOWER('##AltLocation:string##')) OR (LOWER(u.Location) LIKE LOWER('##AltLocation2:string##')) ORDER BY u.Reputation 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 )
200,000 โพสต์แรก โดยจำนวนการดู
SELECT * FROM Posts ORDER BY Posts.ViewCount DESC LIMIT 200000
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 TOP 100 DisplayName จาก Users WHERE Location='Russia' และ Reputation=(เลือกสูงสุด(ชื่อเสียง)
SELECT DisplayName, LastAccessDate, WebsiteUrl, AboutMe FROM Users WHERE Location = 'Russia' ORDER BY Reputation LIMIT 100
ต้นทับทิมเป็นพรรณไม้จัดอยู่ในวงศ์ชนิดใด
วงศ์ : Punicaceae
ในปี ค.ศ. 2015 มีประชากรกี่คน ?
74,782 คน
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 SUM(CASE WHEN Score < 0 THEN 1 ELSE 0 END) * 100 / COUNT(*) AS percentage, COUNT(*) AS total, SUM(CASE WHEN Score < 0 THEN 1 ELSE 0 END) AS negatice_count FROM Posts WHERE YEAR(CreationDate) = @year AND PostTypeId = 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 )
คำตอบที่นับได้ มากกว่า 50
SELECT * FROM Posts WHERE AnswerCount > 50
สุรัสวดี เชื้อชาติ ชื่อเล่นว่าอะไร
แหม่ม
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 )
คนไข้รหัส 50480 เข้าโรงพยาบาลมากี่รอบใน 6 ปีที่ผ่านมา
SELECT COUNT(DISTINCT admissions.hadm_id) FROM admissions WHERE admissions.subject_id = 50480 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 )
แจ้งยอดรวมผู้ป่วยที่พ้นจากการรักษาในโรงพยาบาล
SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE NOT admissions.dischtime IS NULL
CREATE TABLE ReviewTasks ( Id number, ReviewTaskTypeId number, CreationDate time, DeletionDate time, ReviewTaskStateId number, PostId number, SuggestedEditId number, CompletedByReviewTaskId number )
ปิดการโหวตสำหรับแท็ก X โดยผู้ใช้ (พร้อมลิงค์)
SELECT COUNT(*) FROM ReviewTasks WHERE ReviewTaskTypeId = 2 AND ReviewTaskStateId = 1
ปัจจุบันมีโรงพยาบาลพระจอมเกล้า (โรงพยาบาลเพชรบุรี) สร้างขึ้นใกล้กับเขาพนมขวดนี้ตั้งแต่ปี พ.ศ 2491 จากบันทึกที่มีชื่อว่าอะไร ?
หนังสือสมุดราชบุรี
ปลากัดป่าภาคใต้มีชื่อทางวิทยาศสตร์ว่าอย่างไร
ชื่อวิทยาศาสตร์: Betta imbellis
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 )
การรับเข้ารักษาครั้งสุดท้ายในปีนี้ของผู้ป่วยหมายเลข 4288 คือประเภทอะไร?
SELECT admissions.admission_type FROM admissions WHERE admissions.subject_id = 4288 AND DATETIME(admissions.admittime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-0 year') ORDER BY admissions.admittime DESC LIMIT 1
สินค้าขนาดเท่าไหร่
กว้าง 55 x ลึก 60 x สูง110-120 ซม.
หมอกล้า หัวใจแกร่ง เป็นละครโทรทัศน์ประเทศอะไร
อเมริกา
เจ้าอู่เมือง ณ เชียงตุง เจ้าฟ้าเมืองเชียงตุงองค์ที่เท่าไร
พระองค์สุดท้าย
CREATE TABLE PostHistory ( Id number, PostHistoryTypeId number, PostId number, RevisionGUID other, CreationDate time, UserId number, UserDisplayName text, Comment text, Text text, ContentLicense text )
จำนวนคำถามที่ถามในวันจันทร์
SELECT * FROM PostHistory AS p WHERE p.PostHistoryTypeId = 35 AND p.CreationDate BETWEEN '2016-10-18 00:00:00' AND '2018-10-18 23:59:59'
CREATE TABLE Tags ( Id number, TagName text, Count number, ExcerptPostId number, WikiPostId number )
แท็กมีคำถามทั้งหมดกี่ข้อ
SELECT Id FROM Tags WHERE TagName = 'SCOM'
เทศบาลตำบลบางจาก อยู่จังหวัดอะไร
จังหวัดนครศรีธรรมราช
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 )
หาจำนวนคนไข้ที่ได้เข้ารักษาที่โรงในปีนี้
SELECT COUNT(DISTINCT patient.uniquepid) FROM patient WHERE DATETIME(patient.hospitaladmittime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-0 year')
กลองโนรานิยมทำด้วยแก่นอะไร
แก่นไม้ขนุน
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) )
แสดงแท่งกราฟจำนวนใบแจ้งหนี้ที่ออกในแต่ละรัฐให้ฉันได้ไหม คุณเรียงข้อมูลของแกน Y ตามลำดับจากน้อยไปมากได้ไหม
SELECT billing_state, COUNT(*) FROM invoices WHERE billing_country = "USA" GROUP BY billing_state ORDER BY COUNT(*)
CREATE TABLE PostLinks ( Id number, CreationDate time, PostId number, RelatedPostId number, LinkTypeId number )
รับโพสต์ที่เชื่อมโยงโดยหมายเลขโพสต์
SELECT DISTINCT PostId AS "post_link", * FROM PostLinks WHERE RelatedPostId = '##PostId##'
พระยาขัติยะวงษาเอกาธิกสตานันท์ เป็นเจ้าเมืองอะไร
เจ้าเมืองร้อยเอ็ดองค์
สภาองคมนตรีแห่งพระราชินีมีชื่อเรียกอีกอย่างว่าอะไร
สภาองคมนตรีแห่งอังกฤษ
ปลากะรังหน้างอนมีชื่อทางวิทยาศาสตร์ว่าอย่างไร
ชื่อวิทยาศาสตร์: Cromileptes altivelis
ยากุป บวัชต์ชือกอฟสกี เกิดวันที่เท่าไร
14 ธันวาคม ค.ศ. 1985
สาธารณรัฐเติร์กเมนิสถาน เข้าร่วมการแข่งขันอะไร
กีฬาโอลิมปิก
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 )
เลือก id จาก posts โดยที่ ViewCount>100000
SELECT Id, Title FROM Posts WHERE ViewCount > 100000
แวมไพร์ อิน บรู๊คลิน มีสัญชาติอะไร
อเมริกา
ก่อตั้งขึ้นเมื่อใด
วันที่ 7 กรกฎาคม พ.ศ. 2453
วรรณกรรมเด็ก สำหรับเด็กยังครอบคลุมถึงอะไรบ้าง
สื่อ ของเล่น และการแสดงต่าง ๆ
วันสตรีไทย ตรงกับวันที่เท่าไหร่
วันที่ 1 สิงหาคมของทุกปี