context
stringlengths 27
489
| answer
stringlengths 18
557
| question_th
stringlengths 8
226
| question_en
stringlengths 12
244
|
---|---|---|---|
CREATE TABLE orders (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
|
SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1
|
ชื่อของลูกค้าที่มีคำสั่งซื้อมากที่สุดคืออะไร?
|
What is the name of the customer who has the most orders?
|
CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE orders (customer_id VARCHAR)
|
SELECT T1.customer_id FROM customers AS T1 JOIN orders 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 of the customer who has the most orders?
|
CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE orders (order_id VARCHAR, order_status VARCHAR, customer_id VARCHAR)
|
SELECT T2.order_id, T2.order_status FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T1.customer_name = "Jeramie"
|
แจ้ง ID และสถานะคำสั่งซื้อของลูกค้าชื่อ "เจอรามี่" ให้ฉันทราบ
|
Give me a list of id and status of orders which belong to the customer named "Jeramie".
|
CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE orders (date_order_placed VARCHAR, customer_id VARCHAR)
|
SELECT T2.date_order_placed FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T1.customer_name = "Jeramie"
|
ค้นหาวันที่สั่งซื้อของลูกค้าชื่อ "เจอรามี"
|
Find the dates of orders which belong to the customer named "Jeramie".
|
CREATE TABLE orders (customer_id VARCHAR, date_order_placed VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
|
SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.date_order_placed >= "2009-01-01" AND T2.date_order_placed <= "2010-01-01"
|
แจ้งชื่อลูกค้าที่สั่งซื้อระหว่าง 2009-01-01 ถึง 2010-01-01
|
Give me the names of customers who have placed orders between 2009-01-01 and 2010-01-01.
|
CREATE TABLE order_items (product_id VARCHAR, order_id VARCHAR); CREATE TABLE orders (order_id VARCHAR, date_order_placed VARCHAR)
|
SELECT DISTINCT T2.product_id FROM orders AS T1 JOIN order_items AS T2 ON T1.order_id = T2.order_id WHERE T1.date_order_placed >= "1975-01-01" AND T1.date_order_placed <= "1976-01-01"
|
ขอรายการรหัสผลิตภัณฑ์ที่แตกต่างกันจากคำสั่งซื้อระหว่าง 1975-01-01 ถึง 1976-01-01 ให้ฉันหน่อย
|
Give me a list of distinct product ids from orders placed between 1975-01-01 and 1976-01-01?
|
CREATE TABLE orders (customer_id VARCHAR, order_status VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
|
SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "On Road" INTERSECT SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "Shipped"
|
ค้นหาชื่อลูกค้าที่มีสถานะการสั่งซื้อทั้ง "บนถนน" และ "จัดส่งแล้ว"
|
Find the names of the customers who have order status both "On Road" and "Shipped".
|
CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE orders (customer_id VARCHAR, order_status VARCHAR)
|
SELECT T1.customer_id FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "On Road" INTERSECT SELECT T1.customer_id FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "Shipped"
|
ค้นหารหัสของลูกค้าที่มีสถานะการสั่งซื้อทั้ง "บนถนน" และ "จัดส่งแล้ว"
|
Find the id of the customers who have order status both "On Road" and "Shipped".
|
CREATE TABLE shipments (order_id VARCHAR, shipment_tracking_number VARCHAR); CREATE TABLE orders (date_order_placed VARCHAR, order_id VARCHAR)
|
SELECT T1.date_order_placed FROM orders AS T1 JOIN shipments AS T2 ON T1.order_id = T2.order_id WHERE T2.shipment_tracking_number = 3452
|
คำสั่งซื้อมีหมายเลขติดตามการจัดส่งคือ 3452 เกิดขึ้นเมื่อใด ให้ฉันวันที่.
|
When was the order placed whose shipment tracking number is 3452? Give me the date.
|
CREATE TABLE orders (date_order_placed VARCHAR, order_id VARCHAR); CREATE TABLE shipments (order_id VARCHAR, invoice_number VARCHAR)
|
SELECT T1.date_order_placed FROM orders AS T1 JOIN shipments AS T2 ON T1.order_id = T2.order_id WHERE T2.invoice_number = 10
|
วันที่วางคำสั่งซื้อที่มีหมายเลขใบแจ้งหนี้คือ 10 คือเมื่อใด
|
What is the placement date of the order whose invoice number is 10?
|
CREATE TABLE orders (order_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE products (product_id VARCHAR)
|
SELECT COUNT(*), T3.product_id FROM orders AS T1 JOIN order_items AS T2 JOIN products AS T3 ON T1.order_id = T2.order_id AND T2.product_id = T3.product_id GROUP BY T3.product_id
|
แสดงรายการจำนวนและรหัสของผลิตภัณฑ์แต่ละรายการในคำสั่งซื้อทั้งหมด
|
List the count and id of each product in all the orders.
|
CREATE TABLE orders (order_id VARCHAR); CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR)
|
SELECT T3.product_name, COUNT(*) FROM orders AS T1 JOIN order_items AS T2 JOIN products AS T3 ON T1.order_id = T2.order_id AND T2.product_id = T3.product_id GROUP BY T3.product_id
|
ระบุชื่อและจำนวนสินค้าแต่ละรายการในคำสั่งซื้อทั้งหมด
|
List the name and count of each product in all orders.
|
CREATE TABLE shipments (order_id VARCHAR, shipment_date INTEGER)
|
SELECT order_id FROM shipments WHERE shipment_date > "2000-01-01"
|
ค้นหารหัสคำสั่งซื้อที่จัดส่งหลัง 2000-01-01
|
Find the ids of orders which are shipped after 2000-01-01.
|
CREATE TABLE shipments (order_id VARCHAR, shipment_date INTEGER)
|
SELECT order_id FROM shipments WHERE shipment_date = (SELECT MAX(shipment_date) FROM shipments)
|
ค้นหารหัสของคำสั่งซื้อที่จัดส่งล่าสุด
|
Find the id of the order which is shipped most recently.
|
CREATE TABLE products (product_name VARCHAR)
|
SELECT DISTINCT product_name FROM products ORDER BY product_name
|
ระบุชื่อผลิตภัณฑ์ที่แตกต่างกันทั้งหมดตามลำดับตัวอักษร
|
List the names of all distinct products in alphabetical order.
|
CREATE TABLE orders (order_id VARCHAR, date_order_placed VARCHAR)
|
SELECT DISTINCT order_id FROM orders ORDER BY date_order_placed
|
แสดงรายการรหัสของคำสั่งซื้อที่แตกต่างกันทั้งหมดโดยเรียงลำดับตามวันที่วาง
|
List the ids of all distinct orders ordered by placed date.
|
CREATE TABLE orders (order_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR)
|
SELECT T1.order_id FROM orders AS T1 JOIN order_items AS T2 ON T1.order_id = T2.order_id GROUP BY T1.order_id ORDER BY COUNT(*) DESC LIMIT 1
|
รหัสคำสั่งซื้อที่มีสินค้ามากที่สุดคืออะไร?
|
What is the id of the order which has the most items?
|
CREATE TABLE invoices (invoice_number VARCHAR, invoice_date VARCHAR)
|
SELECT invoice_number FROM invoices WHERE invoice_date < "1989-09-03" OR invoice_date > "2007-12-25"
|
ค้นหาหมายเลขใบแจ้งหนี้ที่สร้างขึ้นก่อน 1989-09-03 หรือหลัง 2550-12-2550
|
Find the invoice numbers which are created before 1989-09-03 or after 2007-12-25.
|
CREATE TABLE invoices (invoice_details VARCHAR, invoice_date VARCHAR)
|
SELECT DISTINCT invoice_details FROM invoices WHERE invoice_date < "1989-09-03" OR invoice_date > "2007-12-25"
|
ค้นหารายละเอียดที่ชัดเจนของใบแจ้งหนี้ที่สร้างขึ้นก่อน 1989-09-03 หรือหลัง 2550-12-2550
|
Find the distinct details of invoices which are created before 1989-09-03 or after 2007-12-25.
|
CREATE TABLE orders (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
|
SELECT T2.customer_name, COUNT(*) FROM orders AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T2.customer_id HAVING COUNT(*) >= 2
|
สำหรับลูกค้าแต่ละรายที่มีคำสั่งซื้ออย่างน้อยสองรายการ ให้ค้นหาชื่อลูกค้าและจำนวนคำสั่งซื้อที่ทำ
|
For each customer who has at least two orders, find the customer name and number of orders made.
|
CREATE TABLE orders (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
|
SELECT T2.customer_name FROM orders AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T2.customer_id HAVING COUNT(*) <= 2
|
ค้นหาชื่อลูกค้าที่มีคำสั่งซื้อไม่เกินสองรายการ
|
Find the name of the customers who have at most two orders.
|
CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE orders (customer_id VARCHAR, order_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE order_items (product_id VARCHAR, order_id VARCHAR)
|
SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 JOIN order_items AS T3 JOIN products AS T4 ON T1.customer_id = T2.customer_id AND T2.order_id = T3.order_id AND T3.product_id = T4.product_id WHERE T4.product_name = "food" GROUP BY T1.customer_id HAVING COUNT(*) >= 1
|
ระบุชื่อลูกค้าที่เคยซื้อผลิตภัณฑ์ "อาหาร"
|
List the names of the customers who have once bought product "food".
|
CREATE TABLE orders (customer_id VARCHAR, order_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE order_items (product_id VARCHAR, order_item_status VARCHAR, order_id VARCHAR)
|
SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 JOIN order_items AS T3 JOIN products AS T4 ON T1.customer_id = T2.customer_id AND T2.order_id = T3.order_id AND T3.product_id = T4.product_id WHERE T3.order_item_status = "Cancel" AND T4.product_name = "food" GROUP BY T1.customer_id HAVING COUNT(*) >= 1
|
ระบุชื่อลูกค้าที่เคยยกเลิกการซื้อผลิตภัณฑ์ "อาหาร" (สถานะรายการคือ "ยกเลิก")
|
List the names of customers who have once canceled the purchase of the product "food" (the item status is "Cancel").
|
CREATE TABLE architect (gender VARCHAR)
|
SELECT COUNT(*) FROM architect WHERE gender = 'female'
|
สถาปนิกเป็นผู้หญิงกี่คน?
|
How many architects are female?
|
CREATE TABLE architect (name VARCHAR, nationality VARCHAR, id VARCHAR, gender VARCHAR)
|
SELECT name, nationality, id FROM architect WHERE gender = 'male' ORDER BY name
|
ระบุชื่อ สัญชาติ และรหัสประจำตัวของสถาปนิกชายทั้งหมด เรียงตามชื่อตามพจนานุกรม
|
List the name, nationality and id of all male architects ordered by their names lexicographically.
|
CREATE TABLE architect (name VARCHAR, id VARCHAR); CREATE TABLE bridge (length_meters INTEGER, architect_id VARCHAR)
|
SELECT MAX(T1.length_meters), T2.name FROM bridge AS T1 JOIN architect AS T2 ON T1.architect_id = T2.id
|
สะพานมีความยาวสูงสุดกี่เมตร และสถาปนิกชื่ออะไร
|
What is the maximum length in meters for the bridges and what are the architects' names?
|
CREATE TABLE bridge (length_feet INTEGER)
|
SELECT AVG(length_feet) FROM bridge
|
ความยาวเฉลี่ยของสะพานเป็นฟุตเท่าไร?
|
What is the average length in feet of the bridges?
|
CREATE TABLE mill (name VARCHAR, built_year VARCHAR, TYPE VARCHAR)
|
SELECT name, built_year FROM mill WHERE TYPE = 'Grondzeiler'
|
ชื่อและปีที่ก่อสร้างสำหรับโรงงานประเภท 'Grondzeiler' คืออะไร?
|
What are the names and year of construction for the mills of 'Grondzeiler' type?
|
CREATE TABLE mill (Id VARCHAR); CREATE TABLE architect (name VARCHAR, nationality VARCHAR, id VARCHAR)
|
SELECT DISTINCT T1.name, T1.nationality FROM architect AS T1 JOIN mill AS t2 ON T1.id = T2.architect_id
|
ชื่อและสัญชาติของสถาปนิกที่เคยสร้างโรงสีมีชื่อและสัญชาติอะไรบ้าง?
|
What are the distinct names and nationalities of the architects who have ever built a mill?
|
CREATE TABLE mill (name VARCHAR, LOCATION VARCHAR)
|
SELECT name FROM mill WHERE LOCATION <> 'Donceel'
|
โรงงานที่ไม่ได้อยู่ใน 'Donceel' ชื่ออะไร?
|
What are the names of the mills which are not located in 'Donceel'?
|
CREATE TABLE architect (Id VARCHAR); CREATE TABLE mill (type VARCHAR, architect_id VARCHAR)
|
SELECT DISTINCT T1.type FROM mill AS T1 JOIN architect AS t2 ON T1.architect_id = T2.id WHERE T2.nationality = 'American' OR T2.nationality = 'Canadian'
|
โรงสีประเภทใดที่สร้างขึ้นโดยสถาปนิกชาวอเมริกันหรือชาวแคนาดา?
|
What are the distinct types of mills that are built by American or Canadian architects?
|
CREATE TABLE architect (id VARCHAR, name VARCHAR); CREATE TABLE bridge (architect_id VARCHAR)
|
SELECT T1.id, T1.name FROM architect AS T1 JOIN bridge AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) >= 3
|
รหัสและชื่อของสถาปนิกที่สร้างสะพานอย่างน้อย 3 แห่งคืออะไร
|
What are the ids and names of the architects who built at least 3 bridges ?
|
CREATE TABLE architect (id VARCHAR, name VARCHAR, nationality VARCHAR); CREATE TABLE mill (architect_id VARCHAR)
|
SELECT T1.id, T1.name, T1.nationality FROM architect AS T1 JOIN mill AS T2 ON T1.id = T2.architect_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1
|
รหัส ชื่อ และสัญชาติของสถาปนิกที่สร้างโรงงานส่วนใหญ่คืออะไร?
|
What is the id, name and nationality of the architect who built most mills?
|
CREATE TABLE mill (architect_id VARCHAR); CREATE TABLE architect (id VARCHAR, name VARCHAR, gender VARCHAR); CREATE TABLE bridge (architect_id VARCHAR)
|
SELECT T1.id, T1.name, T1.gender FROM architect AS T1 JOIN bridge AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) = 2 UNION SELECT T1.id, T1.name, T1.gender FROM architect AS T1 JOIN mill AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) = 1
|
รหัส ชื่อ และเพศของสถาปนิกที่สร้างสะพานสองแห่งหรือหนึ่งโรงสีคืออะไร
|
What are the ids, names and genders of the architects who built two bridges or one mill?
|
CREATE TABLE bridge (LOCATION VARCHAR, name VARCHAR)
|
SELECT LOCATION FROM bridge WHERE name = 'Kolob Arch' OR name = 'Rainbow Bridge'
|
สะพานชื่อ 'โกลบโค้ง' หรือ 'สะพานสายรุ้ง' อยู่ที่ไหน?
|
What is the location of the bridge named 'Kolob Arch' or 'Rainbow Bridge'?
|
CREATE TABLE mill (name VARCHAR)
|
SELECT name FROM mill WHERE name LIKE '%Moulin%'
|
ชื่อโรงงานใดมีคำภาษาฝรั่งเศสว่า 'Moulin'
|
Which of the mill names contains the french word 'Moulin'?
|
CREATE TABLE architect (Id VARCHAR); CREATE TABLE mill (name VARCHAR, architect_id VARCHAR); CREATE TABLE bridge (architect_id VARCHAR, length_meters INTEGER)
|
SELECT DISTINCT T1.name FROM mill AS T1 JOIN architect AS t2 ON T1.architect_id = T2.id JOIN bridge AS T3 ON T3.architect_id = T2.id WHERE T3.length_meters > 80
|
โรงสีที่สร้างโดยสถาปนิกที่สร้างสะพานยาวกว่า 80 เมตรมีชื่อเฉพาะว่าอะไร?
|
What are the distinct name of the mills built by the architects who have also built a bridge longer than 80 meters?
|
CREATE TABLE mill (TYPE VARCHAR)
|
SELECT TYPE, COUNT(*) FROM mill GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1
|
ประเภทโรงสีที่พบมากที่สุดคืออะไร และมีกี่ประเภท?
|
What is the most common mill type, and how many are there?
|
CREATE TABLE mill (id VARCHAR, architect_id VARCHAR, built_year INTEGER); CREATE TABLE architect (id VARCHAR, architect_id VARCHAR, built_year INTEGER)
|
SELECT COUNT(*) FROM architect WHERE NOT id IN (SELECT architect_id FROM mill WHERE built_year < 1850)
|
มีสถาปนิกกี่คนที่ยังไม่ได้สร้างโรงสีก่อนปี 1850?
|
How many architects haven't built a mill before year 1850?
|
CREATE TABLE bridge (name VARCHAR, architect_id VARCHAR, length_feet VARCHAR); CREATE TABLE architect (id VARCHAR, nationality VARCHAR)
|
SELECT t1.name FROM bridge AS t1 JOIN architect AS t2 ON t1.architect_id = t2.id WHERE t2.nationality = 'American' ORDER BY t1.length_feet
|
แสดงชื่อสะพานทั้งหมดที่ออกแบบโดย American Archtect และเรียงลำดับผลลัพธ์ตามความยาวเท้าของสะพาน
|
show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length.
|
CREATE TABLE book_club (Id VARCHAR)
|
SELECT COUNT(*) FROM book_club
|
มีชมรมหนังสือกี่แห่ง?
|
How many book clubs are there?
|
CREATE TABLE book_club (book_title VARCHAR, author_or_editor VARCHAR, YEAR INTEGER)
|
SELECT book_title, author_or_editor FROM book_club WHERE YEAR > 1989
|
แสดงชื่อหนังสือ และผู้แต่งหรือบรรณาธิการของหนังสือทุกเล่มที่ทำหลังปี พ.ศ. 2532
|
show the titles, and authors or editors for all books made after the year 1989.
|
CREATE TABLE book_club (publisher VARCHAR)
|
SELECT DISTINCT publisher FROM book_club
|
แสดงผู้จัดพิมพ์หนังสือที่แตกต่างกันทั้งหมด
|
Show all distinct publishers for books.
|
CREATE TABLE book_club (YEAR VARCHAR, book_title VARCHAR, publisher VARCHAR)
|
SELECT YEAR, book_title, publisher FROM book_club ORDER BY YEAR DESC
|
แสดงปี ชื่อหนังสือ และผู้จัดพิมพ์ของหนังสือทั้งหมด ตามลำดับปีจากมากไปน้อย
|
Show the years, book titles, and publishers for all books, in descending order by year.
|
CREATE TABLE book_club (publisher VARCHAR)
|
SELECT publisher, COUNT(*) FROM book_club GROUP BY publisher
|
แสดงผู้จัดพิมพ์ทั้งหมดและจำนวนหนังสือของผู้จัดพิมพ์แต่ละราย
|
Show all publishers and the number of books for each publisher.
|
CREATE TABLE book_club (publisher VARCHAR)
|
SELECT publisher FROM book_club GROUP BY publisher ORDER BY COUNT(*) DESC LIMIT 1
|
สำนักพิมพ์ใดที่มีจำนวนหนังสือมากที่สุด?
|
What is the publisher with most number of books?
|
CREATE TABLE book_club (category VARCHAR)
|
SELECT category, COUNT(*) FROM book_club GROUP BY category
|
แสดงหมวดหมู่หนังสือทั้งหมดและจำนวนหนังสือในแต่ละหมวดหมู่
|
Show all book categories and the number of books in each category.
|
CREATE TABLE book_club (category VARCHAR, YEAR INTEGER)
|
SELECT category FROM book_club WHERE YEAR > 1989 GROUP BY category HAVING COUNT(*) >= 2
|
รายชื่อหมวดหมู่ที่มีหนังสืออย่างน้อยสองเล่มหลังจากปี 1989
|
List categories that have at least two books after year 1989.
|
CREATE TABLE book_club (publisher VARCHAR, YEAR VARCHAR)
|
SELECT publisher FROM book_club WHERE YEAR = 1989 INTERSECT SELECT publisher FROM book_club WHERE YEAR = 1990
|
แสดงผู้จัดพิมพ์ด้วยหนังสือที่ตีพิมพ์ในปี 1989 และหนังสือในปี 1990
|
Show publishers with a book published in 1989 and a book in 1990.
|
CREATE TABLE book_club (publisher VARCHAR, YEAR VARCHAR)
|
SELECT publisher FROM book_club EXCEPT SELECT publisher FROM book_club WHERE YEAR = 1989
|
แสดงผู้จัดพิมพ์ทั้งหมดที่ไม่มีหนังสือในปี 1989
|
Show all publishers which do not have a book in 1989.
|
CREATE TABLE movie (title VARCHAR, YEAR VARCHAR, director VARCHAR, budget_million VARCHAR)
|
SELECT title, YEAR, director FROM movie ORDER BY budget_million
|
แสดงชื่อภาพยนตร์ ปี และผู้กำกับทั้งหมด เรียงตามงบประมาณ
|
Show all movie titles, years, and directors, ordered by budget.
|
CREATE TABLE movie (director VARCHAR)
|
SELECT COUNT(DISTINCT director) FROM movie
|
ผู้กำกับภาพยนตร์มีกี่คน?
|
How many movie directors are there?
|
CREATE TABLE movie (title VARCHAR, director VARCHAR, YEAR VARCHAR, gross_worldwide VARCHAR)
|
SELECT title, director FROM movie WHERE YEAR <= 2000 ORDER BY gross_worldwide DESC LIMIT 1
|
ชื่อเรื่องและผู้กำกับสำหรับภาพยนตร์ที่ทำรายได้ทั่วโลกสูงสุดในปี 2000 หรือก่อนหน้านั้นคืออะไร?
|
What is the title and director for the movie with highest worldwide gross in the year 2000 or before?
|
CREATE TABLE movie (director VARCHAR, YEAR VARCHAR)
|
SELECT director FROM movie WHERE YEAR = 2000 INTERSECT SELECT director FROM movie WHERE YEAR = 1999
|
แสดงรายชื่อผู้กำกับที่มีภาพยนตร์ทั้งปี 2542 และ 2543
|
Show all director names who have a movie in both year 1999 and 2000.
|
CREATE TABLE movie (director VARCHAR, YEAR VARCHAR)
|
SELECT director FROM movie WHERE YEAR = 1999 OR YEAR = 2000
|
แสดงรายชื่อผู้กำกับที่มีภาพยนตร์ในปี 2542 หรือ 2543
|
Show all director names who have a movie in the year 1999 or 2000.
|
CREATE TABLE movie (budget_million INTEGER, YEAR INTEGER)
|
SELECT AVG(budget_million), MAX(budget_million), MIN(budget_million) FROM movie WHERE YEAR < 2000
|
งบประมาณเฉลี่ย สูงสุด และต่ำสุดสำหรับภาพยนตร์ทั้งหมดก่อนปี 2000 คือเท่าใด
|
What is the average, maximum, and minimum budget for all movies before 2000.
|
CREATE TABLE culture_company (company_name VARCHAR, book_club_id VARCHAR); CREATE TABLE book_club (book_club_id VARCHAR, publisher VARCHAR)
|
SELECT T1.company_name FROM culture_company AS T1 JOIN book_club AS T2 ON T1.book_club_id = T2.book_club_id WHERE T2.publisher = 'Alyson'
|
ระบุชื่อบริษัททั้งหมดพร้อมหนังสือที่จัดพิมพ์โดย Alyson
|
List all company names with a book published by Alyson.
|
CREATE TABLE movie (title VARCHAR, movie_id VARCHAR); CREATE TABLE culture_company (movie_id VARCHAR, book_club_id VARCHAR, incorporated_in VARCHAR); CREATE TABLE book_club (book_title VARCHAR, book_club_id VARCHAR)
|
SELECT T1.title, T3.book_title FROM movie AS T1 JOIN culture_company AS T2 ON T1.movie_id = T2.movie_id JOIN book_club AS T3 ON T3.book_club_id = T2.book_club_id WHERE T2.incorporated_in = 'China'
|
แสดงชื่อภาพยนตร์และชื่อหนังสือของบริษัททั้งหมดในประเทศจีน
|
Show the movie titles and book titles for all companies in China.
|
CREATE TABLE movie (movie_id VARCHAR, year VARCHAR); CREATE TABLE culture_company (company_name VARCHAR, movie_id VARCHAR)
|
SELECT T2.company_name FROM movie AS T1 JOIN culture_company AS T2 ON T1.movie_id = T2.movie_id WHERE T1.year = 1999
|
แสดงชื่อบริษัททั้งหมดที่มีภาพยนตร์กำกับในปี 2542
|
Show all company names with a movie directed in year 1999.
|
CREATE TABLE singer (Id VARCHAR)
|
SELECT COUNT(*) FROM singer
|
เรามีนักร้องกี่คน?
|
How many singers do we have?
|
CREATE TABLE singer (name VARCHAR, country VARCHAR, age VARCHAR)
|
SELECT name, country, age FROM singer ORDER BY age DESC
|
แสดงชื่อ ประเทศ อายุของนักร้องทุกคน เรียงตามอายุจากอายุมากที่สุดไปอายุน้อยที่สุด
|
Show name, country, age for all singers ordered by age from the oldest to the youngest.
|
CREATE TABLE singer (age INTEGER, country VARCHAR)
|
SELECT AVG(age), MIN(age), MAX(age) FROM singer WHERE country = 'France'
|
อายุเฉลี่ย ขั้นต่ำ และสูงสุดของนักร้องทุกคนจากฝรั่งเศสคือเท่าใด
|
What is the average, minimum, and maximum age of all singers from France?
|
CREATE TABLE singer (song_name VARCHAR, song_release_year VARCHAR, age VARCHAR)
|
SELECT song_name, song_release_year FROM singer ORDER BY age LIMIT 1
|
แสดงชื่อและปีที่ออกเพลงโดยนักร้องอายุน้อยที่สุด
|
Show the name and the release year of the song by the youngest singer.
|
CREATE TABLE singer (country VARCHAR, age INTEGER)
|
SELECT DISTINCT country FROM singer WHERE age > 20
|
นักร้องอายุ 20 ปีขึ้นไปมาจากประเทศใดบ้าง
|
What are all distinct countries where singers above age 20 are from?
|
CREATE TABLE singer (country VARCHAR)
|
SELECT country, COUNT(*) FROM singer GROUP BY country
|
แสดงทุกประเทศและจำนวนนักร้องในแต่ละประเทศ
|
Show all countries and the number of singers in each country.
|
CREATE TABLE singer (song_name VARCHAR, age INTEGER)
|
SELECT song_name FROM singer WHERE age > (SELECT AVG(age) FROM singer)
|
รายชื่อเพลงทั้งหมดโดยนักร้องที่อายุมากกว่าค่าเฉลี่ย
|
List all song names by singers above the average age.
|
CREATE TABLE stadium (LOCATION VARCHAR, name VARCHAR, capacity INTEGER)
|
SELECT LOCATION, name FROM stadium WHERE capacity BETWEEN 5000 AND 10000
|
แสดงที่ตั้งและชื่อสนามกีฬาทั้งหมดที่มีความจุระหว่าง 5,000 ถึง 10,000
|
Show location and name for all stadiums with a capacity between 5000 and 10000.
|
CREATE TABLE stadium (average VARCHAR, capacity INTEGER)
|
SELECT MAX(capacity), average FROM stadium
|
ความจุสูงสุดและค่าเฉลี่ยของสนามทั้งหมดคือเท่าใด ?
|
What is the maximum capacity and the average of all stadiums ?
|
CREATE TABLE stadium (capacity INTEGER)
|
SELECT AVG(capacity), MAX(capacity) FROM stadium
|
ความจุเฉลี่ยและสูงสุดสำหรับสนามกีฬาทั้งหมดคือเท่าใด ?
|
What is the average and maximum capacities for all stadiums ?
|
CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, average VARCHAR)
|
SELECT name, capacity FROM stadium ORDER BY average DESC LIMIT 1
|
ชื่อและความจุของสนามกีฬาที่มีผู้เข้าชมเฉลี่ยสูงสุดคืออะไร?
|
What is the name and capacity for the stadium with highest average attendance?
|
CREATE TABLE concert (YEAR VARCHAR)
|
SELECT COUNT(*) FROM concert WHERE YEAR = 2014 OR YEAR = 2015
|
ปี 2557 หรือ 2558 มีคอนเสิร์ตกี่รอบ?
|
How many concerts are there in year 2014 or 2015?
|
CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR)
|
SELECT T2.name, COUNT(*) FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id GROUP BY T1.stadium_id
|
แสดงชื่อสนามและจำนวนคอนเสิร์ตในแต่ละสนาม
|
Show the stadium name and the number of concerts in each stadium.
|
CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, year VARCHAR)
|
SELECT T2.name, T2.capacity FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year >= 2014 GROUP BY T2.stadium_id ORDER BY COUNT(*) DESC LIMIT 1
|
แสดงชื่อสนามกีฬาและความจุที่มีจำนวนคอนเสิร์ตมากที่สุดในปี 2557 เป็นต้นไป
|
Show the stadium name and capacity with most number of concerts in year 2014 or after.
|
CREATE TABLE concert (stadium_id VARCHAR, year INTEGER); CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, stadium_id VARCHAR)
|
SELECT t2.name, t2.capacity FROM concert AS t1 JOIN stadium AS t2 ON t1.stadium_id = t2.stadium_id WHERE t1.year > 2013 GROUP BY t2.stadium_id ORDER BY COUNT(*) DESC LIMIT 1
|
ชื่อและความจุของสนามกีฬาที่มีคอนเสิร์ตมากที่สุดหลังปี 2013 คืออะไร?
|
What is the name and capacity of the stadium with the most concerts after 2013 ?
|
CREATE TABLE concert (YEAR VARCHAR)
|
SELECT YEAR FROM concert GROUP BY YEAR ORDER BY COUNT(*) DESC LIMIT 1
|
ปีไหนมีคอนเสิร์ตมากที่สุด?
|
Which year has most number of concerts?
|
CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (name VARCHAR, stadium_id VARCHAR)
|
SELECT name FROM stadium WHERE NOT stadium_id IN (SELECT stadium_id FROM concert)
|
แสดงชื่อสนามโดยไม่มีคอนเสิร์ตใดๆ
|
Show the stadium names without any concert.
|
CREATE TABLE singer (country VARCHAR, age INTEGER)
|
SELECT country FROM singer WHERE age > 40 INTERSECT SELECT country FROM singer WHERE age < 30
|
แสดงประเทศที่มีนักร้องอายุมากกว่า 40 ปี และนักร้องอายุต่ำกว่า 30 ปี มาจาก
|
Show countries where a singer above age 40 and a singer below 30 are from.
|
CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, year VARCHAR); CREATE TABLE stadium (name VARCHAR)
|
SELECT name FROM stadium EXCEPT SELECT T2.name FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year = 2014
|
แสดงชื่อสนามทั้งหมด ยกเว้นสนามที่มีคอนเสิร์ตในปี 2557
|
Show names for all stadiums except for stadiums having a concert in year 2014.
|
CREATE TABLE singer_in_concert (concert_id VARCHAR); CREATE TABLE concert (concert_name VARCHAR, theme VARCHAR, concert_id VARCHAR)
|
SELECT T2.concert_name, T2.theme, COUNT(*) FROM singer_in_concert AS T1 JOIN concert AS T2 ON T1.concert_id = T2.concert_id GROUP BY T2.concert_id
|
แสดงชื่อและธีมคอนเสิร์ตทั้งหมด และจำนวนนักร้องในแต่ละคอนเสิร์ต
|
Show the name and theme for all concerts and the number of singers in each concert.
|
CREATE TABLE singer_in_concert (concert_id VARCHAR); CREATE TABLE concert (concert_name VARCHAR, theme VARCHAR, concert_id VARCHAR)
|
SELECT t2.concert_name, t2.theme, COUNT(*) FROM singer_in_concert AS t1 JOIN concert AS t2 ON t1.concert_id = t2.concert_id GROUP BY t2.concert_id
|
ชื่อ ธีม และจำนวนนักร้องในแต่ละคอนเสิร์ตมีอะไรบ้าง?
|
What are the names , themes , and number of singers for every concert ?
|
CREATE TABLE singer_in_concert (singer_id VARCHAR); CREATE TABLE singer (name VARCHAR, singer_id VARCHAR)
|
SELECT T2.name, COUNT(*) FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id GROUP BY T2.singer_id
|
รายชื่อนักร้องและจำนวนคอนเสิร์ตของนักร้องแต่ละคน
|
List singer names and number of concerts for each singer.
|
CREATE TABLE singer_in_concert (singer_id VARCHAR, concert_id VARCHAR); CREATE TABLE concert (concert_id VARCHAR, year VARCHAR); CREATE TABLE singer (name VARCHAR, singer_id VARCHAR)
|
SELECT T2.name FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id JOIN concert AS T3 ON T1.concert_id = T3.concert_id WHERE T3.year = 2014
|
รายชื่อนักร้องทั้งหมดในคอนเสิร์ตปี 2557
|
List all singer names in concerts in year 2014.
|
CREATE TABLE singer (name VARCHAR, country VARCHAR, song_name VARCHAR)
|
SELECT name, country FROM singer WHERE song_name LIKE '%Hey%'
|
ชื่อและสัญชาติของนักร้องที่มีเพลงว่า 'เฮ้' อยู่ในชื่ออะไร?
|
what is the name and nation of the singer who have a song having 'Hey' in its name?
|
CREATE TABLE stadium (name VARCHAR, location VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, Year VARCHAR)
|
SELECT T2.name, T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2014 INTERSECT SELECT T2.name, T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2015
|
ค้นหาชื่อและที่ตั้งของสนามกีฬาที่มีคอนเสิร์ตบางแห่งเกิดขึ้นในปี 2014 และ 2015
|
Find the name and location of the stadiums which some concerts happened in the years of both 2014 and 2015.
|
CREATE TABLE concert (stadium_id VARCHAR, capacity VARCHAR); CREATE TABLE stadium (stadium_id VARCHAR, capacity VARCHAR)
|
SELECT COUNT(*) FROM concert WHERE stadium_id = (SELECT stadium_id FROM stadium ORDER BY capacity DESC LIMIT 1)
|
ค้นหาจำนวนคอนเสิร์ตที่เกิดขึ้นในสนามกีฬาที่มีความจุสูงสุด
|
Find the number of concerts happened in the stadium with the highest capacity .
|
CREATE TABLE pets (weight INTEGER)
|
SELECT COUNT(*) FROM pets WHERE weight > 10
|
จงหาจำนวนสัตว์เลี้ยงที่มีน้ำหนักมากกว่า 10
|
Find the number of pets whose weight is heavier than 10.
|
CREATE TABLE pets (weight VARCHAR, pet_age VARCHAR)
|
SELECT weight FROM pets ORDER BY pet_age LIMIT 1
|
ค้นหาน้ำหนักของสุนัขที่อายุน้อยที่สุด
|
Find the weight of the youngest dog.
|
CREATE TABLE pets (petType VARCHAR, weight INTEGER)
|
SELECT MAX(weight), petType FROM pets GROUP BY petType
|
ค้นหาน้ำหนักสูงสุดสำหรับสัตว์เลี้ยงแต่ละประเภท ระบุน้ำหนักสูงสุดและประเภทสัตว์เลี้ยง
|
Find the maximum weight for each type of pet. List the maximum weight and pet type.
|
CREATE TABLE student (stuid VARCHAR, age INTEGER); CREATE TABLE has_pet (stuid VARCHAR)
|
SELECT COUNT(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.age > 20
|
ค้นหาจำนวนสัตว์เลี้ยงของนักเรียนที่มีอายุมากกว่า 20 ปี
|
Find number of pets owned by students who are older than 20.
|
CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR); CREATE TABLE student (stuid VARCHAR, sex VARCHAR)
|
SELECT COUNT(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T2.petid = T3.petid WHERE T1.sex = 'F' AND T3.pettype = 'dog'
|
จงหาจำนวนสุนัขที่นักเรียนหญิงเลี้ยงไว้ (เพศ F)
|
Find the number of dog pets that are raised by female students (with sex F).
|
CREATE TABLE pets (pettype VARCHAR)
|
SELECT COUNT(DISTINCT pettype) FROM pets
|
ค้นหาจำนวนสัตว์เลี้ยงประเภทต่างๆ
|
Find the number of distinct type of pets.
|
CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE student (Fname VARCHAR, stuid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR)
|
SELECT DISTINCT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' OR T3.pettype = 'dog'
|
ค้นหาชื่อนักเรียนที่มีสัตว์เลี้ยงแมวหรือสุนัข
|
Find the first name of students who have cat or dog pet.
|
CREATE TABLE student (fname VARCHAR, stuid VARCHAR); CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR)
|
SELECT t1.fname FROM student AS t1 JOIN has_pet AS t2 ON t1.stuid = t2.stuid JOIN pets AS t3 ON t3.petid = t2.petid WHERE t3.pettype = 'cat' INTERSECT SELECT t1.fname FROM student AS t1 JOIN has_pet AS t2 ON t1.stuid = t2.stuid JOIN pets AS t3 ON t3.petid = t2.petid WHERE t3.pettype = 'dog'
|
ค้นหาชื่อนักเรียนที่มีทั้งสัตว์เลี้ยงแมวและสุนัข
|
Find the first name of students who have both cat and dog pets .
|
CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE student (Fname VARCHAR, stuid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR)
|
SELECT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' INTERSECT SELECT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog'
|
ชื่อของนักเรียนที่มีทั้งแมวและสุนัขเป็นสัตว์เลี้ยงคืออะไร?
|
What are the students' first names who have both cats and dogs as pets?
|
CREATE TABLE student (stuid VARCHAR); CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR); CREATE TABLE student (major VARCHAR, age VARCHAR, stuid VARCHAR)
|
SELECT major, age FROM student WHERE NOT stuid IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat')
|
ค้นหาสาขาวิชาและอายุของนักเรียนที่ไม่มีสัตว์เลี้ยงแมว
|
Find the major and age of students who do not have a cat pet.
|
CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR); CREATE TABLE student (stuid VARCHAR)
|
SELECT stuid FROM student EXCEPT SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat'
|
ค้นหารหัสนักเรียนที่ไม่มีสัตว์เลี้ยงแมว
|
Find the id of students who do not have a cat pet.
|
CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE student (fname VARCHAR, age VARCHAR, stuid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR)
|
SELECT T1.fname, T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog' AND NOT T1.stuid IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat')
|
ค้นหาชื่อและอายุของนักเรียนที่มีสุนัขแต่ไม่มีแมวเป็นสัตว์เลี้ยง
|
Find the first name and age of students who have a dog but do not have a cat as a pet.
|
CREATE TABLE pets (pettype VARCHAR, weight VARCHAR, pet_age VARCHAR)
|
SELECT pettype, weight FROM pets ORDER BY pet_age LIMIT 1
|
ค้นหาประเภทและน้ำหนักของสัตว์เลี้ยงที่อายุน้อยที่สุด
|
Find the type and weight of the youngest pet.
|
CREATE TABLE pets (petid VARCHAR, weight VARCHAR, pet_age INTEGER)
|
SELECT petid, weight FROM pets WHERE pet_age > 1
|
ค้นหารหัสและน้ำหนักของสัตว์เลี้ยงทุกตัวที่มีอายุมากกว่า 1 ปี
|
Find the id and weight of all pets whose age is older than 1.
|
CREATE TABLE pets (pettype VARCHAR, pet_age INTEGER)
|
SELECT AVG(pet_age), MAX(pet_age), pettype FROM pets GROUP BY pettype
|
ค้นหาอายุเฉลี่ยและอายุสูงสุดของสัตว์เลี้ยงแต่ละประเภท
|
Find the average and maximum age for each type of pet.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.