context
stringlengths
27
489
answer
stringlengths
18
557
question_th
stringlengths
8
226
question_en
stringlengths
12
244
CREATE TABLE inst (Id VARCHAR)
SELECT COUNT(*) FROM inst
มีกี่สถาบัน?
How many institutions are there?
CREATE TABLE papers (Id VARCHAR)
SELECT COUNT(*) FROM papers
มีตีพิมพ์ทั้งหมดกี่ฉบับ?
How many papers are published in total?
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR)
SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = "Jeremy" AND t1.lname = "Gibbons"
บทความที่จัดพิมพ์โดย "เจเรมี กิบบอนส์" มีชื่อว่าอะไร?
What are the titles of papers published by "Jeremy Gibbons"?
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR)
SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = "Aaron" AND t1.lname = "Turon"
ค้นหาเอกสารทั้งหมดที่จัดพิมพ์โดย "Aaron Turon"
Find all the papers published by "Aaron Turon".
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE papers (paperid VARCHAR)
SELECT COUNT(*) FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = "Atsushi" AND t1.lname = "Ohori"
มีผลงานตีพิมพ์เรื่อง "อัตสึชิ โอโฮริ" กี่เรื่อง?
How many papers have "Atsushi Ohori" published?
CREATE TABLE authorship (authid VARCHAR, instid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE inst (name VARCHAR, instid VARCHAR)
SELECT DISTINCT t3.name FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t1.fname = "Matthias" AND t1.lname = "Blume"
สถาบันที่ "Matthias Blume" สังกัดอยู่ชื่ออะไร?
What is the name of the institution that "Matthias Blume" belongs to?
CREATE TABLE authorship (authid VARCHAR, instid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE inst (name VARCHAR, instid VARCHAR)
SELECT DISTINCT t3.name FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t1.fname = "Katsuhiro" AND t1.lname = "Ueno"
"คัตสึฮิโระ อุเอโนะ" สังกัดสถาบันใด?
Which institution does "Katsuhiro Ueno" belong to?
CREATE TABLE authorship (authid VARCHAR, instid VARCHAR); CREATE TABLE authors (fname VARCHAR, lname VARCHAR, authid VARCHAR); CREATE TABLE inst (instid VARCHAR, name VARCHAR)
SELECT DISTINCT t1.fname, t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "University of Oxford"
ใครอยู่ในสถาบัน "University of Oxford"? แสดงชื่อและนามสกุล
Who belong to the institution "University of Oxford"? Show the first names and last names.
CREATE TABLE authorship (authid VARCHAR, instid VARCHAR); CREATE TABLE authors (fname VARCHAR, lname VARCHAR, authid VARCHAR); CREATE TABLE inst (instid VARCHAR, name VARCHAR)
SELECT DISTINCT t1.fname, t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "Google"
ผู้เขียนคนไหนอยู่ในสถาบัน "Google"? แสดงชื่อและนามสกุล
Which authors belong to the institution "Google"? Show the first names and last names.
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE authors (lname VARCHAR, authid VARCHAR); CREATE TABLE papers (paperid VARCHAR, title VARCHAR)
SELECT t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title = "Binders Unbound"
นามสกุลของผู้เขียนบทความเรื่อง "Binders Unbound" คืออะไร?
What are the last names of the author of the paper titled "Binders Unbound"?
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (paperid VARCHAR, title VARCHAR); CREATE TABLE authors (fname VARCHAR, lname VARCHAR, authid VARCHAR)
SELECT t1.fname, t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title = "Nameless , Painless"
ค้นหาชื่อและนามสกุลของผู้แต่งที่เขียนบทความเรื่อง Nameless, Painless
Find the first and last name of the author(s) who wrote the paper "Nameless, Painless".
CREATE TABLE inst (instid VARCHAR, name VARCHAR); CREATE TABLE authorship (paperid VARCHAR, instid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR)
SELECT DISTINCT t1.title FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "Indiana University"
เอกสารเผยแพร่ภายใต้สถาบัน "Indiana University" มีอะไรบ้าง?
What are the papers published under the institution "Indiana University"?
CREATE TABLE inst (instid VARCHAR, name VARCHAR); CREATE TABLE authorship (paperid VARCHAR, instid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR)
SELECT DISTINCT t1.title FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "Google"
ค้นหาเอกสารทั้งหมดที่เผยแพร่โดยสถาบัน "Google"
Find all the papers published by the institution "Google".
CREATE TABLE inst (instid VARCHAR, name VARCHAR); CREATE TABLE authorship (paperid VARCHAR, instid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR)
SELECT COUNT(DISTINCT t1.title) FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "Tokohu University"
สถาบัน "Tokohu University" มีงานวิจัยกี่ฉบับที่ตีพิมพ์?
How many papers are published by the institution "Tokohu University"?
CREATE TABLE inst (instid VARCHAR, name VARCHAR); CREATE TABLE authorship (paperid VARCHAR, instid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR)
SELECT COUNT(DISTINCT t1.title) FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "University of Pennsylvania"
ค้นหาจำนวนบทความที่จัดพิมพ์โดยสถาบัน "University of Pennsylvania"
Find the number of papers published by the institution "University of Pennsylvania".
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR)
SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = "Olin" AND t1.lname = "Shivers"
ค้นหาบทความที่มี "Olin Shivers" เป็นผู้เขียน
Find the papers which have "Olin Shivers" as an author.
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR)
SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = "Stephanie" AND t1.lname = "Weirich"
เอกสารใดบ้างที่มี "สเตฟานี ไวริช" เป็นผู้เขียน?
Which papers have "Stephanie Weirich" as an author?
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR, instid VARCHAR, authorder VARCHAR); CREATE TABLE authors (authid VARCHAR, lname VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE inst (instid VARCHAR, country VARCHAR)
SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid JOIN inst AS t4 ON t2.instid = t4.instid WHERE t4.country = "USA" AND t2.authorder = 2 AND t1.lname = "Turon"
บทความใดที่ตีพิมพ์ในสถาบันใน "สหรัฐอเมริกา" และมี "Turon" เป็นผู้เขียนคนที่สอง
Which paper is published in an institution in "USA" and have "Turon" as its second author?
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR, instid VARCHAR, authorder VARCHAR); CREATE TABLE authors (authid VARCHAR, lname VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE inst (instid VARCHAR, country VARCHAR)
SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid JOIN inst AS t4 ON t2.instid = t4.instid WHERE t4.country = "Japan" AND t2.authorder = 1 AND t1.lname = "Ohori"
ค้นหาชื่อบทความที่มีผู้เขียนคนแรกสังกัดสถาบันในประเทศ "ญี่ปุ่น" และมีนามสกุล "โอโฮริ"?
Find the titles of papers whose first author is affiliated with an institution in the country "Japan" and has last name "Ohori"?
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE authors (lname VARCHAR, fname VARCHAR, authid VARCHAR); CREATE TABLE papers (paperid VARCHAR)
SELECT t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid GROUP BY t1.fname, t1.lname ORDER BY COUNT(*) DESC LIMIT 1
นามสกุลของผู้เขียนที่มีผลงานตีพิมพ์มากที่สุดคืออะไร?
What is the last name of the author that has published the most papers?
CREATE TABLE inst (country VARCHAR, instid VARCHAR); CREATE TABLE authorship (instid VARCHAR, paperid VARCHAR); CREATE TABLE papers (paperid VARCHAR)
SELECT t1.country FROM inst AS t1 JOIN authorship AS t2 ON t1.instid = t2.instid JOIN papers AS t3 ON t2.paperid = t3.paperid GROUP BY t1.country ORDER BY COUNT(*) DESC LIMIT 1
ดึงประเทศที่มีการตีพิมพ์เอกสารมากที่สุด
Retrieve the country that has published the most papers.
CREATE TABLE inst (name VARCHAR, instid VARCHAR); CREATE TABLE authorship (instid VARCHAR, paperid VARCHAR); CREATE TABLE papers (paperid VARCHAR)
SELECT t1.name FROM inst AS t1 JOIN authorship AS t2 ON t1.instid = t2.instid JOIN papers AS t3 ON t2.paperid = t3.paperid GROUP BY t1.name ORDER BY COUNT(*) DESC LIMIT 1
ค้นหาชื่อองค์กรที่มีการตีพิมพ์เอกสารจำนวนมากที่สุด
Find the name of the organization that has published the largest number of papers.
CREATE TABLE papers (title VARCHAR)
SELECT title FROM papers WHERE title LIKE "%ML%"
ค้นหาชื่อบทความที่มีคำว่า "ML"
Find the titles of the papers that contain the word "ML".
CREATE TABLE papers (title VARCHAR)
SELECT title FROM papers WHERE title LIKE "%Database%"
บทความใดมีคำว่า "ฐานข้อมูล"
Which paper's title contains the word "Database"?
CREATE TABLE authors (fname VARCHAR, authid VARCHAR); CREATE TABLE papers (paperid VARCHAR, title VARCHAR); CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR)
SELECT t1.fname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title LIKE "%Functional%"
ค้นหาชื่อผู้แต่งทุกคนที่เขียนบทความที่มีชื่อเรื่องที่มีคำว่า "Functional"
Find the first names of all the authors who have written a paper with title containing the word "Functional".
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE authors (lname VARCHAR, authid VARCHAR); CREATE TABLE papers (paperid VARCHAR, title VARCHAR)
SELECT t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title LIKE "%Monadic%"
ค้นหานามสกุลของผู้แต่งทุกคนที่เขียนบทความที่มีชื่อเรื่องที่มีคำว่า "Monadic"
Find the last names of all the authors that have written a paper with title containing the word "Monadic".
CREATE TABLE authorship (authorder INTEGER); CREATE TABLE authorship (paperid VARCHAR, authorder INTEGER); CREATE TABLE papers (title VARCHAR, paperid VARCHAR)
SELECT t2.title FROM authorship AS t1 JOIN papers AS t2 ON t1.paperid = t2.paperid WHERE t1.authorder = (SELECT MAX(authorder) FROM authorship)
ดึงชื่อบทความที่มีจำนวนผู้เขียนมากที่สุด
Retrieve the title of the paper that has the largest number of authors.
CREATE TABLE authors (fname VARCHAR, lname VARCHAR)
SELECT fname FROM authors WHERE lname = "Ueno"
ชื่อผู้แต่งนามสกุล "อุเอโนะ" คืออะไร?
What is the first name of the author with last name "Ueno"?
CREATE TABLE authors (lname VARCHAR, fname VARCHAR)
SELECT lname FROM authors WHERE fname = "Amal"
ค้นหานามสกุลของผู้แต่งชื่อ "อามาล"
Find the last name of the author with first name "Amal".
CREATE TABLE authors (fname VARCHAR)
SELECT fname FROM authors ORDER BY fname
ค้นหาชื่อผู้แต่งทั้งหมดโดยเรียงลำดับตามตัวอักษร
Find the first names of all the authors ordered in alphabetical order.
CREATE TABLE authors (lname VARCHAR)
SELECT lname FROM authors ORDER BY lname
ดึงนามสกุลของผู้แต่งทั้งหมดตามลำดับตัวอักษร
Retrieve all the last names of authors in alphabetical order.
CREATE TABLE authors (fname VARCHAR, lname VARCHAR)
SELECT fname, lname FROM authors ORDER BY lname
ดึงชื่อและนามสกุลของผู้แต่งทั้งหมดตามลำดับตัวอักษรของนามสกุล
Retrieve all the first and last names of authors in the alphabetical order of last names.
CREATE TABLE actor (last_name VARCHAR)
SELECT COUNT(DISTINCT last_name) FROM actor
นักแสดงและนักแสดงมีนามสกุลต่างกันกี่ชื่อ?
How many different last names do the actors and actresses have?
CREATE TABLE actor (first_name VARCHAR)
SELECT first_name FROM actor GROUP BY first_name ORDER BY COUNT(*) DESC LIMIT 1
ชื่อนักแสดงที่ได้รับความนิยมมากที่สุดคืออะไร?
What is the most popular first name of the actors?
CREATE TABLE actor (first_name VARCHAR, last_name VARCHAR)
SELECT first_name, last_name FROM actor GROUP BY first_name, last_name ORDER BY COUNT(*) DESC LIMIT 1
ชื่อเต็มของนักแสดงที่ได้รับความนิยมมากที่สุดคืออะไร?
What is the most popular full name of the actors?
CREATE TABLE address (district VARCHAR)
SELECT district FROM address GROUP BY district HAVING COUNT(*) >= 2
เขตใดมีที่อยู่อย่างน้อยสองแห่ง?
Which districts have at least two addresses?
CREATE TABLE address (phone VARCHAR, postal_code VARCHAR, address VARCHAR)
SELECT phone, postal_code FROM address WHERE address = '1031 Daugavpils Parkway'
หมายเลขโทรศัพท์และรหัสไปรษณีย์ของที่อยู่ 1031 Daugavpils Parkway คืออะไร?
What is the phone number and postal code of the address 1031 Daugavpils Parkway?
CREATE TABLE address (city_id VARCHAR); CREATE TABLE city (city VARCHAR, city_id VARCHAR)
SELECT T2.city, COUNT(*), T1.city_id FROM address AS T1 JOIN city AS T2 ON T1.city_id = T2.city_id GROUP BY T1.city_id ORDER BY COUNT(*) DESC LIMIT 1
เมืองใดมีที่อยู่มากที่สุด? ระบุชื่อเมือง จำนวนที่อยู่ และรหัสเมือง
Which city has the most addresses? List the city name, number of addresses, and city id.
CREATE TABLE address (district VARCHAR)
SELECT COUNT(*) FROM address WHERE district = 'California'
มีที่อยู่กี่แห่งในเขตแคลิฟอร์เนีย
How many addresses are in the district of California?
CREATE TABLE film (title VARCHAR, film_id VARCHAR, rental_rate VARCHAR); CREATE TABLE inventory (film_id VARCHAR); CREATE TABLE film (title VARCHAR, film_id VARCHAR)
SELECT title, film_id FROM film WHERE rental_rate = 0.99 INTERSECT SELECT T1.title, T1.film_id FROM film AS T1 JOIN inventory AS T2 ON T1.film_id = T2.film_id GROUP BY T1.film_id HAVING COUNT(*) < 3
ภาพยนตร์เรื่องไหนเช่าราคา 0.99 และมีสินค้าในคลังไม่ถึง 3 เรื่อง? ระบุชื่อภาพยนตร์และรหัส
Which film is rented at a fee of 0.99 and has less than 3 in the inventory? List the film title and id.
CREATE TABLE country (country_id VARCHAR, country VARCHAR); CREATE TABLE city (country_id VARCHAR)
SELECT COUNT(*) FROM city AS T1 JOIN country AS T2 ON T1.country_id = T2.country_id WHERE T2.country = 'Australia'
ออสเตรเลียมีกี่เมือง?
How many cities are in Australia?
CREATE TABLE country (country VARCHAR, country_id VARCHAR); CREATE TABLE city (country_id VARCHAR)
SELECT T2.country FROM city AS T1 JOIN country AS T2 ON T1.country_id = T2.country_id GROUP BY T2.country_id HAVING COUNT(*) >= 3
ประเทศใดมีอย่างน้อย 3 เมือง?
Which countries have at least 3 cities?
CREATE TABLE payment (payment_date VARCHAR, staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, first_name VARCHAR); CREATE TABLE payment (payment_date VARCHAR, amount INTEGER)
SELECT payment_date FROM payment WHERE amount > 10 UNION SELECT T1.payment_date FROM payment AS T1 JOIN staff AS T2 ON T1.staff_id = T2.staff_id WHERE T2.first_name = 'Elsa'
ค้นหาวันที่ชำระเงินทั้งหมดสำหรับการชำระเงินที่มีมูลค่ามากกว่า 10 และการชำระเงินที่จัดการโดยพนักงานชื่อ Elsa
Find all the payment dates for the payments with an amount larger than 10 and the payments handled by a staff person with the first name Elsa.
CREATE TABLE customer (active VARCHAR)
SELECT COUNT(*) FROM customer WHERE active = '1'
มีลูกค้ากี่รายที่มีมูลค่าใช้งานอยู่ที่ 1?
How many customers have an active value of 1?
CREATE TABLE film (title VARCHAR, rental_rate VARCHAR)
SELECT title, rental_rate FROM film ORDER BY rental_rate DESC LIMIT 1
ภาพยนตร์เรื่องใดมีอัตราการเช่าสูงสุด? และอัตราเท่าไหร่?
Which film has the highest rental rate? And what is the rate?
CREATE TABLE film_actor (film_id VARCHAR); CREATE TABLE film (title VARCHAR, film_id VARCHAR, description VARCHAR)
SELECT T2.title, T2.film_id, T2.description FROM film_actor AS T1 JOIN film AS T2 ON T1.film_id = T2.film_id GROUP BY T2.film_id ORDER BY COUNT(*) DESC LIMIT 1
ภาพยนตร์เรื่องใดมีนักแสดงมากที่สุด? ระบุชื่อภาพยนตร์ รหัสภาพยนตร์ และคำอธิบาย
Which film has the most number of actors or actresses? List the film name, film id and description.
CREATE TABLE film_actor (actor_id VARCHAR); CREATE TABLE actor (first_name VARCHAR, last_name VARCHAR, actor_id VARCHAR)
SELECT T2.first_name, T2.last_name, T2.actor_id FROM film_actor AS T1 JOIN actor AS T2 ON T1.actor_id = T2.actor_id GROUP BY T2.actor_id ORDER BY COUNT(*) DESC LIMIT 1
นักแสดงภาพยนตร์คนไหนที่นำแสดงโดยภาพยนตร์มากที่สุด? ระบุชื่อ นามสกุล และรหัสนักแสดง
Which film actor (actress) starred the most films? List his or her first name, last name and actor id.
CREATE TABLE film_actor (actor_id VARCHAR); CREATE TABLE actor (first_name VARCHAR, last_name VARCHAR, actor_id VARCHAR)
SELECT T2.first_name, T2.last_name FROM film_actor AS T1 JOIN actor AS T2 ON T1.actor_id = T2.actor_id GROUP BY T2.actor_id HAVING COUNT(*) > 30
นักแสดงภาพยนตร์คนไหนที่มีบทบาทในภาพยนตร์มากกว่า 30 เรื่อง? ระบุชื่อและนามสกุลของเขาหรือเธอ
Which film actors (actresses) played a role in more than 30 films? List his or her first name and last name.
CREATE TABLE inventory (store_id VARCHAR)
SELECT store_id FROM inventory GROUP BY store_id ORDER BY COUNT(*) DESC LIMIT 1
ร้านค้าใดเป็นเจ้าของสินค้ามากที่สุด?
Which store owns most items?
CREATE TABLE payment (amount INTEGER)
SELECT SUM(amount) FROM payment
จำนวนเงินที่ชำระทั้งหมดคือเท่าไร?
What is the total amount of all payments?
CREATE TABLE payment (customer_id VARCHAR); CREATE TABLE customer (first_name VARCHAR, last_name VARCHAR, customer_id VARCHAR)
SELECT T1.first_name, T1.last_name, T1.customer_id FROM customer AS T1 JOIN payment AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY SUM(amount) LIMIT 1
ลูกค้ารายใดที่ชำระเงินอย่างน้อยหนึ่งครั้งและใช้จ่ายเงินน้อยที่สุด? ระบุชื่อ นามสกุล และรหัสประจำตัวของเขาหรือเธอ
Which customer, who has made at least one payment, has spent the least money? List his or her first name, last name, and the id.
CREATE TABLE film_category (category_id VARCHAR, film_id VARCHAR); CREATE TABLE film (film_id VARCHAR, title VARCHAR); CREATE TABLE category (name VARCHAR, category_id VARCHAR)
SELECT T1.name FROM category AS T1 JOIN film_category AS T2 ON T1.category_id = T2.category_id JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T3.title = 'HUNGER ROOF'
ชื่อประเภทของภาพยนตร์เรื่อง HUNGER ROOF คืออะไร?
What is the genre name of the film HUNGER ROOF?
CREATE TABLE film_category (category_id VARCHAR); CREATE TABLE category (name VARCHAR, category_id VARCHAR)
SELECT T2.name, T1.category_id, COUNT(*) FROM film_category AS T1 JOIN category AS T2 ON T1.category_id = T2.category_id GROUP BY T1.category_id
แต่ละหมวดมีภาพยนตร์กี่เรื่อง? ระบุชื่อประเภท รหัสประเภท และจำนวน
How many films are there in each category? List the genre name, genre id and the count.
CREATE TABLE film (title VARCHAR, film_id VARCHAR); CREATE TABLE inventory (film_id VARCHAR)
SELECT T1.title, T1.film_id FROM film AS T1 JOIN inventory AS T2 ON T1.film_id = T2.film_id GROUP BY T1.film_id ORDER BY COUNT(*) DESC LIMIT 1
ภาพยนตร์เรื่องใดมีสำเนามากที่สุดในสินค้าคงคลัง? ระบุทั้งชื่อและรหัส
Which film has the most copies in the inventory? List both title and id.
CREATE TABLE film (title VARCHAR, film_id VARCHAR); CREATE TABLE inventory (inventory_id VARCHAR, film_id VARCHAR); CREATE TABLE rental (inventory_id VARCHAR)
SELECT T1.title, T2.inventory_id FROM film AS T1 JOIN inventory AS T2 ON T1.film_id = T2.film_id JOIN rental AS T3 ON T2.inventory_id = T3.inventory_id GROUP BY T2.inventory_id ORDER BY COUNT(*) DESC LIMIT 1
ชื่อภาพยนตร์และรหัสสินค้าคงคลังของรายการในสินค้าคงคลังที่ถูกเช่าบ่อยที่สุดคืออะไร?
What is the film title and inventory id of the item in the inventory which was rented most frequently?
CREATE TABLE film (language_id VARCHAR)
SELECT COUNT(DISTINCT language_id) FROM film
ภาพยนตร์เหล่านี้มีกี่ภาษา?
How many languages are in these films?
CREATE TABLE film (title VARCHAR, rating VARCHAR)
SELECT title FROM film WHERE rating = 'R'
หนังเรื่องไหนได้เรท R บ้างคะ? รายชื่อชื่อเรื่อง
What are all the movies rated as R? List the titles.
CREATE TABLE store (address_id VARCHAR); CREATE TABLE address (address VARCHAR, address_id VARCHAR)
SELECT T2.address FROM store AS T1 JOIN address AS T2 ON T1.address_id = T2.address_id WHERE store_id = 1
ที่ตั้งของ ร้าน 1 อยู่ที่ไหน?
Where is store 1 located?
CREATE TABLE payment (staff_id VARCHAR); CREATE TABLE staff (first_name VARCHAR, last_name VARCHAR, staff_id VARCHAR)
SELECT T1.first_name, T1.last_name, T1.staff_id FROM staff AS T1 JOIN payment AS T2 ON T1.staff_id = T2.staff_id GROUP BY T1.staff_id ORDER BY COUNT(*) LIMIT 1
พนักงานคนไหนจัดการเรื่องการชำระเงินน้อยที่สุด? ระบุชื่อเต็มและรหัสประจำตัว
Which staff handled least number of payments? List the full name and the id.
CREATE TABLE film (language_id VARCHAR, title VARCHAR); CREATE TABLE LANGUAGE (name VARCHAR, language_id VARCHAR)
SELECT T2.name FROM film AS T1 JOIN LANGUAGE AS T2 ON T1.language_id = T2.language_id WHERE T1.title = 'AIRPORT POLLOCK'
ภาพยนตร์เรื่อง AIRPORT POLLOCK ใช้ภาษาใด แสดงรายการชื่อภาษา
Which language does the film AIRPORT POLLOCK use? List the language name.
CREATE TABLE store (Id VARCHAR)
SELECT COUNT(*) FROM store
มีกี่ร้านคะ?
How many stores are there?
CREATE TABLE film (rating VARCHAR)
SELECT COUNT(DISTINCT rating) FROM film
การให้คะแนนที่แตกต่างกันมีกี่ประเภท?
How many kinds of different ratings are listed?
CREATE TABLE film (title VARCHAR, special_features VARCHAR)
SELECT title FROM film WHERE special_features LIKE '%Deleted Scenes%'
ภาพยนตร์เรื่องใดที่มี 'ฉากที่ถูกลบ' เป็นสตริงย่อยในฟีเจอร์พิเศษนี้
Which movies have 'Deleted Scenes' as a substring in the special feature?
CREATE TABLE inventory (store_id VARCHAR)
SELECT COUNT(*) FROM inventory WHERE store_id = 1
ร้านค้า 1 มีสินค้ากี่รายการ?
How many items in inventory does store 1 have?
CREATE TABLE payment (payment_date VARCHAR)
SELECT payment_date FROM payment ORDER BY payment_date LIMIT 1
การชำระเงินครั้งแรกเกิดขึ้นเมื่อใด?
When did the first payment happen?
CREATE TABLE customer (email VARCHAR, address_id VARCHAR, first_name VARCHAR); CREATE TABLE address (address VARCHAR, address_id VARCHAR)
SELECT T2.address, T1.email FROM customer AS T1 JOIN address AS T2 ON T2.address_id = T1.address_id WHERE T1.first_name = 'LINDA'
ลูกค้าชื่อลินดาอาศัยอยู่ที่ไหน? แล้วอีเมลของเธอคืออะไร?
Where does the customer with the first name Linda live? And what is her email?
CREATE TABLE film (title VARCHAR, replacement_cost INTEGER, LENGTH VARCHAR, rating VARCHAR)
SELECT title FROM film WHERE LENGTH > 100 OR rating = 'PG' EXCEPT SELECT title FROM film WHERE replacement_cost > 200
ค้นหาภาพยนตร์ทั้งหมดที่มีความยาวเกิน 100 นาที หรือเรต PG ยกเว้นภาพยนตร์ที่มีราคามากกว่า 200 เพื่อทดแทน รายชื่อชื่อเรื่อง
Find all the films longer than 100 minutes, or rated PG, except those who cost more than 200 for replacement. List the titles.
CREATE TABLE customer (first_name VARCHAR, last_name VARCHAR, customer_id VARCHAR); CREATE TABLE rental (customer_id VARCHAR, rental_date VARCHAR)
SELECT T1.first_name, T1.last_name FROM customer AS T1 JOIN rental AS T2 ON T1.customer_id = T2.customer_id ORDER BY T2.rental_date LIMIT 1
ชื่อและนามสกุลของลูกค้าที่ทำการเช่าเร็วที่สุดคืออะไร?
What is the first name and the last name of the customer who made the earliest rental?
CREATE TABLE customer (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE rental (staff_id VARCHAR, customer_id VARCHAR); CREATE TABLE staff (first_name VARCHAR, last_name VARCHAR, staff_id VARCHAR)
SELECT DISTINCT T1.first_name, T1.last_name FROM staff AS T1 JOIN rental AS T2 ON T1.staff_id = T2.staff_id JOIN customer AS T3 ON T2.customer_id = T3.customer_id WHERE T3.first_name = 'APRIL' AND T3.last_name = 'BURNS'
พนักงานที่เช่าหนังให้ลูกค้าชื่อเต็มว่าอะไรครับชื่อเอพริลและนามสกุลเบิร์นส์?
What is the full name of the staff member who has rented a film to a customer with the first name April and the last name Burns?
CREATE TABLE customer (store_id VARCHAR)
SELECT store_id FROM customer GROUP BY store_id ORDER BY COUNT(*) DESC LIMIT 1
ร้านไหนมีลูกค้ามากที่สุด?
Which store has most the customers?
CREATE TABLE payment (amount VARCHAR)
SELECT amount FROM payment ORDER BY amount DESC LIMIT 1
จำนวนเงินที่ชำระมากที่สุดคือเท่าไร?
What is the largest payment amount?
CREATE TABLE staff (address_id VARCHAR, first_name VARCHAR); CREATE TABLE address (address VARCHAR, address_id VARCHAR)
SELECT T2.address FROM staff AS T1 JOIN address AS T2 ON T1.address_id = T2.address_id WHERE T1.first_name = 'Elsa'
พนักงานชื่อเอลซ่าอาศัยอยู่ที่ไหน?
Where does the staff member with the first name Elsa live?
CREATE TABLE customer (first_name VARCHAR, customer_id VARCHAR, rental_date INTEGER); CREATE TABLE rental (first_name VARCHAR, customer_id VARCHAR, rental_date INTEGER)
SELECT first_name FROM customer WHERE NOT customer_id IN (SELECT customer_id FROM rental WHERE rental_date > '2005-08-23 02:06:01')
ลูกค้าที่ไม่ได้เช่าภาพยนตร์หลังจาก '23-08-2548 02:06:01' มีชื่ออะไรบ้าง?
What are the first names of customers who have not rented any films after '2005-08-23 02:06:01'?
CREATE TABLE bank (Id VARCHAR)
SELECT COUNT(*) FROM bank
ธนาคารมีกี่สาขา?
How many bank branches are there?
CREATE TABLE bank (no_of_customers INTEGER)
SELECT SUM(no_of_customers) FROM bank
มีลูกค้ากี่คน?
How many customers are there?
CREATE TABLE bank (no_of_customers INTEGER, city VARCHAR)
SELECT SUM(no_of_customers) FROM bank WHERE city = 'New York City'
ค้นหาจำนวนลูกค้าในธนาคารที่นิวยอร์กซิตี้
Find the number of customers in the banks at New York City.
CREATE TABLE bank (no_of_customers INTEGER, state VARCHAR)
SELECT AVG(no_of_customers) FROM bank WHERE state = 'Utah'
ค้นหาจำนวนลูกค้าโดยเฉลี่ยในทุกธนาคารของรัฐยูทาห์
Find the average number of customers in all banks of Utah state.
CREATE TABLE bank (no_of_customers INTEGER)
SELECT AVG(no_of_customers) FROM bank
ค้นหาจำนวนลูกค้าเฉลี่ยที่ข้ามทุกธนาคาร
Find the average number of customers cross all banks.
CREATE TABLE bank (city VARCHAR, state VARCHAR, bname VARCHAR)
SELECT city, state FROM bank WHERE bname = 'morningside'
ค้นหาเมืองและรัฐของสาขาธนาคารชื่อมอร์นิ่งไซด์
Find the city and state of the bank branch named morningside.
CREATE TABLE bank (bname VARCHAR, state VARCHAR)
SELECT bname FROM bank WHERE state = 'New York'
ค้นหาชื่อสาขาของธนาคารในรัฐนิวยอร์ก
Find the branch names of banks in the New York state.
CREATE TABLE customer (cust_name VARCHAR, acc_bal VARCHAR)
SELECT cust_name FROM customer ORDER BY acc_bal
รายชื่อลูกค้าทั้งหมดเรียงตามยอดคงเหลือในบัญชีจากน้อยไปหามาก
List the name of all customers sorted by their account balance in ascending order.
CREATE TABLE loan (cust_id VARCHAR, amount INTEGER); CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR)
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name ORDER BY SUM(T2.amount)
ระบุชื่อของลูกค้าที่แตกต่างกันทั้งหมดที่มีสินเชื่อบางส่วนเรียงตามจำนวนเงินกู้ทั้งหมด
List the name of all different customers who have some loan sorted by their total loan amount.
CREATE TABLE customer (state VARCHAR, acc_type VARCHAR, credit_score VARCHAR, no_of_loans VARCHAR)
SELECT state, acc_type, credit_score FROM customer WHERE no_of_loans = 0
ค้นหาสถานะ ประเภทบัญชี และคะแนนเครดิตของลูกค้าที่มีจำนวนสินเชื่อเป็น 0
Find the state, account type, and credit score of the customer whose number of loan is 0.
CREATE TABLE bank (city VARCHAR)
SELECT COUNT(DISTINCT city) FROM bank
ค้นหาจำนวนเมืองต่างๆ ที่ธนาคารตั้งอยู่
Find the number of different cities which banks are located at.
CREATE TABLE bank (state VARCHAR)
SELECT COUNT(DISTINCT state) FROM bank
ค้นหาจำนวนรัฐต่างๆ ที่ธนาคารตั้งอยู่
Find the number of different states which banks are located at.
CREATE TABLE customer (acc_type VARCHAR)
SELECT COUNT(DISTINCT acc_type) FROM customer
มีบัญชีที่แตกต่างกันกี่ประเภท?
How many distinct types of accounts are there?
CREATE TABLE customer (cust_name VARCHAR, acc_bal VARCHAR)
SELECT cust_name, acc_bal FROM customer WHERE cust_name LIKE '%a%'
ค้นหาชื่อและยอดคงเหลือในบัญชีของลูกค้าที่มีชื่อมีตัวอักษร 'a'
Find the name and account balance of the customer whose name includes the letter ‘a’.
CREATE TABLE customer (acc_bal INTEGER, state VARCHAR)
SELECT SUM(acc_bal) FROM customer WHERE state = 'Utah' OR state = 'Texas'
ค้นหายอดเงินในบัญชีรวมของลูกค้าแต่ละรายจากยูทาห์หรือเท็กซัส
Find the total account balance of each customer from Utah or Texas.
CREATE TABLE customer (cust_name VARCHAR, acc_type VARCHAR)
SELECT cust_name FROM customer WHERE acc_type = 'saving' INTERSECT SELECT cust_name FROM customer WHERE acc_type = 'checking'
ค้นหาชื่อลูกค้าที่มีทั้งประเภทบัญชีออมทรัพย์และบัญชีกระแสรายวัน
Find the name of customers who have both saving and checking account types.
CREATE TABLE customer (cust_name VARCHAR, acc_type VARCHAR)
SELECT cust_name FROM customer EXCEPT SELECT cust_name FROM customer WHERE acc_type = 'saving'
ค้นหาชื่อลูกค้าที่ไม่มีบัญชีออมทรัพย์
Find the name of customers who do not have an saving account.
CREATE TABLE loan (cust_id VARCHAR, loan_type VARCHAR); CREATE TABLE customer (cust_name VARCHAR); CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR)
SELECT cust_name FROM customer EXCEPT SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE T2.loan_type = 'Mortgages'
ค้นหาชื่อลูกค้าที่ไม่มีสินเชื่อประเภทจำนอง
Find the name of customers who do not have a loan with a type of Mortgages.
CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR); CREATE TABLE loan (cust_id VARCHAR)
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE loan_type = 'Mortgages' INTERSECT SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE loan_type = 'Auto'
ค้นหาชื่อลูกค้าที่มีสินเชื่อทั้งสินเชื่อจำนองและรถยนต์
Find the name of customers who have loans of both Mortgages and Auto.
CREATE TABLE customer (cust_name VARCHAR, credit_score INTEGER)
SELECT cust_name FROM customer WHERE credit_score < (SELECT AVG(credit_score) FROM customer)
ค้นหาชื่อลูกค้าที่มีคะแนนเครดิตต่ำกว่าคะแนนเครดิตเฉลี่ยของลูกค้าทั้งหมด
Find the name of customers whose credit score is below the average credit scores of all customers.
CREATE TABLE bank (bname VARCHAR, no_of_customers VARCHAR)
SELECT bname FROM bank ORDER BY no_of_customers DESC LIMIT 1
ค้นหาชื่อสาขาของธนาคารที่มีลูกค้ามากที่สุด
Find the branch name of the bank that has the most number of customers.
CREATE TABLE customer (cust_name VARCHAR, credit_score VARCHAR)
SELECT cust_name FROM customer ORDER BY credit_score LIMIT 1
ค้นหาชื่อลูกค้าที่มีคะแนนเครดิตต่ำที่สุด
Find the name of customer who has the lowest credit score.
CREATE TABLE customer (cust_name VARCHAR, acc_type VARCHAR, acc_bal VARCHAR, credit_score VARCHAR)
SELECT cust_name, acc_type, acc_bal FROM customer ORDER BY credit_score DESC LIMIT 1
ค้นหาชื่อ ประเภทบัญชี และยอดคงเหลือในบัญชีของลูกค้าที่มีคะแนนเครดิตสูงสุด
Find the name, account type, and account balance of the customer who has the highest credit score.
CREATE TABLE loan (cust_id VARCHAR, amount INTEGER); CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR)
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name ORDER BY SUM(T2.amount) DESC LIMIT 1
ค้นหาชื่อลูกค้าที่มีวงเงินกู้สูงสุด
Find the name of customer who has the highest amount of loans.
CREATE TABLE bank (state VARCHAR, no_of_customers INTEGER)
SELECT state FROM bank GROUP BY state ORDER BY SUM(no_of_customers) DESC LIMIT 1
ค้นหารัฐที่มีลูกค้ามากที่สุด
Find the state which has the most number of customers.
CREATE TABLE customer (acc_type VARCHAR, acc_bal INTEGER, credit_score INTEGER)
SELECT AVG(acc_bal), acc_type FROM customer WHERE credit_score < 50 GROUP BY acc_type
สำหรับบัญชีแต่ละประเภท ให้ค้นหายอดบัญชีเฉลี่ยของลูกค้าที่มีคะแนนเครดิตต่ำกว่า 50
For each account type, find the average account balance of customers with credit score lower than 50.
CREATE TABLE customer (state VARCHAR, acc_bal INTEGER, credit_score INTEGER)
SELECT SUM(acc_bal), state FROM customer WHERE credit_score > 100 GROUP BY state
สำหรับแต่ละรัฐ ให้ค้นหายอดคงเหลือในบัญชีทั้งหมดของลูกค้าที่มีคะแนนเครดิตสูงกว่า 100
For each state, find the total account balance of customers whose credit score is above 100.