context
stringlengths 27
489
| answer
stringlengths 18
557
| question_th
stringlengths 8
226
| question_en
stringlengths 12
244
|
---|---|---|---|
CREATE TABLE advisor (i_id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)
|
SELECT T1.name FROM instructor AS T1 JOIN advisor AS T2 ON T1.id = T2.i_id GROUP BY T2.i_id HAVING COUNT(*) > 1
|
ค้นหาชื่ออาจารย์ผู้สอนที่ให้คำปรึกษานักเรียนมากกว่าหนึ่งคน
|
Find the name of instructors who are advising more than one student.
|
CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE advisor (s_id VARCHAR)
|
SELECT T1.name FROM student AS T1 JOIN advisor AS T2 ON T1.id = T2.s_id GROUP BY T2.s_id HAVING COUNT(*) > 1
|
ค้นหารายชื่อนักศึกษาที่มีอาจารย์ที่ปรึกษามากกว่า 1 ท่าน?
|
Find the name of the students who have more than one advisor?
|
CREATE TABLE classroom (building VARCHAR, capacity INTEGER)
|
SELECT COUNT(*), building FROM classroom WHERE capacity > 50 GROUP BY building
|
ค้นหาจำนวนห้องที่สามารถรองรับได้มากกว่า 50 ห้องในแต่ละอาคาร
|
Find the number of rooms with more than 50 capacity for each building.
|
CREATE TABLE classroom (building VARCHAR, capacity INTEGER)
|
SELECT MAX(capacity), AVG(capacity), building FROM classroom GROUP BY building
|
ค้นหาความจุสูงสุดและเฉลี่ยของห้องในแต่ละอาคาร
|
Find the maximum and average capacity among rooms in each building.
|
CREATE TABLE course (title VARCHAR)
|
SELECT title FROM course GROUP BY title HAVING COUNT(*) > 1
|
ค้นหาชื่อหลักสูตรที่เปิดสอนโดยแผนกมากกว่าหนึ่งแผนก
|
Find the title of the course that is offered by more than one department.
|
CREATE TABLE course (dept_name VARCHAR, credits INTEGER)
|
SELECT SUM(credits), dept_name FROM course GROUP BY dept_name
|
ค้นหาหน่วยกิตรวมของหลักสูตรที่เปิดสอนโดยแผนกต่างๆ
|
Find the total credits of courses provided by different department.
|
CREATE TABLE instructor (dept_name VARCHAR, salary INTEGER)
|
SELECT MIN(salary), dept_name FROM instructor GROUP BY dept_name HAVING AVG(salary) > (SELECT AVG(salary) FROM instructor)
|
ค้นหาเงินเดือนขั้นต่ำสำหรับแผนกที่มีเงินเดือนเฉลี่ยสูงกว่าค่าจ้างเฉลี่ยของอาจารย์ทุกคน
|
Find the minimum salary for the departments whose average salary is above the average payment of all instructors.
|
CREATE TABLE SECTION (semester VARCHAR, YEAR VARCHAR)
|
SELECT COUNT(*), semester, YEAR FROM SECTION GROUP BY semester, YEAR
|
ค้นหาจำนวนหลักสูตรที่เปิดสอนในแต่ละภาคการศึกษาและปี
|
Find the number of courses provided in each semester and year.
|
CREATE TABLE SECTION (YEAR VARCHAR)
|
SELECT YEAR FROM SECTION GROUP BY YEAR ORDER BY COUNT(*) DESC LIMIT 1
|
ค้นหาปีที่เปิดสอนหลักสูตรจำนวนมากที่สุด
|
Find the year which offers the largest number of courses.
|
CREATE TABLE SECTION (semester VARCHAR, YEAR VARCHAR)
|
SELECT semester, YEAR FROM SECTION GROUP BY semester, YEAR ORDER BY COUNT(*) DESC LIMIT 1
|
ค้นหาปีและภาคการศึกษาเมื่อมีหลักสูตรจำนวนมากที่สุด
|
Find the year and semester when offers the largest number of courses.
|
CREATE TABLE student (dept_name VARCHAR)
|
SELECT dept_name FROM student GROUP BY dept_name ORDER BY COUNT(*) DESC LIMIT 1
|
ค้นหาชื่อภาควิชาที่มีจำนวนนักศึกษามากที่สุด?
|
Find the name of department has the highest amount of students?
|
CREATE TABLE student (dept_name VARCHAR)
|
SELECT COUNT(*), dept_name FROM student GROUP BY dept_name
|
ค้นหาจำนวนนักศึกษาทั้งหมดในแต่ละแผนก
|
Find the total number of students in each department.
|
CREATE TABLE takes (semester VARCHAR, YEAR VARCHAR)
|
SELECT semester, YEAR FROM takes GROUP BY semester, YEAR ORDER BY COUNT(*) LIMIT 1
|
ค้นหาภาคการศึกษาและปีที่มีจำนวนนักเรียนเข้าเรียนน้อยที่สุด
|
Find the semester and year which has the least number of student taking any class.
|
CREATE TABLE advisor (s_id VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR)
|
SELECT i_id FROM advisor AS T1 JOIN student AS T2 ON T1.s_id = T2.id WHERE T2.dept_name = 'History'
|
อาจารย์ผู้สอนที่ให้คำปรึกษาแก่นักศึกษาภาควิชาประวัติศาสตร์ทุกคนมีรหัสประจำตัวอะไร?
|
What is the id of the instructor who advises of all students from History department?
|
CREATE TABLE instructor (name VARCHAR, salary VARCHAR, id VARCHAR); CREATE TABLE advisor (i_id VARCHAR, s_id VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR)
|
SELECT T2.name, T2.salary FROM advisor AS T1 JOIN instructor AS T2 ON T1.i_id = T2.id JOIN student AS T3 ON T1.s_id = T3.id WHERE T3.dept_name = 'History'
|
ค้นหาชื่อและเงินเดือนของอาจารย์ที่ปรึกษาของนักศึกษาภาควิชาประวัติศาสตร์คนใด?
|
Find the name and salary of the instructors who are advisors of any student from History department?
|
CREATE TABLE prereq (course_id VARCHAR); CREATE TABLE course (course_id VARCHAR)
|
SELECT course_id FROM course EXCEPT SELECT course_id FROM prereq
|
ค้นหารหัสหลักสูตรที่ไม่มีข้อกำหนดเบื้องต้นหรือไม่?
|
Find the id of the courses that do not have any prerequisite?
|
CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE prereq (prereq_id VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR)
|
SELECT title FROM course WHERE course_id IN (SELECT T1.prereq_id FROM prereq AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.title = 'International Finance')
|
วิชาบังคับก่อนของหลักสูตรการเงินระหว่างประเทศมีชื่อว่าอะไร
|
What is the title of the prerequisite class of International Finance course?
|
CREATE TABLE prereq (course_id VARCHAR, prereq_id VARCHAR); CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR)
|
SELECT title FROM course WHERE course_id IN (SELECT T1.course_id FROM prereq AS T1 JOIN course AS T2 ON T1.prereq_id = T2.course_id WHERE T2.title = 'Differential Geometry')
|
ค้นหาชื่อหลักสูตรที่มีวิชาบังคับก่อนเป็นหลักสูตรเรขาคณิตเชิงอนุพันธ์
|
Find the title of course whose prerequisite is course Differential Geometry.
|
CREATE TABLE student (name VARCHAR, id VARCHAR, semester VARCHAR, YEAR VARCHAR); CREATE TABLE takes (name VARCHAR, id VARCHAR, semester VARCHAR, YEAR VARCHAR)
|
SELECT name FROM student WHERE id IN (SELECT id FROM takes WHERE semester = 'Fall' AND YEAR = 2003)
|
ค้นหารายชื่อนักศึกษาที่ได้เรียนรายวิชาใด ๆ ในภาคเรียนฤดูใบไม้ร่วง ปี พ.ศ. 2546
|
Find the names of students who have taken any course in the fall semester of year 2003.
|
CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE SECTION (course_id VARCHAR)
|
SELECT T1.title FROM course AS T1 JOIN SECTION AS T2 ON T1.course_id = T2.course_id WHERE building = 'Chandler' AND semester = 'Fall' AND YEAR = 2010
|
หลักสูตรที่เปิดสอนในการสร้างแชนด์เลอร์ระหว่างภาคเรียนฤดูใบไม้ร่วงปี 2010 มีชื่อว่าอะไร
|
What is the title of the course that was offered at building Chandler during the fall semester in the year of 2010?
|
CREATE TABLE teaches (id VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)
|
SELECT T1.name FROM instructor AS T1 JOIN teaches AS T2 ON T1.id = T2.id JOIN course AS T3 ON T2.course_id = T3.course_id WHERE T3.title = 'C Programming'
|
ค้นหาชื่ออาจารย์ผู้สอนที่เคยสอนหลักสูตรการเขียนโปรแกรม C มาก่อน
|
Find the name of the instructors who taught C Programming course before.
|
CREATE TABLE instructor (name VARCHAR, salary VARCHAR, id VARCHAR); CREATE TABLE advisor (i_id VARCHAR, s_id VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR)
|
SELECT T2.name, T2.salary FROM advisor AS T1 JOIN instructor AS T2 ON T1.i_id = T2.id JOIN student AS T3 ON T1.s_id = T3.id WHERE T3.dept_name = 'Math'
|
ค้นหาชื่อและเงินเดือนของอาจารย์ที่ปรึกษาของนักศึกษาภาควิชาคณิตศาสตร์
|
Find the name and salary of instructors who are advisors of the students from the Math department.
|
CREATE TABLE student (id VARCHAR, dept_name VARCHAR, tot_cred VARCHAR); CREATE TABLE advisor (i_id VARCHAR, s_id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)
|
SELECT T2.name FROM advisor AS T1 JOIN instructor AS T2 ON T1.i_id = T2.id JOIN student AS T3 ON T1.s_id = T3.id WHERE T3.dept_name = 'Math' ORDER BY T3.tot_cred
|
ค้นหาชื่ออาจารย์ที่ปรึกษาของนักศึกษาภาควิชาคณิตศาสตร์ และเรียงลำดับผลคะแนนตามหน่วยกิตรวมของนักศึกษา
|
Find the name of instructors who are advisors of the students from the Math department, and sort the results by students' total credit.
|
CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE prereq (prereq_id VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR)
|
SELECT title FROM course WHERE course_id IN (SELECT T1.prereq_id FROM prereq AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.title = 'Mobile Computing')
|
ชื่อหลักสูตรของวิชาบังคับก่อนของหลักสูตร Mobile Computing คืออะไร
|
What is the course title of the prerequisite of course Mobile Computing?
|
CREATE TABLE student (id VARCHAR, tot_cred VARCHAR); CREATE TABLE advisor (i_id VARCHAR, s_id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)
|
SELECT T2.name FROM advisor AS T1 JOIN instructor AS T2 ON T1.i_id = T2.id JOIN student AS T3 ON T1.s_id = T3.id ORDER BY T3.tot_cred DESC LIMIT 1
|
หารายชื่ออาจารย์ผู้สอนที่เป็นที่ปรึกษาของนักศึกษาที่มีจำนวนหน่วยกิตรวมมากที่สุด
|
Find the name of instructor who is the advisor of the student who has the highest number of total credits.
|
CREATE TABLE teaches (name VARCHAR, id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)
|
SELECT name FROM instructor WHERE NOT id IN (SELECT id FROM teaches)
|
หาชื่ออาจารย์ที่ไม่ได้สอนวิชาไหนเลย?
|
Find the name of instructors who didn't teach any courses?
|
CREATE TABLE teaches (id VARCHAR); CREATE TABLE instructor (id VARCHAR)
|
SELECT id FROM instructor EXCEPT SELECT id FROM teaches
|
ค้นหา ID อาจารย์ที่ไม่ได้สอนหลักสูตรใดๆ เลย?
|
Find the id of instructors who didn't teach any courses?
|
CREATE TABLE teaches (name VARCHAR, id VARCHAR, semester VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR, semester VARCHAR)
|
SELECT name FROM instructor WHERE NOT id IN (SELECT id FROM teaches WHERE semester = 'Spring')
|
ค้นหารายชื่อผู้สอนที่ไม่ได้แต่ละรายวิชาในภาคเรียนฤดูใบไม้ผลิ
|
Find the names of instructors who didn't each any courses in any Spring semester.
|
CREATE TABLE instructor (dept_name VARCHAR, salary INTEGER)
|
SELECT dept_name FROM instructor GROUP BY dept_name ORDER BY AVG(salary) DESC LIMIT 1
|
ค้นหาชื่อสาขาวิชาที่มีเงินเดือนอาจารย์เฉลี่ยสูงสุด
|
Find the name of the department which has the highest average salary of professors.
|
CREATE TABLE department (dept_name VARCHAR, budget VARCHAR); CREATE TABLE instructor (salary INTEGER, dept_name VARCHAR)
|
SELECT AVG(T1.salary), COUNT(*) FROM instructor AS T1 JOIN department AS T2 ON T1.dept_name = T2.dept_name ORDER BY T2.budget DESC LIMIT 1
|
หาจำนวนและเงินเดือนเฉลี่ยของอาจารย์ประจำภาควิชาที่มีงบประมาณสูงสุดทั้งหมด
|
Find the number and averaged salary of all instructors who are in the department with the highest budget.
|
CREATE TABLE SECTION (course_id VARCHAR, building VARCHAR, room_number VARCHAR); CREATE TABLE course (title VARCHAR, credits VARCHAR, course_id VARCHAR); CREATE TABLE classroom (capacity INTEGER, building VARCHAR, room_number VARCHAR); CREATE TABLE classroom (capacity INTEGER)
|
SELECT T3.title, T3.credits FROM classroom AS T1 JOIN SECTION AS T2 ON T1.building = T2.building AND T1.room_number = T2.room_number JOIN course AS T3 ON T2.course_id = T3.course_id WHERE T1.capacity = (SELECT MAX(capacity) FROM classroom)
|
ชื่อและหน่วยกิตของหลักสูตรที่สอนในห้องเรียนที่ใหญ่ที่สุด (ที่มีความจุสูงสุด) มีชื่อว่าอะไร?
|
What is the title and credits of the course that is taught in the largest classroom (with the highest capacity)?
|
CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR); CREATE TABLE takes (id VARCHAR, course_id VARCHAR)
|
SELECT name FROM student WHERE NOT id IN (SELECT T1.id FROM takes AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.dept_name = 'Biology')
|
ค้นหารายชื่อนักศึกษาที่ไม่ได้เรียนรายวิชาใดจากภาควิชาชีววิทยา
|
Find the name of students who didn't take any course from Biology department.
|
CREATE TABLE department (dept_name VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR); CREATE TABLE instructor (dept_name VARCHAR, id VARCHAR)
|
SELECT COUNT(DISTINCT T2.id), COUNT(DISTINCT T3.id), T3.dept_name FROM department AS T1 JOIN student AS T2 ON T1.dept_name = T2.dept_name JOIN instructor AS T3 ON T1.dept_name = T3.dept_name GROUP BY T3.dept_name
|
ค้นหาจำนวนนักศึกษาและจำนวนอาจารย์รวมของแต่ละแผนก
|
Find the total number of students and total number of instructors for each department.
|
CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR); CREATE TABLE prereq (prereq_id VARCHAR, course_id VARCHAR); CREATE TABLE takes (id VARCHAR, course_id VARCHAR)
|
SELECT T1.name FROM student AS T1 JOIN takes AS T2 ON T1.id = T2.id WHERE T2.course_id IN (SELECT T4.prereq_id FROM course AS T3 JOIN prereq AS T4 ON T3.course_id = T4.course_id WHERE T3.title = 'International Finance')
|
ค้นหารายชื่อนักศึกษาที่ได้เรียนรายวิชาบังคับก่อนของรายวิชาที่มีชื่อ การเงินระหว่างประเทศ
|
Find the name of students who have taken the prerequisite course of the course with title International Finance.
|
CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR)
|
SELECT name, salary FROM instructor WHERE salary < (SELECT AVG(salary) FROM instructor WHERE dept_name = 'Physics')
|
ค้นหาชื่อและเงินเดือนของอาจารย์ผู้สอนที่มีเงินเดือนต่ำกว่าเงินเดือนเฉลี่ยของอาจารย์ในภาควิชาฟิสิกส์
|
Find the name and salary of instructors whose salary is below the average salary of the instructors in the Physics department.
|
CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE takes (course_id VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR)
|
SELECT T3.name FROM course AS T1 JOIN takes AS T2 ON T1.course_id = T2.course_id JOIN student AS T3 ON T2.id = T3.id WHERE T1.dept_name = 'Statistics'
|
ค้นหารายชื่อนักศึกษาที่เรียนรายวิชาที่เปิดสอนโดยภาควิชาสถิติ
|
Find the name of students who took some course offered by Statistics department.
|
CREATE TABLE SECTION (building VARCHAR, room_number VARCHAR, semester VARCHAR, year VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR, title VARCHAR)
|
SELECT T2.building, T2.room_number, T2.semester, T2.year FROM course AS T1 JOIN SECTION AS T2 ON T1.course_id = T2.course_id WHERE T1.dept_name = 'Psychology' ORDER BY T1.title
|
ค้นหาอาคาร หมายเลขห้อง ภาคการศึกษา และปีของหลักสูตรทั้งหมดที่เปิดสอนโดยแผนกจิตวิทยา จัดเรียงตามชื่อหลักสูตร
|
Find the building, room number, semester and year of all courses offered by Psychology department sorted by course titles.
|
CREATE TABLE instructor (name VARCHAR, dept_name VARCHAR)
|
SELECT name FROM instructor WHERE dept_name = 'Comp. Sci.'
|
ค้นหารายชื่ออาจารย์ผู้สอนในภาควิชาวิทยาการคอมพิวเตอร์ทุกคน
|
Find the names of all instructors in computer science department
|
CREATE TABLE instructor (name VARCHAR, dept_name VARCHAR, salary VARCHAR)
|
SELECT name FROM instructor WHERE dept_name = 'Comp. Sci.' AND salary > 80000
|
ค้นหารายชื่ออาจารย์ผู้สอนทั้งหมดในคอมพ์ วิทยาศาสตร์ แผนกที่มีเงินเดือน> 80000
|
Find the names of all instructors in Comp. Sci. department with salary > 80000.
|
CREATE TABLE instructor (ID VARCHAR); CREATE TABLE teaches (ID VARCHAR)
|
SELECT name, course_id FROM instructor AS T1 JOIN teaches AS T2 ON T1.ID = T2.ID
|
ค้นหาชื่อผู้สอนทุกคนที่สอนบางหลักสูตรและ course_id
|
Find the names of all instructors who have taught some course and the course_id.
|
CREATE TABLE instructor (ID VARCHAR, dept_name VARCHAR); CREATE TABLE teaches (ID VARCHAR)
|
SELECT name, course_id FROM instructor AS T1 JOIN teaches AS T2 ON T1.ID = T2.ID WHERE T1.dept_name = 'Art'
|
ค้นหารายชื่ออาจารย์ผู้สอนในแผนกศิลป์ที่เคยสอนบางหลักสูตรและ course_id
|
Find the names of all instructors in the Art department who have taught some course and the course_id.
|
CREATE TABLE instructor (name VARCHAR)
|
SELECT name FROM instructor WHERE name LIKE '%dar%'
|
ค้นหาชื่ออาจารย์ผู้สอนทั้งหมดที่มีชื่อโดยมีสตริงย่อย “ดาร์”
|
Find the names of all instructors whose name includes the substring “dar”.
|
CREATE TABLE instructor (name VARCHAR)
|
SELECT DISTINCT name FROM instructor ORDER BY name
|
รายชื่ออาจารย์ผู้สอนตามลำดับตัวอักษรทั้งหมด
|
List in alphabetic order the names of all distinct instructors.
|
CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR)
|
SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 UNION SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010
|
ค้นหาหลักสูตรที่เปิดดำเนินการในฤดูใบไม้ร่วงปี 2009 หรือในฤดูใบไม้ผลิปี 2010
|
Find courses that ran in Fall 2009 or in Spring 2010.
|
CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR)
|
SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 INTERSECT SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010
|
ค้นหาหลักสูตรที่ดำเนินการในฤดูใบไม้ร่วงปี 2009 และฤดูใบไม้ผลิปี 2010
|
Find courses that ran in Fall 2009 and in Spring 2010.
|
CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR)
|
SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 EXCEPT SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010
|
ค้นหาหลักสูตรที่เปิดดำเนินการในฤดูใบไม้ร่วงปี 2009 แต่ไม่ใช่ในฤดูใบไม้ผลิปี 2010
|
Find courses that ran in Fall 2009 but not in Spring 2010.
|
CREATE TABLE instructor (salary INTEGER)
|
SELECT DISTINCT salary FROM instructor WHERE salary < (SELECT MAX(salary) FROM instructor)
|
ค้นหาเงินเดือนของอาจารย์ผู้สอนที่แตกต่างกันทั้งหมดที่น้อยกว่าเงินเดือนสูงสุด
|
Find the salaries of all distinct instructors that are less than the largest salary.
|
CREATE TABLE teaches (ID VARCHAR, semester VARCHAR, YEAR VARCHAR)
|
SELECT COUNT(DISTINCT ID) FROM teaches WHERE semester = 'Spring' AND YEAR = 2010
|
ค้นหาจำนวนผู้สอนทั้งหมดที่สอนหลักสูตรในภาคเรียนฤดูใบไม้ผลิ 2010
|
Find the total number of instructors who teach a course in the Spring 2010 semester.
|
CREATE TABLE instructor (dept_name VARCHAR, salary INTEGER)
|
SELECT dept_name, AVG(salary) FROM instructor GROUP BY dept_name HAVING AVG(salary) > 42000
|
ค้นหาชื่อและเงินเดือนเฉลี่ยของทุกแผนกที่มีเงินเดือนเฉลี่ยมากกว่า 42,000
|
Find the names and average salaries of all departments whose average salary is greater than 42000.
|
CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR)
|
SELECT name FROM instructor WHERE salary > (SELECT MIN(salary) FROM instructor WHERE dept_name = 'Biology')
|
ค้นหารายชื่ออาจารย์ผู้สอนที่มีเงินเดือนมากกว่าอาจารย์บางคน (อย่างน้อยหนึ่งคน) ในภาควิชาชีววิทยา
|
Find names of instructors with salary greater than that of some (at least one) instructor in the Biology department.
|
CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR)
|
SELECT name FROM instructor WHERE salary > (SELECT MAX(salary) FROM instructor WHERE dept_name = 'Biology')
|
ค้นหารายชื่ออาจารย์ที่มีเงินเดือนมากกว่าเงินเดือนอาจารย์ในภาควิชาชีววิทยาทั้งหมด
|
Find the names of all instructors whose salary is greater than the salary of all instructors in the Biology department.
|
CREATE TABLE debate (Id VARCHAR)
|
SELECT COUNT(*) FROM debate
|
มีการอภิปรายกี่ครั้ง?
|
How many debates are there?
|
CREATE TABLE debate (Venue VARCHAR, Num_of_Audience VARCHAR)
|
SELECT Venue FROM debate ORDER BY Num_of_Audience
|
ระบุสถานที่อภิปรายโดยเรียงตามจำนวนผู้ชมจากน้อยไปมาก
|
List the venues of debates in ascending order of the number of audience.
|
CREATE TABLE debate (Date VARCHAR, Venue VARCHAR)
|
SELECT Date, Venue FROM debate
|
วันและสถานที่ของการอภิปรายแต่ละครั้งคือเมื่อใด?
|
What are the date and venue of each debate?
|
CREATE TABLE debate (Date VARCHAR, Num_of_Audience INTEGER)
|
SELECT Date FROM debate WHERE Num_of_Audience > 150
|
ระบุวันที่ของการอภิปรายที่มีจำนวนผู้ชมมากกว่า 150 คน
|
List the dates of debates with number of audience bigger than 150
|
CREATE TABLE people (Name VARCHAR, Age VARCHAR)
|
SELECT Name FROM people WHERE Age = 35 OR Age = 36
|
แสดงชื่อผู้ที่มีอายุ 35 หรือ 36 ปี
|
Show the names of people aged either 35 or 36.
|
CREATE TABLE people (Party VARCHAR, Age VARCHAR)
|
SELECT Party FROM people ORDER BY Age LIMIT 1
|
ปาร์ตี้ของคนอายุน้อยที่สุดคืออะไร?
|
What is the party of the youngest people?
|
CREATE TABLE people (Party VARCHAR)
|
SELECT Party, COUNT(*) FROM people GROUP BY Party
|
แสดงจำนวนคนในแต่ละฝ่ายพร้อมทั้งจำนวนคนในแต่ละฝ่าย
|
Show different parties of people along with the number of people in each party.
|
CREATE TABLE people (Party VARCHAR)
|
SELECT Party FROM people GROUP BY Party ORDER BY COUNT(*) DESC LIMIT 1
|
แสดงปาร์ตี้ที่มีคนมากที่สุด
|
Show the party that has the most people.
|
CREATE TABLE debate (Venue VARCHAR)
|
SELECT DISTINCT Venue FROM debate
|
แสดงสถานที่อภิปรายที่ชัดเจน
|
Show the distinct venues of debates
|
CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate (Date VARCHAR, Venue VARCHAR, Debate_ID VARCHAR); CREATE TABLE debate_people (Debate_ID VARCHAR, Affirmative VARCHAR)
|
SELECT T3.Name, T2.Date, T2.Venue FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Affirmative = T3.People_ID
|
แสดงชื่อบุคคล และวันที่และสถานที่อภิปรายที่พวกเขาเห็นด้วย
|
Show the names of people, and dates and venues of debates they are on the affirmative side.
|
CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate (Date VARCHAR, Venue VARCHAR, Debate_ID VARCHAR); CREATE TABLE debate_people (Debate_ID VARCHAR, Negative VARCHAR)
|
SELECT T3.Name, T2.Date, T2.Venue FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Negative = T3.People_ID ORDER BY T3.Name
|
แสดงชื่อบุคคล วันที่และสถานที่อภิปรายเป็นด้านลบ เรียงลำดับตามตัวอักษรจากน้อยไปหามาก
|
Show the names of people, and dates and venues of debates they are on the negative side, ordered in ascending alphabetical order of name.
|
CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate (Debate_ID VARCHAR, Num_of_Audience INTEGER); CREATE TABLE debate_people (Debate_ID VARCHAR, Affirmative VARCHAR)
|
SELECT T3.Name FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Affirmative = T3.People_ID WHERE T2.Num_of_Audience > 200
|
แสดงชื่อบุคคลที่เห็นด้วยกับการอภิปรายโดยมีจำนวนผู้ชมมากกว่า 200 คน
|
Show the names of people that are on affirmative side of debates with number of audience bigger than 200.
|
CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate_people (Affirmative VARCHAR)
|
SELECT T2.Name, COUNT(*) FROM debate_people AS T1 JOIN people AS T2 ON T1.Affirmative = T2.People_ID GROUP BY T2.Name
|
แสดงชื่อบุคคลและจำนวนครั้งที่พวกเขาเห็นด้วยกับการอภิปราย
|
Show the names of people and the number of times they have been on the affirmative side of debates.
|
CREATE TABLE debate_people (Negative VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)
|
SELECT T2.Name FROM debate_people AS T1 JOIN people AS T2 ON T1.Negative = T2.People_ID GROUP BY T2.Name HAVING COUNT(*) >= 2
|
แสดงชื่อผู้ที่คิดในแง่ลบจากการโต้วาทีอย่างน้อยสองครั้ง
|
Show the names of people who have been on the negative side of debates at least twice.
|
CREATE TABLE debate_people (Name VARCHAR, People_id VARCHAR, Affirmative VARCHAR); CREATE TABLE people (Name VARCHAR, People_id VARCHAR, Affirmative VARCHAR)
|
SELECT Name FROM people WHERE NOT People_id IN (SELECT Affirmative FROM debate_people)
|
ระบุรายชื่อบุคคลที่ไม่เห็นด้วยกับการอภิปราย
|
List the names of people that have not been on the affirmative side of debates.
|
CREATE TABLE customers (customer_details VARCHAR)
|
SELECT customer_details FROM customers ORDER BY customer_details
|
รายชื่อลูกค้าทั้งหมดตามลำดับตัวอักษร
|
List the names of all the customers in alphabetical order.
|
CREATE TABLE customers (customer_id VARCHAR, customer_details VARCHAR); CREATE TABLE policies (customer_id VARCHAR)
|
SELECT policy_type_code FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t2.customer_details = "Dayana Robel"
|
ค้นหารหัสประเภทนโยบายทั้งหมดที่เกี่ยวข้องกับลูกค้า "Dayana Robel"
|
Find all the policy type codes associated with the customer "Dayana Robel"
|
CREATE TABLE policies (policy_type_code VARCHAR)
|
SELECT policy_type_code FROM policies GROUP BY policy_type_code ORDER BY COUNT(*) DESC LIMIT 1
|
นโยบายประเภทใดที่ใช้บ่อยที่สุด? ขอรหัสประเภทกรมธรรม์ให้ฉันด้วย
|
Which type of policy is most frequently used? Give me the policy type code.
|
CREATE TABLE policies (policy_type_code VARCHAR)
|
SELECT policy_type_code FROM policies GROUP BY policy_type_code HAVING COUNT(*) > 2
|
ค้นหาประเภทนโยบายทั้งหมดที่ลูกค้ามากกว่า 2 รายใช้
|
Find all the policy types that are used by more than 2 customers.
|
CREATE TABLE claim_headers (amount_piad INTEGER)
|
SELECT SUM(amount_piad), AVG(amount_piad) FROM claim_headers
|
ค้นหาจำนวนเงินรวมและจำนวนเงินเฉลี่ยที่จ่ายในส่วนหัวของการอ้างสิทธิ์
|
Find the total and average amount paid in claim headers.
|
CREATE TABLE claim_headers (amount_claimed INTEGER, claim_header_id VARCHAR); CREATE TABLE claims_documents (claim_id VARCHAR, created_date VARCHAR); CREATE TABLE claims_documents (created_date VARCHAR)
|
SELECT SUM(t1.amount_claimed) FROM claim_headers AS t1 JOIN claims_documents AS t2 ON t1.claim_header_id = t2.claim_id WHERE t2.created_date = (SELECT created_date FROM claims_documents ORDER BY created_date LIMIT 1)
|
ค้นหาจำนวนเงินทั้งหมดที่อ้างสิทธิ์ในเอกสารที่สร้างขึ้นล่าสุด
|
Find the total amount claimed in the most recently created document.
|
CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE claim_headers (amount_claimed INTEGER); CREATE TABLE policies (policy_id VARCHAR, customer_id VARCHAR); CREATE TABLE claim_headers (policy_id VARCHAR, amount_claimed INTEGER)
|
SELECT t3.customer_details FROM claim_headers AS t1 JOIN policies AS t2 ON t1.policy_id = t2.policy_id JOIN customers AS t3 ON t2.customer_id = t3.customer_id WHERE t1.amount_claimed = (SELECT MAX(amount_claimed) FROM claim_headers)
|
ลูกค้าที่ทำการเคลมจำนวนมากที่สุดในการเคลมครั้งเดียวชื่ออะไร?
|
What is the name of the customer who has made the largest amount of claim in a single claim?
|
CREATE TABLE claim_headers (amount_piad INTEGER); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE policies (policy_id VARCHAR, customer_id VARCHAR); CREATE TABLE claim_headers (policy_id VARCHAR, amount_piad INTEGER)
|
SELECT t3.customer_details FROM claim_headers AS t1 JOIN policies AS t2 ON t1.policy_id = t2.policy_id JOIN customers AS t3 ON t2.customer_id = t3.customer_id WHERE t1.amount_piad = (SELECT MIN(amount_piad) FROM claim_headers)
|
ลูกค้าที่ชำระเงินขั้นต่ำในการเคลมหนึ่งครั้งชื่ออะไร?
|
What is the name of the customer who has made the minimum amount of payment in one claim?
|
CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_details VARCHAR); CREATE TABLE policies (customer_id VARCHAR)
|
SELECT customer_details FROM customers EXCEPT SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id
|
ค้นหาชื่อลูกค้าที่ไม่มีนโยบายเกี่ยวข้อง
|
Find the names of customers who have no policies associated.
|
CREATE TABLE claims_processing_stages (Id VARCHAR)
|
SELECT COUNT(*) FROM claims_processing_stages
|
มีขั้นตอนการดำเนินการเรียกร้องสินไหมทั้งหมดกี่ขั้นตอน?
|
How many claim processing stages are there in total?
|
CREATE TABLE claims_processing (claim_stage_id VARCHAR); CREATE TABLE claims_processing_stages (claim_status_name VARCHAR, claim_stage_id VARCHAR)
|
SELECT t2.claim_status_name FROM claims_processing AS t1 JOIN claims_processing_stages AS t2 ON t1.claim_stage_id = t2.claim_stage_id GROUP BY t1.claim_stage_id ORDER BY COUNT(*) DESC LIMIT 1
|
ขั้นตอนการดำเนินการเรียกร้องค่าสินไหมทดแทนซึ่งการเรียกร้องส่วนใหญ่ดำเนินการอยู่มีชื่อว่าอะไร?
|
What is the name of the claim processing stage that most of the claims are on?
|
CREATE TABLE customers (customer_details VARCHAR)
|
SELECT customer_details FROM customers WHERE customer_details LIKE "%Diana%"
|
ค้นหาชื่อลูกค้าที่มีชื่อมีคำว่า "ไดอาน่า"
|
Find the names of customers whose name contains "Diana".
|
CREATE TABLE policies (customer_id VARCHAR, policy_type_code VARCHAR); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR)
|
SELECT DISTINCT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.policy_type_code = "Deputy"
|
ค้นหาชื่อลูกค้าที่มีนโยบายรอง
|
Find the names of the customers who have an deputy policy.
|
CREATE TABLE policies (customer_id VARCHAR, policy_type_code VARCHAR); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR)
|
SELECT DISTINCT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.policy_type_code = "Deputy" OR t1.policy_type_code = "Uniform"
|
ค้นหาชื่อลูกค้าที่มีนโยบายรองหรือนโยบายเครื่องแบบ
|
Find the names of customers who either have an deputy policy or uniformed policy.
|
CREATE TABLE staff (customer_details VARCHAR, staff_details VARCHAR); CREATE TABLE customers (customer_details VARCHAR, staff_details VARCHAR)
|
SELECT customer_details FROM customers UNION SELECT staff_details FROM staff
|
ค้นหาชื่อของลูกค้าและพนักงานทั้งหมด
|
Find the names of all the customers and staff members.
|
CREATE TABLE policies (policy_type_code VARCHAR)
|
SELECT policy_type_code, COUNT(*) FROM policies GROUP BY policy_type_code
|
ค้นหาจำนวนบันทึกของนโยบายแต่ละประเภทและรหัสประเภท
|
Find the number of records of each policy type and its type code.
|
CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE policies (customer_id VARCHAR)
|
SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id GROUP BY t2.customer_details ORDER BY COUNT(*) DESC LIMIT 1
|
ค้นหาชื่อลูกค้าที่เกี่ยวข้องกับกรมธรรม์มากที่สุด
|
Find the name of the customer that has been involved in the most policies.
|
CREATE TABLE claims_processing_stages (claim_status_description VARCHAR, claim_status_name VARCHAR)
|
SELECT claim_status_description FROM claims_processing_stages WHERE claim_status_name = "Open"
|
คำอธิบายสถานะการเคลม "เปิด" คืออะไร?
|
What is the description of the claim status "Open"?
|
CREATE TABLE claims_processing (claim_outcome_code VARCHAR)
|
SELECT COUNT(DISTINCT claim_outcome_code) FROM claims_processing
|
มีรหัสผลการเรียกร้องที่แตกต่างกันกี่รหัส?
|
How many distinct claim outcome codes are there?
|
CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE policies (start_date INTEGER); CREATE TABLE policies (customer_id VARCHAR, start_date INTEGER)
|
SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.start_date = (SELECT MAX(start_date) FROM policies)
|
ลูกค้ารายใดที่เกี่ยวข้องกับนโยบายล่าสุด
|
Which customer is associated with the latest policy?
|
CREATE TABLE Accounts (account_id VARCHAR, date_account_opened VARCHAR, account_name VARCHAR, other_account_details VARCHAR)
|
SELECT account_id, date_account_opened, account_name, other_account_details FROM Accounts
|
แสดงรหัส วันที่เปิดบัญชี ชื่อบัญชี และรายละเอียดบัญชีอื่นๆ ของทุกบัญชี
|
Show the id, the date of account opened, the account name, and other account detail for all accounts.
|
CREATE TABLE Accounts (account_id VARCHAR, date_account_opened VARCHAR, account_name VARCHAR, other_account_details VARCHAR, customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR)
|
SELECT T1.account_id, T1.date_account_opened, T1.account_name, T1.other_account_details FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = 'Meaghan'
|
แสดงรหัส ชื่อบัญชี และรายละเอียดบัญชีอื่นๆ สำหรับทุกบัญชีโดยลูกค้าที่มีชื่อ 'Meaghan'
|
Show the id, the account name, and other account details for all accounts by the customer with first name 'Meaghan'.
|
CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR, customer_last_name VARCHAR); CREATE TABLE Accounts (account_name VARCHAR, other_account_details VARCHAR, customer_id VARCHAR)
|
SELECT T1.account_name, T1.other_account_details FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = "Meaghan" AND T2.customer_last_name = "Keeling"
|
แสดงชื่อบัญชีและรายละเอียดบัญชีอื่น ๆ สำหรับทุกบัญชีโดยลูกค้าชื่อ Meaghan และนามสกุล Keeling
|
Show the account name and other account detail for all accounts by the customer with first name Meaghan and last name Keeling.
|
CREATE TABLE Accounts (customer_id VARCHAR, account_name VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)
|
SELECT T2.customer_first_name, T2.customer_last_name FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.account_name = "900"
|
แสดงชื่อและนามสกุลให้กับลูกค้าที่มีชื่อบัญชี 900
|
Show the first name and last name for the customer with account name 900.
|
CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, phone_number VARCHAR, customer_id VARCHAR)
|
SELECT DISTINCT T1.customer_first_name, T1.customer_last_name, T1.phone_number FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id
|
แสดงชื่อ นามสกุล และหมายเลขโทรศัพท์ที่ไม่ซ้ำกันสำหรับลูกค้าทุกคนที่มีบัญชีใดๆ
|
Show the unique first names, last names, and phone numbers for all customers with any account.
|
CREATE TABLE Customers (customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR)
|
SELECT customer_id FROM Customers EXCEPT SELECT customer_id FROM Accounts
|
แสดงรหัสลูกค้าที่ไม่มีบัญชี
|
Show customer ids who don't have an account.
|
CREATE TABLE Accounts (customer_id VARCHAR)
|
SELECT COUNT(*), customer_id FROM Accounts GROUP BY customer_id
|
ลูกค้าแต่ละรายมีกี่บัญชี? ระบุหมายเลขและรหัสลูกค้า
|
How many accounts does each customer have? List the number and customer id.
|
CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)
|
SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1
|
รหัสลูกค้า ชื่อ และนามสกุลที่มีจำนวนบัญชีมากที่สุดคืออะไร
|
What is the customer id, first and last name with most number of accounts.
|
CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)
|
SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name, COUNT(*) FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id
|
แสดงรหัส ชื่อและนามสกุลของลูกค้าทั้งหมดและจำนวนบัญชี
|
Show id, first name and last name for all customers and the number of accounts.
|
CREATE TABLE Customers (customer_first_name VARCHAR, customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR)
|
SELECT T2.customer_first_name, T1.customer_id FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 2
|
แสดงชื่อและรหัสสำหรับลูกค้าทั้งหมดที่มีอย่างน้อย 2 บัญชี
|
Show first name and id for all customers with at least 2 accounts.
|
CREATE TABLE Customers (gender VARCHAR)
|
SELECT gender, COUNT(*) FROM Customers GROUP BY gender
|
แสดงจำนวนลูกค้าแต่ละเพศ
|
Show the number of customers for each gender.
|
CREATE TABLE Financial_transactions (Id VARCHAR)
|
SELECT COUNT(*) FROM Financial_transactions
|
เรามีธุรกรรมกี่รายการ?
|
How many transactions do we have?
|
CREATE TABLE Financial_transactions (account_id VARCHAR)
|
SELECT COUNT(*), account_id FROM Financial_transactions
|
แต่ละบัญชีมีธุรกรรมจำนวนเท่าใด? แสดงหมายเลขและรหัสบัญชี
|
How many transaction does each account have? Show the number and account id.
|
CREATE TABLE Accounts (account_id VARCHAR, account_name VARCHAR); CREATE TABLE Financial_transactions (account_id VARCHAR)
|
SELECT COUNT(*) FROM Financial_transactions AS T1 JOIN Accounts AS T2 ON T1.account_id = T2.account_id WHERE T2.account_name = "337"
|
บัญชีชื่อ 337 มีธุรกรรมกี่รายการ?
|
How many transaction does account with name 337 have?
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.