context
stringlengths
27
489
answer
stringlengths
18
557
question_th
stringlengths
8
226
question_en
stringlengths
12
244
CREATE TABLE channel (name VARCHAR, channel_id VARCHAR); CREATE TABLE broadcast (channel_id VARCHAR, time_of_day VARCHAR)
SELECT t1.name FROM channel AS t1 JOIN broadcast AS t2 ON t1.channel_id = t2.channel_id WHERE t2.time_of_day = 'Morning' INTERSECT SELECT t1.name FROM channel AS t1 JOIN broadcast AS t2 ON t1.channel_id = t2.channel_id WHERE t2.time_of_day = 'Night'
ช่องที่ออกอากาศทั้งเช้าและกลางคืนชื่ออะไร?
what are the names of the channels that broadcast in both morning and night?
CREATE TABLE broadcast (time_of_day VARCHAR)
SELECT COUNT(*), time_of_day FROM broadcast GROUP BY time_of_day
แต่ละช่วงเวลาของวันมีรายการออกอากาศกี่รายการ?
how many programs are broadcast in each time section of the day?
CREATE TABLE broadcast (program_id VARCHAR, time_of_day VARCHAR)
SELECT COUNT(DISTINCT program_id) FROM broadcast WHERE time_of_day = 'Night'
ค้นหาจำนวนรายการต่างๆ ที่ออกอากาศในช่วงเวลากลางคืน
find the number of different programs that are broadcast during night time.
CREATE TABLE broadcast (program_id VARCHAR, Time_of_day VARCHAR); CREATE TABLE program (name VARCHAR, program_id VARCHAR); CREATE TABLE program (name VARCHAR)
SELECT name FROM program EXCEPT SELECT t1.name FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id WHERE t2.Time_of_day = "Morning"
ค้นหารายชื่อรายการที่ไม่เคยออกอากาศในตอนเช้า
Find the names of programs that are never broadcasted in the morning.
CREATE TABLE broadcast (program_id VARCHAR, Time_of_day VARCHAR); CREATE TABLE program (owner VARCHAR, program_id VARCHAR)
SELECT t1.owner FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id WHERE t2.Time_of_day = "Morning" INTERSECT SELECT t1.owner FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id WHERE t2.Time_of_day = "Night"
หาเจ้าของโปรแกรมที่มีบางโปรแกรมทั้งช่วงเช้าและกลางคืน
find the program owners that have some programs in both morning and night time.
CREATE TABLE program (origin VARCHAR)
SELECT origin FROM program ORDER BY origin
แสดงรายการที่มาของโปรแกรมทั้งหมดตามลำดับตัวอักษร
List all program origins in the alphabetical order.
CREATE TABLE channel (OWNER VARCHAR)
SELECT COUNT(DISTINCT OWNER) FROM channel
เจ้าของช่องมีจำนวนเท่าใด?
what is the number of different channel owners?
CREATE TABLE program (name VARCHAR, origin VARCHAR)
SELECT name FROM program WHERE origin <> 'Beijing'
ค้นหาชื่อโปรแกรมที่ไม่ได้มีต้นกำเนิดอยู่ที่ปักกิ่ง
find the names of programs whose origin is not in Beijing.
CREATE TABLE channel (name VARCHAR, OWNER VARCHAR)
SELECT name FROM channel WHERE OWNER = 'CCTV' OR OWNER = 'HBS'
ชื่อช่องที่เป็นของ CCTV หรือ HBS คืออะไร?
What are the names of the channels owned by CCTV or HBS?
CREATE TABLE channel (OWNER VARCHAR, Rating_in_percent INTEGER)
SELECT SUM(Rating_in_percent), OWNER FROM channel GROUP BY OWNER
ค้นหาอัตราส่วนเรตติ้งรวมสำหรับเจ้าของช่องแต่ละราย
Find the total rating ratio for each channel owner.
CREATE TABLE program (name VARCHAR, program_id VARCHAR); CREATE TABLE broadcast (program_id VARCHAR)
SELECT t1.name FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id GROUP BY t2.program_id ORDER BY COUNT(*) DESC LIMIT 1
ค้นหาชื่อรายการที่ออกอากาศบ่อยที่สุด
Find the name of the program that is broadcast most frequently.
CREATE TABLE COURSES (Id VARCHAR)
SELECT COUNT(*) FROM COURSES
มีทั้งหมดกี่หลักสูตร?
How many courses are there in total?
CREATE TABLE COURSES (course_description VARCHAR, course_name VARCHAR)
SELECT course_description FROM COURSES WHERE course_name = "database"
รายวิชาชื่อ “ฐานข้อมูล” มีคำอธิบายอย่างไร?
What are the descriptions of the courses with name "database"?
CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR, personal_name VARCHAR)
SELECT address_line_1 FROM Course_Authors_and_Tutors WHERE personal_name = "Cathrine"
ที่อยู่ของผู้เขียนหลักสูตรหรือผู้สอนที่มีชื่อส่วนตัวว่า "แคทรีน" คืออะไร
What are the addresses of the course authors or tutors with personal name "Cathrine"
CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR)
SELECT address_line_1 FROM Course_Authors_and_Tutors
ระบุที่อยู่ของผู้เขียนหลักสูตรหรือผู้สอนทั้งหมด
List the addresses of all the course authors or tutors.
CREATE TABLE Course_Authors_and_Tutors (login_name VARCHAR, family_name VARCHAR)
SELECT login_name, family_name FROM Course_Authors_and_Tutors
ระบุชื่อล็อกอินและนามสกุลของผู้แต่งหลักสูตรและผู้สอน
List all the login names and family names of course author and tutors.
CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, date_of_completion VARCHAR)
SELECT date_of_enrolment, date_of_completion FROM Student_Course_Enrolment
ระบุวันที่ลงทะเบียนและสำเร็จการศึกษาของนักเรียนทั้งหมด
List all the dates of enrollment and completion of students.
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR)
SELECT COUNT(DISTINCT student_id) FROM Student_Course_Enrolment
มีนักศึกษาที่แตกต่างกันกี่คนที่ลงทะเบียนเรียนในหลักสูตร?
How many distinct students are enrolled in courses?
CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)
SELECT COUNT(course_id) FROM Student_Course_Enrolment
นักเรียนลงทะเบียนเรียนในหลักสูตรที่แตกต่างกันกี่หลักสูตร?
How many distinct courses are enrolled in by students?
CREATE TABLE Student_Tests_Taken (date_test_taken VARCHAR, test_result VARCHAR)
SELECT date_test_taken FROM Student_Tests_Taken WHERE test_result = "Pass"
ค้นหาวันที่ทำการทดสอบพร้อมผล "ผ่าน"
Find the dates of the tests taken with result "Pass".
CREATE TABLE Student_Tests_Taken (test_result VARCHAR)
SELECT COUNT(*) FROM Student_Tests_Taken WHERE test_result = "Fail"
มีการทดสอบกี่ครั้งที่ผลลัพธ์ "ล้มเหลว"?
How many tests have result "Fail"?
CREATE TABLE Students (login_name VARCHAR, family_name VARCHAR)
SELECT login_name FROM Students WHERE family_name = "Ward"
ชื่อล็อกอินของนักเรียนที่มีนามสกุล "วอร์ด" คืออะไร?
What are the login names of the students with family name "Ward"?
CREATE TABLE Students (date_of_latest_logon VARCHAR, family_name VARCHAR)
SELECT date_of_latest_logon FROM Students WHERE family_name = "Jaskolski" OR family_name = "Langosh"
วันที่เข้าสู่ระบบล่าสุดของนักเรียนที่มีนามสกุล "Jaskolski" หรือ "Langosh" คือวันที่ใด
What are the dates of the latest logon of the students with family name "Jaskolski" or "Langosh"?
CREATE TABLE Students (personal_name VARCHAR)
SELECT COUNT(*) FROM Students WHERE personal_name LIKE "%son%"
มีนักเรียนกี่คนที่มีชื่อส่วนตัวที่มีคำว่า "ลูกชาย"?
How many students have personal names that contain the word "son"?
CREATE TABLE SUBJECTS (subject_name VARCHAR)
SELECT subject_name FROM SUBJECTS
ระบุชื่อเรื่องทั้งหมด
List all the subject names.
CREATE TABLE Course_Authors_and_Tutors (personal_name VARCHAR)
SELECT * FROM Course_Authors_and_Tutors ORDER BY personal_name
แสดงรายการข้อมูลทั้งหมดเกี่ยวกับผู้เขียนหลักสูตรและผู้สอนตามลำดับตัวอักษรของชื่อบุคคล
List all the information about course authors and tutors in alphabetical order of the personal name.
CREATE TABLE Students (personal_name VARCHAR, family_name VARCHAR)
SELECT personal_name, family_name FROM Students ORDER BY family_name
ระบุชื่อบุคคลและนามสกุลของนักเรียนทุกคนตามลำดับตัวอักษรของนามสกุล
List the personal names and family names of all the students in alphabetical order of family name.
CREATE TABLE Student_Tests_Taken (test_result VARCHAR)
SELECT test_result, COUNT(*) FROM Student_Tests_Taken GROUP BY test_result ORDER BY COUNT(*) DESC
แสดงรายการผลการทดสอบแต่ละรายการและการนับตามลำดับการนับจากมากไปน้อย
List each test result and its count in descending order of count.
CREATE TABLE Courses (author_id VARCHAR, course_name VARCHAR); CREATE TABLE Course_Authors_and_Tutors (login_name VARCHAR, author_id VARCHAR)
SELECT T1.login_name FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T2.course_name = "advanced database"
ค้นหาชื่อเข้าสู่ระบบของผู้เขียนรายวิชาที่สอนรายวิชาชื่อ "ฐานข้อมูลขั้นสูง"
Find the login name of the course author that teaches the course with name "advanced database".
CREATE TABLE Courses (author_id VARCHAR, course_name VARCHAR); CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR, author_id VARCHAR)
SELECT T1.address_line_1 FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T2.course_name = "operating system" OR T2.course_name = "data structure"
ค้นหาที่อยู่ของผู้เขียนรายวิชาที่สอนรายวิชาชื่อ "ระบบปฏิบัติการ" หรือ "โครงสร้างข้อมูล"
Find the addresses of the course authors who teach the course with name "operating system" or "data structure".
CREATE TABLE Courses (author_id VARCHAR); CREATE TABLE Course_Authors_and_Tutors (personal_name VARCHAR, family_name VARCHAR, author_id VARCHAR)
SELECT T1.personal_name, T1.family_name, T2.author_id FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id GROUP BY T2.author_id ORDER BY COUNT(*) DESC LIMIT 1
ค้นหาชื่อบุคคล ชื่อสกุล และรหัสผู้เขียนของผู้เขียนหลักสูตรที่สอนหลักสูตรมากที่สุด
Find the personal name, family name, and author ID of the course author that teaches the most courses.
CREATE TABLE Courses (author_id VARCHAR); CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR, author_id VARCHAR)
SELECT T1.address_line_1, T2.author_id FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id GROUP BY T2.author_id HAVING COUNT(*) >= 2
ค้นหาที่อยู่และรหัสผู้เขียนของผู้เขียนหลักสูตรที่สอนอย่างน้อยสองหลักสูตร
Find the addresses and author IDs of the course authors that teach at least two courses.
CREATE TABLE Course_Authors_and_Tutors (author_id VARCHAR, personal_name VARCHAR); CREATE TABLE Courses (course_name VARCHAR, author_id VARCHAR)
SELECT T2.course_name FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T1.personal_name = "Julio"
ค้นหาชื่อหลักสูตรที่สอนโดยอาจารย์ผู้สอนที่มีชื่อส่วนตัวว่า "จูลิโอ"
Find the names of courses taught by the tutor who has personal name "Julio".
CREATE TABLE Courses (course_name VARCHAR, course_description VARCHAR, subject_id VARCHAR); CREATE TABLE Subjects (subject_id VARCHAR, subject_name VARCHAR)
SELECT T1.course_name, T1.course_description FROM Courses AS T1 JOIN Subjects AS T2 ON T1.subject_id = T2.subject_id WHERE T2.subject_name = "Computer Science"
ค้นหาชื่อและคำอธิบายรายวิชาที่อยู่ในหัวข้อ “วิทยาการคอมพิวเตอร์”
Find the names and descriptions of courses that belong to the subject named "Computer Science".
CREATE TABLE Courses (subject_id VARCHAR); CREATE TABLE Subjects (subject_name VARCHAR, subject_id VARCHAR)
SELECT T1.subject_id, T2.subject_name, COUNT(*) FROM Courses AS T1 JOIN Subjects AS T2 ON T1.subject_id = T2.subject_id GROUP BY T1.subject_id
ค้นหารหัสวิชา ชื่อวิชา และจำนวนหลักสูตรที่มีอยู่สำหรับแต่ละวิชา
Find the subject ID, subject name, and the corresponding number of available courses for each subject.
CREATE TABLE Courses (subject_id VARCHAR); CREATE TABLE Subjects (subject_name VARCHAR, subject_id VARCHAR)
SELECT T1.subject_id, T2.subject_name, COUNT(*) FROM Courses AS T1 JOIN Subjects AS T2 ON T1.subject_id = T2.subject_id GROUP BY T1.subject_id ORDER BY COUNT(*)
ค้นหารหัสวิชา ชื่อวิชา และจำนวนหลักสูตรที่สอดคล้องกันสำหรับแต่ละวิชา และจัดเรียงตามจำนวนหลักสูตรจากน้อยไปหามาก
Find the subject ID, name of subject and the corresponding number of courses for each subject, and sort by the course count in ascending order.
CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, course_id VARCHAR); CREATE TABLE Courses (course_id VARCHAR, course_name VARCHAR)
SELECT T2.date_of_enrolment FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id WHERE T1.course_name = "Spanish"
วันที่ลงทะเบียนเรียนหลักสูตรภาษาสเปนคือเมื่อใด
What is the date of enrollment of the course named "Spanish"?
CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)
SELECT T1.course_name FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name ORDER BY COUNT(*) DESC LIMIT 1
รายวิชาใดที่มีผู้ลงทะเบียนเรียนมากที่สุดชื่ออะไร
What is the name of the course that has the most student enrollment?
CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)
SELECT T1.course_name FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name HAVING COUNT(*) = 1
รายวิชาที่มีผู้ลงทะเบียนเรียนเพียง 1 คน ชื่อหลักสูตรอะไร
What are the names of the courses that have exactly 1 student enrollment?
CREATE TABLE Student_Course_Enrolment (course_id VARCHAR); CREATE TABLE Courses (course_description VARCHAR, course_name VARCHAR, course_id VARCHAR)
SELECT T1.course_description, T1.course_name FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name HAVING COUNT(*) > 2
คำอธิบายและชื่อของหลักสูตรที่มีจำนวนนักศึกษาลงทะเบียนมากกว่า 2 คืออะไร?
What are the descriptions and names of the courses that have student enrollment bigger than 2?
CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)
SELECT T1.course_name, COUNT(*) FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name
แต่ละหลักสูตรชื่ออะไรและจำนวนนักศึกษาที่ลงทะเบียนตรงกันคืออะไร?
What is the name of each course and the corresponding number of student enrollment?
CREATE TABLE Student_Tests_Taken (registration_id VARCHAR, test_result VARCHAR); CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, registration_id VARCHAR)
SELECT T1.date_of_enrolment FROM Student_Course_Enrolment AS T1 JOIN Student_Tests_Taken AS T2 ON T1.registration_id = T2.registration_id WHERE T2.test_result = "Pass"
วันที่ลงทะเบียนของการทดสอบทั้งหมดที่มีผล "ผ่าน" คือเมื่อใด
What are the enrollment dates of all the tests that have result "Pass"?
CREATE TABLE Student_Tests_Taken (registration_id VARCHAR, test_result VARCHAR); CREATE TABLE Student_Course_Enrolment (date_of_completion VARCHAR, registration_id VARCHAR)
SELECT T1.date_of_completion FROM Student_Course_Enrolment AS T1 JOIN Student_Tests_Taken AS T2 ON T1.registration_id = T2.registration_id WHERE T2.test_result = "Fail"
การทดสอบทั้งหมดที่มีผล "ล้มเหลว" จะแล้วเสร็จเมื่อใด
What are the completion dates of all the tests that have result "Fail"?
CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, date_of_completion VARCHAR, student_id VARCHAR); CREATE TABLE Students (student_id VARCHAR, personal_name VARCHAR)
SELECT T1.date_of_enrolment, T1.date_of_completion FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id WHERE T2.personal_name = "Karson"
ระบุวันที่ลงทะเบียนและสำเร็จการศึกษาของนักศึกษาโดยใช้ชื่อบุคคลว่า "คาร์สัน"
List the dates of enrollment and completion of the student with personal name "Karson".
CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, date_of_completion VARCHAR, student_id VARCHAR); CREATE TABLE Students (student_id VARCHAR, family_name VARCHAR, personal_name VARCHAR)
SELECT T1.date_of_enrolment, T1.date_of_completion FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id WHERE T2.family_name = "Zieme" AND T2.personal_name = "Bernie"
ระบุวันที่ลงทะเบียนและสำเร็จการศึกษาของนักเรียนด้วยนามสกุล "Zieme" และชื่อส่วนตัว "Bernie"
List the dates of enrollment and completion of the student with family name "Zieme" and personal name "Bernie".
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (login_name VARCHAR, student_id VARCHAR)
SELECT T1.student_id, T2.login_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1
ค้นหารหัสนักศึกษาและชื่อล็อกอินของนักศึกษาที่มีการลงทะเบียนเรียนมากที่สุด
Find the student ID and login name of the student with the most course enrollments
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (personal_name VARCHAR, student_id VARCHAR)
SELECT T1.student_id, T2.personal_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING COUNT(*) >= 2
ค้นหาบัตรประจำตัวนักเรียนและชื่อส่วนตัวของนักเรียนที่มีการลงทะเบียนอย่างน้อยสองครั้ง
Find the student ID and personal name of the student with at least two enrollments.
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (middle_name VARCHAR, student_id VARCHAR)
SELECT T1.student_id, T2.middle_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING COUNT(*) <= 2
ค้นหารหัสนักศึกษาและชื่อกลางของนักเรียนทุกคนที่ลงทะเบียนได้สูงสุดสองครั้ง
Find the student ID and middle name for all the students with at most two enrollments.
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (personal_name VARCHAR); CREATE TABLE Students (personal_name VARCHAR, student_id VARCHAR)
SELECT personal_name FROM Students EXCEPT SELECT T1.personal_name FROM Students AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.student_id = T2.student_id
ค้นหารายชื่อนักศึกษาที่ไม่ได้ลงทะเบียนรายวิชาใดๆ
Find the personal names of students not enrolled in any course.
CREATE TABLE Students (student_id VARCHAR); CREATE TABLE Student_Course_Enrolment (student_id VARCHAR)
SELECT COUNT(*) FROM Students WHERE NOT student_id IN (SELECT student_id FROM Student_Course_Enrolment)
มีนักเรียนกี่คนที่ไม่ได้ลงทะเบียนเรียนหลักสูตรใดเลย?
How many students did not have any course enrollment?
CREATE TABLE Course_Authors_and_Tutors (login_name VARCHAR); CREATE TABLE Students (login_name VARCHAR)
SELECT login_name FROM Course_Authors_and_Tutors INTERSECT SELECT login_name FROM Students
ค้นหาชื่อเข้าสู่ระบบทั่วไปของผู้เขียนหลักสูตรและนักศึกษา
Find the common login name of course authors and students.
CREATE TABLE Course_Authors_and_Tutors (personal_name VARCHAR); CREATE TABLE Students (personal_name VARCHAR)
SELECT personal_name FROM Course_Authors_and_Tutors INTERSECT SELECT personal_name FROM Students
ค้นหาชื่อบุคคลทั่วไปของผู้เขียนรายวิชาและนักศึกษา
Find the common personal name of course authors and students.
CREATE TABLE Settlements (Claim_id VARCHAR); CREATE TABLE Claims (Amount_Claimed INTEGER); CREATE TABLE Claims (Date_Claim_Made VARCHAR, Claim_id VARCHAR, Amount_Claimed INTEGER)
SELECT T1.Date_Claim_Made, T1.Claim_id FROM Claims AS T1 JOIN Settlements AS T2 ON T1.Claim_id = T2.Claim_id GROUP BY T1.Claim_id HAVING COUNT(*) > 2 UNION SELECT T1.Date_Claim_Made, T1.Claim_id FROM Claims AS T1 JOIN Settlements AS T2 ON T1.Claim_id = T2.Claim_id WHERE T1.Amount_Claimed = (SELECT MAX(Amount_Claimed) FROM Claims)
การเรียกร้องใดทำให้เกิดการชำระหนี้มากกว่า 2 ครั้งหรือมีมูลค่าการเรียกร้องสูงสุด? ระบุวันที่ที่ทำการเรียกร้องและรหัสการเรียกร้อง
Which claims caused more than 2 settlements or have the maximum claim value? List the date the claim was made and the claim id.
CREATE TABLE Customers (customer_details VARCHAR, customer_id VARCHAR, Customer_id VARCHAR); CREATE TABLE Customer_Policies (customer_id VARCHAR, policy_id VARCHAR); CREATE TABLE Claims (policy_id VARCHAR)
SELECT T1.customer_details, T1.customer_id FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.Customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 2 EXCEPT SELECT T1.customer_details, T1.customer_id FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.Customer_id = T2.customer_id JOIN Claims AS T3 ON T2.policy_id = T3.policy_id
ลูกค้ารายใดที่มีกรมธรรม์อย่างน้อย 2 กรมธรรม์แต่ไม่ได้ยื่นคำร้องใดๆ ระบุรายละเอียดลูกค้าและรหัสประจำตัว
Which customer had at least 2 policies but did not file any claims? List the customer details and id.
CREATE TABLE Payments (Payment_Method_Code VARCHAR, Date_Payment_Made VARCHAR, Amount_Payment VARCHAR)
SELECT Payment_Method_Code, Date_Payment_Made, Amount_Payment FROM Payments ORDER BY Date_Payment_Made
ระบุวิธี วันที่ และจำนวนเงินที่ชำระทั้งหมด โดยเรียงตามลำดับวันที่จากน้อยไปหามาก
List the method, date and amount of all the payments, in ascending order of date.
CREATE TABLE Claims (Amount_Settled VARCHAR, Amount_Claimed VARCHAR)
SELECT Amount_Settled, Amount_Claimed FROM Claims ORDER BY Amount_Claimed DESC LIMIT 1
ในบรรดาการเรียกร้องทั้งหมด จำนวนเงินการชำระหนี้ของการเรียกร้องที่มีจำนวนเงินการเรียกร้องมากที่สุดคือเท่าใด? ระบุทั้งจำนวนเงินที่ชำระและจำนวนเงินที่เรียกร้อง
Among all the claims, what is the settlement amount of the claim with the largest claim amount? List both the settlement amount and claim amount.
CREATE TABLE Claims (Amount_Settled VARCHAR, Amount_Claimed VARCHAR)
SELECT Amount_Settled, Amount_Claimed FROM Claims ORDER BY Amount_Settled LIMIT 1
ในบรรดาการเรียกร้องทั้งหมด จำนวนเงินที่เรียกร้องในการเรียกร้องที่มีการชำระหนี้น้อยที่สุดคือเท่าใด? ระบุทั้งจำนวนเงินที่ชำระและจำนวนเงินที่เรียกร้อง
Among all the claims, what is the amount claimed in the claim with the least amount settled? List both the settlement amount and claim amount.
CREATE TABLE Claims (Date_Claim_Made VARCHAR, Date_Claim_Settled VARCHAR, Amount_Claimed INTEGER)
SELECT Date_Claim_Made, Date_Claim_Settled FROM Claims WHERE Amount_Claimed > (SELECT AVG(Amount_Claimed) FROM Claims)
ในบรรดาการเรียกร้องทั้งหมด การเรียกร้องใดที่มีจำนวนเงินที่เรียกร้องมากกว่าค่าเฉลี่ย? ระบุวันที่ที่มีการเรียกร้องและวันที่มีการยุติ
Among all the claims, which claims have a claimed amount larger than the average? List the date the claim was made and the date it was settled.
CREATE TABLE Claims (Date_Claim_Made VARCHAR, Amount_Settled INTEGER)
SELECT Date_Claim_Made FROM Claims WHERE Amount_Settled <= (SELECT AVG(Amount_Settled) FROM Claims)
ในบรรดาการเรียกร้องทั้งหมด การชำระหนี้ข้อใดมีจำนวนเงินที่เรียกร้องไม่เกินค่าเฉลี่ย? ระบุวันที่เริ่มต้นการเรียกร้อง
Among all the claims, which settlements have a claimed amount that is no more than the average? List the claim start date.
CREATE TABLE Settlements (claim_id VARCHAR); CREATE TABLE Claims (Claim_id VARCHAR, claim_id VARCHAR)
SELECT T1.Claim_id, COUNT(*) FROM Claims AS T1 JOIN Settlements AS T2 ON T1.claim_id = T2.claim_id GROUP BY T1.claim_id
การเรียกร้องแต่ละครั้งสอดคล้องกับการชำระหนี้กี่ครั้ง? ระบุรหัสการอ้างสิทธิ์และจำนวนการชำระหนี้
How many settlements does each claim correspond to? List the claim id and the number of settlements.
CREATE TABLE Claims (claim_id VARCHAR, date_claim_made VARCHAR); CREATE TABLE Settlements (claim_id VARCHAR)
SELECT T1.claim_id, T1.date_claim_made, COUNT(*) FROM Claims AS T1 JOIN Settlements AS T2 ON T1.claim_id = T2.claim_id GROUP BY T1.claim_id ORDER BY COUNT(*) DESC LIMIT 1
การเรียกร้องใดทำให้เกิดการชำระหนี้มากที่สุด? ระบุรหัสการเรียกร้อง วันที่ที่มีการเรียกร้อง และหมายเลข
Which claim incurred the most number of settlements? List the claim id, the date the claim was made, and the number.
CREATE TABLE Settlements (claim_id VARCHAR); CREATE TABLE Claims (claim_id VARCHAR, Date_Claim_Settled VARCHAR)
SELECT COUNT(*), T1.claim_id FROM Claims AS T1 JOIN Settlements AS T2 ON T1.claim_id = T2.claim_id GROUP BY T1.claim_id ORDER BY T1.Date_Claim_Settled DESC LIMIT 1
มีการชำระหนี้จำนวนเท่าใดในการเรียกร้อง ณ วันที่ยุติการเรียกร้องครั้งล่าสุด ระบุหมายเลขและรหัสการอ้างสิทธิ์
How many settlements were made on the claim with the most recent claim settlement date? List the number and the claim id.
CREATE TABLE Claims (Date_Claim_Made VARCHAR)
SELECT Date_Claim_Made FROM Claims ORDER BY Date_Claim_Made LIMIT 1
ในบรรดาการเรียกร้องทั้งหมด การเรียกร้องเกิดขึ้นเร็วที่สุดคือเมื่อใด
Of all the claims, what was the earliest date when any claim was made?
CREATE TABLE Settlements (Amount_Settled INTEGER)
SELECT SUM(Amount_Settled) FROM Settlements
จำนวนเงินรวมของการชำระหนี้สำหรับการชำระหนี้ทั้งหมดคือเท่าใด?
What is the total amount of settlement made for all the settlements?
CREATE TABLE Customers (customer_details VARCHAR, customer_id VARCHAR, Customer_id VARCHAR); CREATE TABLE Customer_Policies (Customer_id VARCHAR)
SELECT T1.customer_details, T1.customer_id FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.Customer_id = T2.Customer_id GROUP BY T1.customer_id HAVING COUNT(*) > 1
ลูกค้าที่มีกรมธรรม์มากกว่า 1 ฉบับ คือใคร? ระบุรายละเอียดลูกค้าและรหัสประจำตัว
Who are the customers that had more than 1 policy? List the customer details and id.
CREATE TABLE Settlements (Date_Claim_Made VARCHAR, Date_Claim_Settled VARCHAR)
SELECT Date_Claim_Made, Date_Claim_Settled FROM Settlements
วันที่เรียกร้องและวันที่ชำระหนี้ของการชำระหนี้ทั้งหมดคือเมื่อใด
What are the claim dates and settlement dates of all the settlements?
CREATE TABLE Payments (Payment_Method_Code VARCHAR)
SELECT Payment_Method_Code FROM Payments GROUP BY Payment_Method_Code ORDER BY COUNT(*) DESC LIMIT 1
วิธีการชำระเงินที่ได้รับความนิยมมากที่สุดคืออะไร?
What is the most popular payment method?
CREATE TABLE Payments (Payment_Method_Code VARCHAR)
SELECT Payment_Method_Code FROM Payments GROUP BY Payment_Method_Code ORDER BY COUNT(*) LIMIT 1
วิธีการชำระเงินแบบใดที่มีการประมวลผลการชำระเงินน้อยที่สุด
With which kind of payment method were the least number of payments processed?
CREATE TABLE Payments (Amount_Payment INTEGER)
SELECT SUM(Amount_Payment) FROM Payments
จำนวนเงินที่ชำระทั้งหมดคือเท่าไร?
What is the total amount of payment?
CREATE TABLE Customers (customer_details VARCHAR)
SELECT DISTINCT customer_details FROM Customers
รายละเอียดที่แตกต่างของลูกค้าคืออะไร?
What are all the distinct details of the customers?
CREATE TABLE Customer_Policies (Policy_Type_Code VARCHAR)
SELECT Policy_Type_Code FROM Customer_Policies GROUP BY Policy_Type_Code ORDER BY COUNT(*) DESC LIMIT 1
ลูกค้าเลือกกรมธรรม์ประเภทใดมากที่สุด?
Which kind of policy type was chosen by the most customers?
CREATE TABLE Settlements (Id VARCHAR)
SELECT COUNT(*) FROM Settlements
มีการตั้งถิ่นฐานทั้งหมดกี่แห่ง?
How many settlements are there in total?
CREATE TABLE Payments (Payment_ID VARCHAR, Date_Payment_Made VARCHAR, Amount_Payment VARCHAR, Payment_Method_Code VARCHAR)
SELECT Payment_ID, Date_Payment_Made, Amount_Payment FROM Payments WHERE Payment_Method_Code = 'Visa'
การชำระเงินใดบ้างที่ประมวลผลด้วย Visa ระบุรหัสการชำระเงิน วันที่ และจำนวนเงิน
Which Payments were processed with Visa? List the payment Id, the date and the amount.
CREATE TABLE Customer_Policies (customer_id VARCHAR); CREATE TABLE Customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE Customers (customer_details VARCHAR)
SELECT customer_details FROM Customers EXCEPT SELECT T1.customer_details FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.customer_id = T2.customer_id
ระบุรายละเอียดของลูกค้าที่ไม่มีกรมธรรม์ใดๆ
List the details of the customers who do not have any policies.
CREATE TABLE Claims (claim_id VARCHAR, date_claim_made VARCHAR, Date_Claim_Settled VARCHAR, Claim_id VARCHAR); CREATE TABLE Settlements (Claim_id VARCHAR)
SELECT T1.claim_id, T1.date_claim_made, T1.Date_Claim_Settled FROM Claims AS T1 JOIN Settlements AS T2 ON T1.Claim_id = T2.Claim_id GROUP BY T1.claim_id HAVING COUNT(*) = 1
ระบุวันที่ที่มีการเรียกร้อง วันที่ที่มีการชำระหนี้ และจำนวนเงินที่ชำระสำหรับการเรียกร้องทั้งหมดที่มีการชำระหนี้เพียงครั้งเดียว
List the date the claim was made, the date it was settled and the amount settled for all the claims which had exactly one settlement.
CREATE TABLE Claims (Amount_Claimed INTEGER)
SELECT SUM(Amount_Claimed) FROM Claims
ค้นหายอดรวมของการเรียกร้องทั้งหมด
Find the total claimed amount of all the claims.
CREATE TABLE department (name VARCHAR, departmentID VARCHAR)
SELECT name FROM department GROUP BY departmentID ORDER BY COUNT(departmentID) DESC LIMIT 1
แผนกใดมีจำนวนพนักงานมากที่สุด?
Which department has the largest number of employees?
CREATE TABLE department (head VARCHAR, departmentID VARCHAR)
SELECT head FROM department GROUP BY departmentID ORDER BY COUNT(departmentID) LIMIT 1
รหัสพนักงานของหัวหน้าแผนกที่มีจำนวนพนักงานน้อยที่สุดคือข้อใด
What is the employee id of the head whose department has the least number of employees?
CREATE TABLE department (head VARCHAR); CREATE TABLE physician (name VARCHAR, position VARCHAR, EmployeeID VARCHAR)
SELECT T2.name, T2.position FROM department AS T1 JOIN physician AS T2 ON T1.head = T2.EmployeeID GROUP BY departmentID ORDER BY COUNT(departmentID) LIMIT 1
ชื่อและตำแหน่งหัวหน้าแผนกที่มีจำนวนพนักงานน้อยที่สุดคือข้อใด
what is the name and position of the head whose department has least number of employees?
CREATE TABLE appointment (patient VARCHAR); CREATE TABLE patient (ssn VARCHAR)
SELECT name FROM appointment AS T1 JOIN patient AS T2 ON T1.patient = T2.ssn
คนไข้ที่นัดหมายชื่ออะไรบ้าง?
What are names of patients who made an appointment?
CREATE TABLE appointment (patient VARCHAR); CREATE TABLE patient (ssn VARCHAR)
SELECT name, phone FROM appointment AS T1 JOIN patient AS T2 ON T1.patient = T2.ssn GROUP BY T1.patient HAVING COUNT(*) > 1
ชื่อและหมายเลขโทรศัพท์ของผู้ป่วยที่ได้รับการนัดหมายมากกว่าหนึ่งครั้งคืออะไร?
what are name and phone number of patients who had more than one appointment?
CREATE TABLE appointment (appointmentid VARCHAR, START VARCHAR)
SELECT appointmentid FROM appointment ORDER BY START DESC LIMIT 1
ค้นหารหัสของการนัดหมายพร้อมวันที่เริ่มต้นล่าสุดหรือไม่
Find the id of the appointment with the most recent start date?
CREATE TABLE appointment (Physician VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)
SELECT T2.name FROM appointment AS T1 JOIN physician AS T2 ON T1.Physician = T2.EmployeeID
รายชื่อแพทย์ที่ได้รับการนัดหมาย
List the name of physicians who took some appointment.
CREATE TABLE physician (name VARCHAR); CREATE TABLE appointment (Physician VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)
SELECT name FROM physician EXCEPT SELECT T2.name FROM appointment AS T1 JOIN physician AS T2 ON T1.Physician = T2.EmployeeID
รายชื่อแพทย์ที่ไม่เคยนัดหมายใดๆ
List the name of physicians who never took any appointment.
CREATE TABLE department (name VARCHAR, DepartmentID VARCHAR); CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR, PrimaryAffiliation VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)
SELECT T1.name, T3.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T2.PrimaryAffiliation = 1
ค้นหาชื่อแพทย์ทั้งหมดและชื่อแผนกหลักในเครือ
Find the names of all physicians and their primary affiliated departments' names.
CREATE TABLE patient (name VARCHAR, ssn VARCHAR); CREATE TABLE appointment (patient VARCHAR, start VARCHAR)
SELECT T1.name FROM patient AS T1 JOIN appointment AS T2 ON T1.ssn = T2.patient ORDER BY T2.start DESC LIMIT 1
คนไข้ที่นัดครั้งล่าสุดชื่ออะไร?
What is the name of the patient who made the most recent appointment?
CREATE TABLE stay (patient VARCHAR, room VARCHAR)
SELECT COUNT(patient) FROM stay WHERE room = 112
ผู้ป่วยพักอยู่ในห้อง 112 กี่คน?
How many patients stay in room 112?
CREATE TABLE patient (SSN VARCHAR); CREATE TABLE prescribes (patient VARCHAR, physician VARCHAR); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR)
SELECT COUNT(T1.SSN) FROM patient AS T1 JOIN prescribes AS T2 ON T1.SSN = T2.patient JOIN physician AS T3 ON T2.physician = T3.employeeid WHERE T3.name = "John Dorian"
แพทย์ John Dorian เป็นผู้สั่งจ่ายยาให้กับคนไข้จำนวนกี่ราย?
How many patients' prescriptions are made by physician John Dorian?
CREATE TABLE Prescribes (Patient VARCHAR, Medication VARCHAR); CREATE TABLE Medication (name VARCHAR, Code VARCHAR); CREATE TABLE patient (SSN VARCHAR); CREATE TABLE stay (Patient VARCHAR)
SELECT T4.name FROM stay AS T1 JOIN patient AS T2 ON T1.Patient = T2.SSN JOIN Prescribes AS T3 ON T3.Patient = T2.SSN JOIN Medication AS T4 ON T3.Medication = T4.Code WHERE room = 111
ค้นหาชื่อยาที่ใช้กับคนไข้ที่เข้าพักห้อง 111?
Find the name of medication used on the patient who stays in room 111?
CREATE TABLE stay (patient VARCHAR, room VARCHAR, staystart VARCHAR)
SELECT patient FROM stay WHERE room = 111 ORDER BY staystart DESC LIMIT 1
ค้นหาผู้ป่วยที่เพิ่งพักในห้อง 111
Find the patient who most recently stayed in room 111.
CREATE TABLE nurse (name VARCHAR, employeeid VARCHAR); CREATE TABLE appointment (prepnurse VARCHAR)
SELECT T1.name FROM nurse AS T1 JOIN appointment AS T2 ON T1.employeeid = T2.prepnurse GROUP BY T1.employeeid ORDER BY COUNT(*) DESC LIMIT 1
พยาบาลชื่ออะไรมีนัดมากที่สุด?
What is the name of the nurse has the most appointments?
CREATE TABLE patient (PCP VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR)
SELECT T1.name, COUNT(*) FROM physician AS T1 JOIN patient AS T2 ON T1.employeeid = T2.PCP GROUP BY T1.employeeid
แพทย์แต่ละคนดูแลคนไข้กี่คน? ระบุชื่อและจำนวนผู้ป่วยที่พวกเขาดูแล
How many patients do each physician take care of? List their names and number of patients they take care of.
CREATE TABLE patient (PCP VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR)
SELECT T1.name FROM physician AS T1 JOIN patient AS T2 ON T1.employeeid = T2.PCP GROUP BY T1.employeeid HAVING COUNT(*) > 1
ค้นหาชื่อแพทย์ที่รับผิดชอบผู้ป่วยมากกว่าหนึ่งราย
Find the name of physicians who are in charge of more than one patient.
CREATE TABLE room (blockfloor VARCHAR, blockcode VARCHAR); CREATE TABLE BLOCK (blockfloor VARCHAR, blockcode VARCHAR)
SELECT COUNT(*), T1.blockfloor FROM BLOCK AS T1 JOIN room AS T2 ON T1.blockfloor = T2.blockfloor AND T1.blockcode = T2.blockcode GROUP BY T1.blockfloor
ค้นหาจำนวนห้องในแต่ละชั้น
Find the number of rooms located on each block floor.
CREATE TABLE room (blockfloor VARCHAR, blockcode VARCHAR); CREATE TABLE BLOCK (blockcode VARCHAR, blockfloor VARCHAR)
SELECT COUNT(*), T1.blockcode FROM BLOCK AS T1 JOIN room AS T2 ON T1.blockfloor = T2.blockfloor AND T1.blockcode = T2.blockcode GROUP BY T1.blockcode
ค้นหาจำนวนห้องสำหรับรหัสบล็อกต่างๆ
Find the number of rooms for different block code?
CREATE TABLE room (blockcode VARCHAR, unavailable VARCHAR)
SELECT DISTINCT blockcode FROM room WHERE unavailable = 0
รหัสบล็อคเฉพาะที่มีห้องว่างคืออะไร?
What are the unique block codes that have available rooms?
CREATE TABLE room (roomtype VARCHAR)
SELECT COUNT(DISTINCT roomtype) FROM room
ห้องพักมีกี่ประเภท?
How many different types of rooms are there?
CREATE TABLE physician (name VARCHAR, employeeid VARCHAR); CREATE TABLE prescribes (physician VARCHAR, medication VARCHAR); CREATE TABLE medication (code VARCHAR, name VARCHAR)
SELECT DISTINCT T1.name FROM physician AS T1 JOIN prescribes AS T2 ON T1.employeeid = T2.physician JOIN medication AS T3 ON T3.code = T2.medication WHERE T3.name = "Thesisin"
แพทย์ที่สั่งยาธีสิซินชื่ออะไร
What is the names of the physicians who prescribe medication Thesisin?
CREATE TABLE medication (code VARCHAR, Brand VARCHAR); CREATE TABLE prescribes (physician VARCHAR, medication VARCHAR); CREATE TABLE physician (name VARCHAR, position VARCHAR, employeeid VARCHAR)
SELECT DISTINCT T1.name, T1.position FROM physician AS T1 JOIN prescribes AS T2 ON T1.employeeid = T2.physician JOIN medication AS T3 ON T3.code = T2.medication WHERE T3.Brand = "X"
ค้นหาชื่อและตำแหน่งของแพทย์ที่สั่งจ่ายยาบางชนิดยี่ห้อ X?
Find the name and position of physicians who prescribe some medication whose brand is X?
CREATE TABLE medication (name VARCHAR, brand VARCHAR, code VARCHAR); CREATE TABLE prescribes (medication VARCHAR)
SELECT COUNT(*), T1.name FROM medication AS T1 JOIN prescribes AS T2 ON T1.code = T2.medication GROUP BY T1.brand
ค้นหาจำนวนยาที่กำหนดสำหรับแต่ละยี่ห้อ
Find the number of medications prescribed for each brand.