context
stringlengths
27
489
answer
stringlengths
18
557
question_th
stringlengths
8
226
question_en
stringlengths
12
244
CREATE TABLE document_sections (document_name VARCHAR, document_code VARCHAR); CREATE TABLE documents (document_name VARCHAR, document_code VARCHAR)
SELECT document_name FROM documents WHERE NOT document_code IN (SELECT document_code FROM document_sections)
ค้นหาชื่อเอกสารทั้งหมดโดยไม่มีส่วนใดๆ
Find all the name of documents without any sections.
CREATE TABLE users (user_name VARCHAR, password VARCHAR, role_code VARCHAR)
SELECT user_name, password FROM users GROUP BY role_code ORDER BY COUNT(*) DESC LIMIT 1
ระบุชื่อผู้ใช้และรหัสผ่านทั้งหมดของผู้ใช้ที่มีบทบาทยอดนิยม
List all the username and passwords of users with the most popular role.
CREATE TABLE document_functional_areas (document_code VARCHAR, functional_area_code VARCHAR); CREATE TABLE documents (access_count INTEGER, document_code VARCHAR); CREATE TABLE functional_areas (functional_area_code VARCHAR, functional_area_description VARCHAR)
SELECT AVG(t1.access_count) FROM documents AS t1 JOIN document_functional_areas AS t2 ON t1.document_code = t2.document_code JOIN functional_areas AS t3 ON t2.functional_area_code = t3.functional_area_code WHERE t3.functional_area_description = "Acknowledgement"
ค้นหาจำนวนการเข้าถึงเอกสารโดยเฉลี่ยด้วยขอบเขตการทำงาน "การรับทราบ"
Find the average access counts of documents with functional area "Acknowledgement".
CREATE TABLE document_sections_images (section_id VARCHAR); CREATE TABLE documents (document_name VARCHAR); CREATE TABLE documents (document_name VARCHAR, document_code VARCHAR); CREATE TABLE document_sections (document_code VARCHAR, section_id VARCHAR)
SELECT document_name FROM documents EXCEPT SELECT t1.document_name FROM documents AS t1 JOIN document_sections AS t2 ON t1.document_code = t2.document_code JOIN document_sections_images AS t3 ON t2.section_id = t3.section_id
ค้นหาชื่อเอกสารโดยไม่มีรูปภาพ
Find names of the document without any images.
CREATE TABLE document_sections (document_code VARCHAR); CREATE TABLE documents (document_name VARCHAR, document_code VARCHAR)
SELECT t1.document_name FROM documents AS t1 JOIN document_sections AS t2 ON t1.document_code = t2.document_code GROUP BY t1.document_code ORDER BY COUNT(*) DESC LIMIT 1
เอกสารที่มีจำนวนส่วนมากที่สุดชื่ออะไร
What is the name of the document with the most number of sections?
CREATE TABLE documents (document_name VARCHAR)
SELECT document_name FROM documents WHERE document_name LIKE "%CV%"
แสดงรายการชื่อเอกสารทั้งหมดที่มี "CV"
List all the document names which contains "CV".
CREATE TABLE users (user_login VARCHAR)
SELECT COUNT(*) FROM users WHERE user_login = 1
มีผู้ใช้เข้าสู่ระบบกี่คน?
How many users are logged in?
CREATE TABLE users (role_description VARCHAR, role_code VARCHAR, user_login VARCHAR); CREATE TABLE ROLES (role_description VARCHAR, role_code VARCHAR, user_login VARCHAR)
SELECT role_description FROM ROLES WHERE role_code = (SELECT role_code FROM users WHERE user_login = 1 GROUP BY role_code ORDER BY COUNT(*) DESC LIMIT 1)
ค้นหาคำอธิบายบทบาทยอดนิยมในหมู่ผู้ใช้ที่เข้าสู่ระบบ
Find the description of the most popular role among the users that have logged in.
CREATE TABLE documents (access_count INTEGER, document_structure_code VARCHAR)
SELECT AVG(access_count) FROM documents GROUP BY document_structure_code ORDER BY COUNT(*) LIMIT 1
ค้นหาจำนวนการเข้าถึงโดยเฉลี่ยของเอกสารที่มีโครงสร้างที่ได้รับความนิยมน้อยที่สุด
Find the average access count of documents with the least popular structure.
CREATE TABLE images (image_name VARCHAR, image_url VARCHAR)
SELECT image_name, image_url FROM images ORDER BY image_name
ระบุชื่อรูปภาพและ URL ทั้งหมดตามลำดับชื่อ
List all the image name and URLs in the order of their names.
CREATE TABLE users (role_code VARCHAR)
SELECT COUNT(*), role_code FROM users GROUP BY role_code
ค้นหาจำนวนผู้ใช้ในแต่ละบทบาท
Find the number of users in each role.
CREATE TABLE documents (document_type_code VARCHAR)
SELECT document_type_code FROM documents GROUP BY document_type_code HAVING COUNT(*) > 2
เอกสารประเภทใดที่มีเอกสารที่เกี่ยวข้องมากกว่า 2 ฉบับ
What document types have more than 2 corresponding documents?
CREATE TABLE Companies (Id VARCHAR)
SELECT COUNT(*) FROM Companies
มีกี่บริษัท?
How many companies are there?
CREATE TABLE Companies (name VARCHAR, Market_Value_billion VARCHAR)
SELECT name FROM Companies ORDER BY Market_Value_billion DESC
รายชื่อบริษัทตามลำดับมูลค่าตลาดจากมากไปหาน้อย
List the names of companies in descending order of market value.
CREATE TABLE Companies (name VARCHAR, Headquarters VARCHAR)
SELECT name FROM Companies WHERE Headquarters <> 'USA'
บริษัทที่ไม่ได้มีสำนักงานใหญ่ไม่ใช่ "สหรัฐอเมริกา" ชื่ออะไร
What are the names of companies whose headquarters are not "USA"?
CREATE TABLE Companies (name VARCHAR, Assets_billion VARCHAR)
SELECT name, Assets_billion FROM Companies ORDER BY name
ชื่อและทรัพย์สินของแต่ละบริษัทคืออะไร เรียงตามชื่อบริษัทจากน้อยไปหามาก?
What are the name and assets of each company, sorted in ascending order of company name?
CREATE TABLE Companies (Profits_billion INTEGER)
SELECT AVG(Profits_billion) FROM Companies
ผลกำไรเฉลี่ยของบริษัทคือเท่าไร?
What are the average profits of companies?
CREATE TABLE Companies (Sales_billion INTEGER, Industry VARCHAR)
SELECT MAX(Sales_billion), MIN(Sales_billion) FROM Companies WHERE Industry <> "Banking"
ยอดขายสูงสุดและต่ำสุดของบริษัทที่อุตสาหกรรมที่ไม่ใช่ "การธนาคาร" คือเท่าใด
What are the maximum and minimum sales of the companies whose industries are not "Banking".
CREATE TABLE Companies (Industry VARCHAR)
SELECT COUNT(DISTINCT Industry) FROM Companies
บริษัทต่างๆ อยู่ในอุตสาหกรรมที่แตกต่างกันกี่แห่ง?
How many different industries are the companies in?
CREATE TABLE buildings (name VARCHAR, Height VARCHAR)
SELECT name FROM buildings ORDER BY Height DESC
ระบุชื่ออาคารตามลำดับความสูงของอาคารจากมากไปน้อย
List the names of buildings in descending order of building height.
CREATE TABLE buildings (Stories VARCHAR, Height VARCHAR)
SELECT Stories FROM buildings ORDER BY Height DESC LIMIT 1
ค้นหาเรื่องราวของอาคารที่มีความสูงมากที่สุด
Find the stories of the building with the largest height.
CREATE TABLE buildings (name VARCHAR, id VARCHAR); CREATE TABLE Office_locations (building_id VARCHAR, company_id VARCHAR); CREATE TABLE Companies (name VARCHAR, id VARCHAR)
SELECT T3.name, T2.name FROM Office_locations AS T1 JOIN buildings AS T2 ON T1.building_id = T2.id JOIN Companies AS T3 ON T1.company_id = T3.id
ระบุชื่ออาคารพร้อมกับชื่อบริษัทที่มีสำนักงานอยู่ในอาคาร
List the name of a building along with the name of a company whose office is in the building.
CREATE TABLE buildings (name VARCHAR, id VARCHAR); CREATE TABLE Companies (id VARCHAR); CREATE TABLE Office_locations (building_id VARCHAR, company_id VARCHAR)
SELECT T2.name FROM Office_locations AS T1 JOIN buildings AS T2 ON T1.building_id = T2.id JOIN Companies AS T3 ON T1.company_id = T3.id GROUP BY T1.building_id HAVING COUNT(*) > 1
แสดงชื่ออาคารที่มีสำนักงานของบริษัทมากกว่าหนึ่งแห่ง
Show the names of the buildings that have more than one company offices.
CREATE TABLE buildings (name VARCHAR, id VARCHAR); CREATE TABLE Companies (id VARCHAR); CREATE TABLE Office_locations (building_id VARCHAR, company_id VARCHAR)
SELECT T2.name FROM Office_locations AS T1 JOIN buildings AS T2 ON T1.building_id = T2.id JOIN Companies AS T3 ON T1.company_id = T3.id GROUP BY T1.building_id ORDER BY COUNT(*) DESC LIMIT 1
แสดงชื่ออาคารที่มีสำนักงานของบริษัทมากที่สุด
Show the name of the building that has the most company offices.
CREATE TABLE buildings (name VARCHAR, Status VARCHAR, Stories VARCHAR)
SELECT name FROM buildings WHERE Status = "on-hold" ORDER BY Stories
กรุณาแสดงชื่ออาคารที่มีสถานะเป็น "ระงับ" เรียงตามลำดับเรื่องจากน้อยไปมาก
Please show the names of the buildings whose status is "on-hold", in ascending order of stories.
CREATE TABLE Companies (Industry VARCHAR)
SELECT Industry, COUNT(*) FROM Companies GROUP BY Industry
โปรดแสดงแต่ละอุตสาหกรรมและจำนวนบริษัทที่เกี่ยวข้องในอุตสาหกรรมนั้น
Please show each industry and the corresponding number of companies in that industry.
CREATE TABLE Companies (Industry VARCHAR)
SELECT Industry FROM Companies GROUP BY Industry ORDER BY COUNT(*) DESC
กรุณาแสดงอุตสาหกรรมของบริษัทโดยเรียงตามจำนวนบริษัทจากมากไปหาน้อย
Please show the industries of companies in descending order of the number of companies.
CREATE TABLE Companies (Industry VARCHAR)
SELECT Industry FROM Companies GROUP BY Industry ORDER BY COUNT(*) DESC LIMIT 1
รายชื่ออุตสาหกรรมที่มีบริษัทส่วนใหญ่ใช้ร่วมกัน
List the industry shared by the most companies.
CREATE TABLE buildings (name VARCHAR, id VARCHAR, building_id VARCHAR); CREATE TABLE Office_locations (name VARCHAR, id VARCHAR, building_id VARCHAR)
SELECT name FROM buildings WHERE NOT id IN (SELECT building_id FROM Office_locations)
รายชื่ออาคารที่ไม่มีสำนักงานของบริษัท
List the names of buildings that have no company office.
CREATE TABLE Companies (Industry VARCHAR, Headquarters VARCHAR)
SELECT Industry FROM Companies WHERE Headquarters = "USA" INTERSECT SELECT Industry FROM Companies WHERE Headquarters = "China"
แสดงอุตสาหกรรมที่ใช้ร่วมกันโดยบริษัทที่มีสำนักงานใหญ่คือ "สหรัฐอเมริกา" และบริษัทที่มีสำนักงานใหญ่คือ "จีน"
Show the industries shared by companies whose headquarters are "USA" and companies whose headquarters are "China".
CREATE TABLE Companies (Industry VARCHAR)
SELECT COUNT(*) FROM Companies WHERE Industry = "Banking" OR Industry = "Conglomerate"
ค้นหาจำนวนบริษัทที่มีอุตสาหกรรมเป็น "การธนาคาร" หรือ "กลุ่มบริษัทในเครือ"
Find the number of companies whose industry is "Banking" or "Conglomerate",
CREATE TABLE Companies (Headquarters VARCHAR)
SELECT Headquarters FROM Companies GROUP BY Headquarters HAVING COUNT(*) > 2
แสดงสำนักงานใหญ่ที่ใช้ร่วมกันโดยบริษัทมากกว่าสองแห่ง
Show the headquarters shared by more than two companies.
CREATE TABLE Products (Id VARCHAR)
SELECT COUNT(*) FROM Products
สินค้ามีกี่รายการคะ?
How many products are there?
CREATE TABLE Products (Product_Name VARCHAR, Product_Price VARCHAR)
SELECT Product_Name FROM Products ORDER BY Product_Price
ระบุชื่อผลิตภัณฑ์โดยเรียงลำดับราคาจากน้อยไปหามาก
List the name of products in ascending order of price.
CREATE TABLE Products (Product_Name VARCHAR, Product_Type_Code VARCHAR)
SELECT Product_Name, Product_Type_Code FROM Products
ชื่อและรหัสประเภทสินค้าคืออะไร?
What are the names and type codes of products?
CREATE TABLE Products (Product_Price VARCHAR, Product_Name VARCHAR)
SELECT Product_Price FROM Products WHERE Product_Name = "Dining" OR Product_Name = "Trading Policy"
แสดงราคาสินค้าชื่อ "การรับประทานอาหาร" หรือ "นโยบายการค้า"
Show the prices of the products named "Dining" or "Trading Policy".
CREATE TABLE Products (Product_Price INTEGER)
SELECT AVG(Product_Price) FROM Products
ราคาเฉลี่ยของสินค้าคือเท่าไร?
What is the average price for products?
CREATE TABLE Products (Product_Name VARCHAR, Product_Price VARCHAR)
SELECT Product_Name FROM Products ORDER BY Product_Price DESC LIMIT 1
สินค้าราคาสูงสุดชื่ออะไรคะ?
What is the name of the product with the highest price?
CREATE TABLE Products (Product_Type_Code VARCHAR)
SELECT Product_Type_Code, COUNT(*) FROM Products GROUP BY Product_Type_Code
แสดงรหัสประเภทสินค้าและจำนวนสินค้าพร้อมรหัสแต่ละประเภท
Show different type codes of products and the number of products with each type code.
CREATE TABLE Products (Product_Type_Code VARCHAR)
SELECT Product_Type_Code FROM Products GROUP BY Product_Type_Code ORDER BY COUNT(*) DESC LIMIT 1
แสดงรหัสประเภทที่พบบ่อยที่สุดในผลิตภัณฑ์ต่างๆ
Show the most common type code across products.
CREATE TABLE Products (Product_Type_Code VARCHAR)
SELECT Product_Type_Code FROM Products GROUP BY Product_Type_Code HAVING COUNT(*) >= 2
แสดงรหัสประเภทผลิตภัณฑ์ที่มีผลิตภัณฑ์อย่างน้อยสองรายการ
Show the product type codes that have at least two products.
CREATE TABLE Products (Product_Type_Code VARCHAR, Product_Price INTEGER)
SELECT Product_Type_Code FROM Products WHERE Product_Price > 4500 INTERSECT SELECT Product_Type_Code FROM Products WHERE Product_Price < 3000
แสดงรหัสประเภทสินค้าที่มีทั้งสินค้าราคาสูงกว่า 4,500 และสินค้าราคาต่ำกว่า 3,000
Show the product type codes that have both products with price higher than 4500 and products with price lower than 3000.
CREATE TABLE Products (Product_Name VARCHAR, Product_ID VARCHAR); CREATE TABLE Products_in_Events (Product_ID VARCHAR)
SELECT T1.Product_Name, COUNT(*) FROM Products AS T1 JOIN Products_in_Events AS T2 ON T1.Product_ID = T2.Product_ID GROUP BY T1.Product_Name
แสดงชื่อผลิตภัณฑ์และจำนวนกิจกรรมที่เข้าร่วม
Show the names of products and the number of events they are in.
CREATE TABLE Products (Product_Name VARCHAR, Product_ID VARCHAR); CREATE TABLE Products_in_Events (Product_ID VARCHAR)
SELECT T1.Product_Name, COUNT(*) FROM Products AS T1 JOIN Products_in_Events AS T2 ON T1.Product_ID = T2.Product_ID GROUP BY T1.Product_Name ORDER BY COUNT(*) DESC
แสดงชื่อผลิตภัณฑ์และจำนวนเหตุการณ์ที่อยู่ใน จัดเรียงตามจำนวนเหตุการณ์จากมากไปน้อย
Show the names of products and the number of events they are in, sorted by the number of events in descending order.
CREATE TABLE Products (Product_Name VARCHAR, Product_ID VARCHAR); CREATE TABLE Products_in_Events (Product_ID VARCHAR)
SELECT T1.Product_Name FROM Products AS T1 JOIN Products_in_Events AS T2 ON T1.Product_ID = T2.Product_ID GROUP BY T1.Product_Name HAVING COUNT(*) >= 2
แสดงชื่อผลิตภัณฑ์ที่อยู่ในเหตุการณ์อย่างน้อยสองเหตุการณ์
Show the names of products that are in at least two events.
CREATE TABLE Products (Product_Name VARCHAR, Product_ID VARCHAR); CREATE TABLE Products_in_Events (Product_ID VARCHAR)
SELECT T1.Product_Name FROM Products AS T1 JOIN Products_in_Events AS T2 ON T1.Product_ID = T2.Product_ID GROUP BY T1.Product_Name HAVING COUNT(*) >= 2 ORDER BY T1.Product_Name
แสดงชื่อของผลิตภัณฑ์ที่อยู่ในเหตุการณ์อย่างน้อยสองเหตุการณ์โดยเรียงลำดับตามตัวอักษรของชื่อผลิตภัณฑ์
Show the names of products that are in at least two events in ascending alphabetical order of product name.
CREATE TABLE Products (Product_Name VARCHAR, Product_ID VARCHAR); CREATE TABLE Products_in_Events (Product_Name VARCHAR, Product_ID VARCHAR)
SELECT Product_Name FROM Products WHERE NOT Product_ID IN (SELECT Product_ID FROM Products_in_Events)
แจ้งชื่อสินค้าที่ไม่อยู่ในกรณีใดๆ
List the names of products that are not in any event.
CREATE TABLE artwork (Id VARCHAR)
SELECT COUNT(*) FROM artwork
มีผลงานกี่ชิ้น?
How many artworks are there?
CREATE TABLE artwork (Name VARCHAR)
SELECT Name FROM artwork ORDER BY Name
รายชื่อผลงานโดยเรียงตามตัวอักษรจากน้อยไปหามาก
List the name of artworks in ascending alphabetical order.
CREATE TABLE artwork (Name VARCHAR, TYPE VARCHAR)
SELECT Name FROM artwork WHERE TYPE <> "Program Talent Show"
ระบุชื่อผลงานที่ไม่ใช่ประเภท "Program Talent Show"
List the name of artworks whose type is not "Program Talent Show".
CREATE TABLE festival_detail (Festival_Name VARCHAR, LOCATION VARCHAR)
SELECT Festival_Name, LOCATION FROM festival_detail
ชื่อและที่ตั้งของเทศกาลคืออะไร?
What are the names and locations of festivals?
CREATE TABLE festival_detail (Chair_Name VARCHAR, YEAR VARCHAR)
SELECT Chair_Name FROM festival_detail ORDER BY YEAR
ชื่อประธานในเทศกาลต่างๆ เรียงตามปีที่จัดขึ้นมีชื่ออะไรบ้าง?
What are the names of the chairs of festivals, sorted in ascending order of the year held?
CREATE TABLE festival_detail (LOCATION VARCHAR, Num_of_Audience VARCHAR)
SELECT LOCATION FROM festival_detail ORDER BY Num_of_Audience DESC LIMIT 1
สถานที่จัดงานเทศกาลที่มีผู้ชมมากที่สุดคือที่ไหน?
What is the location of the festival with the largest number of audience?
CREATE TABLE festival_detail (Festival_Name VARCHAR, YEAR VARCHAR)
SELECT Festival_Name FROM festival_detail WHERE YEAR = 2007
เทศกาลที่จัดขึ้นในปี 2550 มีชื่ออะไรบ้าง?
What are the names of festivals held in year 2007?
CREATE TABLE festival_detail (Num_of_Audience INTEGER)
SELECT AVG(Num_of_Audience) FROM festival_detail
จำนวนผู้ชมเทศกาลโดยเฉลี่ยคือเท่าไร?
What is the average number of audience for festivals?
CREATE TABLE festival_detail (Festival_Name VARCHAR, YEAR VARCHAR)
SELECT Festival_Name FROM festival_detail ORDER BY YEAR DESC LIMIT 3
แสดงชื่อเทศกาลสามเทศกาลล่าสุด
Show the names of the three most recent festivals.
CREATE TABLE artwork (Name VARCHAR, Artwork_ID VARCHAR); CREATE TABLE nomination (Artwork_ID VARCHAR, Festival_ID VARCHAR); CREATE TABLE festival_detail (Festival_Name VARCHAR, Festival_ID VARCHAR)
SELECT T2.Name, T3.Festival_Name FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID
ในการเสนอชื่อแต่ละครั้งให้แสดงชื่อผลงานและชื่อเทศกาลที่ได้รับการเสนอชื่อเข้าชิง
For each nomination, show the name of the artwork and name of the festival where it is nominated.
CREATE TABLE nomination (Artwork_ID VARCHAR, Festival_ID VARCHAR); CREATE TABLE festival_detail (Festival_ID VARCHAR, Year VARCHAR); CREATE TABLE artwork (Type VARCHAR, Artwork_ID VARCHAR)
SELECT DISTINCT T2.Type FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID WHERE T3.Year = 2007
จัดแสดงผลงานศิลปะประเภทต่างๆ ที่ได้รับการเสนอชื่อเข้าชิงในเทศกาลประจำปี 2550
Show distinct types of artworks that are nominated in festivals in 2007.
CREATE TABLE artwork (Name VARCHAR, Artwork_ID VARCHAR); CREATE TABLE nomination (Artwork_ID VARCHAR, Festival_ID VARCHAR); CREATE TABLE festival_detail (Festival_ID VARCHAR, Year VARCHAR)
SELECT T2.Name FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID ORDER BY T3.Year
แสดงชื่อผลงานตามลำดับปีที่ได้รับการเสนอชื่อเข้าชิง
Show the names of artworks in ascending order of the year they are nominated in.
CREATE TABLE nomination (Artwork_ID VARCHAR, Festival_ID VARCHAR); CREATE TABLE artwork (Artwork_ID VARCHAR, Type VARCHAR); CREATE TABLE festival_detail (Festival_Name VARCHAR, Festival_ID VARCHAR)
SELECT T3.Festival_Name FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID WHERE T2.Type = "Program Talent Show"
แสดงรายชื่อเทศกาลที่มีการเสนอชื่อผลงานประเภท “Program Talent Show”
Show the names of festivals that have nominated artworks of type "Program Talent Show".
CREATE TABLE nomination (Festival_ID VARCHAR, Artwork_ID VARCHAR); CREATE TABLE festival_detail (Festival_Name VARCHAR, Festival_ID VARCHAR); CREATE TABLE artwork (Artwork_ID VARCHAR)
SELECT T1.Festival_ID, T3.Festival_Name FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID GROUP BY T1.Festival_ID HAVING COUNT(*) >= 2
แสดงรหัสและชื่อของเทศกาลที่ได้รับการเสนอชื่อเข้าชิงงานศิลปะอย่างน้อยสองครั้ง
Show the ids and names of festivals that have at least two nominations for artworks.
CREATE TABLE nomination (Festival_ID VARCHAR, Artwork_ID VARCHAR); CREATE TABLE festival_detail (Festival_Name VARCHAR, Festival_ID VARCHAR); CREATE TABLE artwork (Artwork_ID VARCHAR)
SELECT T1.Festival_ID, T3.Festival_Name, COUNT(*) FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID GROUP BY T1.Festival_ID
แสดงรหัส ชื่อของแต่ละเทศกาล และจำนวนผลงานที่ได้รับการเสนอชื่อ
Show the id, name of each festival and the number of artworks it has nominated.
CREATE TABLE artwork (TYPE VARCHAR)
SELECT TYPE, COUNT(*) FROM artwork GROUP BY TYPE
กรุณาแสดงผลงานศิลปะประเภทต่างๆ โดยมีจำนวนผลงานแต่ละประเภทที่สอดคล้องกัน
Please show different types of artworks with the corresponding number of artworks of each type.
CREATE TABLE artwork (TYPE VARCHAR)
SELECT TYPE FROM artwork GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1
แสดงรายการงานศิลปะประเภทที่พบบ่อยที่สุด
List the most common type of artworks.
CREATE TABLE festival_detail (YEAR VARCHAR)
SELECT YEAR FROM festival_detail GROUP BY YEAR HAVING COUNT(*) > 1
ระบุปีที่มีเทศกาลมากกว่าหนึ่งเทศกาล
List the year in which there are more than one festivals.
CREATE TABLE nomination (Name VARCHAR, Artwork_ID VARCHAR); CREATE TABLE Artwork (Name VARCHAR, Artwork_ID VARCHAR)
SELECT Name FROM Artwork WHERE NOT Artwork_ID IN (SELECT Artwork_ID FROM nomination)
รายชื่อผลงานที่ไม่ได้รับการเสนอชื่อเข้าชิง
List the name of artworks that are not nominated.
CREATE TABLE festival_detail (Num_of_Audience VARCHAR, YEAR VARCHAR)
SELECT Num_of_Audience FROM festival_detail WHERE YEAR = 2008 OR YEAR = 2010
แสดงจำนวนผู้ชมในปี 2551 หรือ 2553
Show the number of audience in year 2008 or 2010.
CREATE TABLE festival_detail (Num_of_Audience INTEGER)
SELECT SUM(Num_of_Audience) FROM festival_detail
จำนวนผู้ชมทั้งหมดที่มาเยี่ยมชมเทศกาลใด ๆ เป็นจำนวนเท่าใด?
What are the total number of the audiences who visited any of the festivals?
CREATE TABLE festival_detail (YEAR VARCHAR, LOCATION VARCHAR)
SELECT YEAR FROM festival_detail WHERE LOCATION = 'United States' INTERSECT SELECT YEAR FROM festival_detail WHERE LOCATION <> 'United States'
ในปีใดที่มีเทศกาลทั้งใน 'สหรัฐอเมริกา' และนอก 'สหรัฐอเมริกา'?
In which year are there festivals both inside the 'United States' and outside the 'United States'?
CREATE TABLE premises (Id VARCHAR)
SELECT COUNT(*) FROM premises
มีกี่แห่ง?
How many premises are there?
CREATE TABLE premises (premises_type VARCHAR)
SELECT DISTINCT premises_type FROM premises
ประเภทสถานที่ตั้งที่แตกต่างกันทั้งหมดมีอะไรบ้าง
What are all the distinct premise types?
CREATE TABLE premises (premises_type VARCHAR, premise_details VARCHAR)
SELECT premises_type, premise_details FROM premises ORDER BY premises_type
ค้นหาประเภทและรายละเอียดสำหรับสถานที่ทั้งหมดและสั่งซื้อตามประเภทสถานที่
Find the types and details for all premises and order by the premise type.
CREATE TABLE premises (premises_type VARCHAR)
SELECT premises_type, COUNT(*) FROM premises GROUP BY premises_type
แสดงสถานที่แต่ละประเภทและจำนวนสถานที่ในประเภทนั้น
Show each premise type and the number of premises in that type.
CREATE TABLE mailshot_campaigns (product_category VARCHAR)
SELECT product_category, COUNT(*) FROM mailshot_campaigns GROUP BY product_category
แสดงหมวดหมู่ผลิตภัณฑ์ที่แตกต่างกันทั้งหมด พร้อมด้วยจำนวนเมลช็อตในแต่ละหมวดหมู่
Show all distinct product categories along with the number of mailshots in each category.
CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE mailshot_customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR)
SELECT customer_name, customer_phone FROM customers WHERE NOT customer_id IN (SELECT customer_id FROM mailshot_customers)
แสดงชื่อและหมายเลขโทรศัพท์ของลูกค้าโดยไม่มีการส่งจดหมาย
Show the name and phone of the customer without any mailshot.
CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE mailshot_customers (customer_id VARCHAR, outcome_code VARCHAR)
SELECT T1.customer_name, T1.customer_phone FROM customers AS T1 JOIN mailshot_customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.outcome_code = 'No Response'
แสดงชื่อและหมายเลขโทรศัพท์ให้กับลูกค้าด้วยอีเมล์ช็อตพร้อมรหัสผลลัพธ์ 'ไม่มีการตอบกลับ'
Show the name and phone for customers with a mailshot with outcome code 'No Response'.
CREATE TABLE mailshot_customers (outcome_code VARCHAR)
SELECT outcome_code, COUNT(*) FROM mailshot_customers GROUP BY outcome_code
แสดงรหัสผลลัพธ์ของเมลช็อตพร้อมกับจำนวนเมลช็อตในโค้ดผลลัพธ์แต่ละรายการ
Show the outcome code of mailshots along with the number of mailshots in each outcome code.
CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE mailshot_customers (customer_id VARCHAR)
SELECT T2.customer_name FROM mailshot_customers AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id WHERE outcome_code = 'Order' GROUP BY T1.customer_id HAVING COUNT(*) >= 2
แสดงชื่อลูกค้าที่มีอย่างน้อย 2 เมล์ช็อตพร้อมรหัสผลลัพธ์ 'คำสั่งซื้อ'
Show the names of customers who have at least 2 mailshots with outcome code 'Order'.
CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE mailshot_customers (customer_id VARCHAR)
SELECT T2.customer_name FROM mailshot_customers AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1
แสดงชื่อลูกค้าที่มีเมลช็อตมากที่สุด
Show the names of customers who have the most mailshots.
CREATE TABLE customers (customer_name VARCHAR, payment_method VARCHAR, customer_id VARCHAR); CREATE TABLE mailshot_customers (customer_id VARCHAR, outcome_code VARCHAR)
SELECT T2.customer_name, T2.payment_method FROM mailshot_customers AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.outcome_code = 'Order' INTERSECT SELECT T2.customer_name, T2.payment_method FROM mailshot_customers AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.outcome_code = 'No Response'
ชื่อและวิธีการชำระเงินของลูกค้าที่มีทั้งเมลช็อตในผลลัพธ์ 'คำสั่งซื้อ' และเมลช็อตในผลลัพธ์ 'ไม่มีการตอบกลับ' คืออะไร
What are the name and payment method of customers who have both mailshots in 'Order' outcome and mailshots in 'No Response' outcome.
CREATE TABLE premises (premises_type VARCHAR, premise_id VARCHAR); CREATE TABLE customer_addresses (address_type_code VARCHAR, premise_id VARCHAR)
SELECT T2.premises_type, T1.address_type_code FROM customer_addresses AS T1 JOIN premises AS T2 ON T1.premise_id = T2.premise_id
แสดงประเภทสถานที่และรหัสประเภทที่อยู่สำหรับที่อยู่ลูกค้าทั้งหมด
Show the premise type and address type code for all customer addresses.
CREATE TABLE customer_addresses (address_type_code VARCHAR)
SELECT DISTINCT address_type_code FROM customer_addresses
รหัสประเภทที่อยู่ที่แตกต่างกันสำหรับที่อยู่ลูกค้าทั้งหมดคืออะไร
What are the distinct address type codes for all customer addresses?
CREATE TABLE customer_orders (order_shipping_charges VARCHAR, customer_id VARCHAR, order_status_code VARCHAR)
SELECT order_shipping_charges, customer_id FROM customer_orders WHERE order_status_code = 'Cancelled' OR order_status_code = 'Paid'
แสดงค่าจัดส่งและรหัสลูกค้าสำหรับคำสั่งซื้อของลูกค้าพร้อมสถานะคำสั่งซื้อยกเลิกหรือชำระเงินแล้ว
Show the shipping charge and customer id for customer orders with order status Cancelled or Paid.
CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR)
SELECT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE shipping_method_code = 'FedEx' AND order_status_code = 'Paid'
แสดงชื่อลูกค้าที่สั่งซื้อพร้อมวิธีจัดส่ง FedEx และสถานะการสั่งซื้อ ชำระเงินแล้ว
Show the names of customers having an order with shipping method FedEx and order status Paid.
CREATE TABLE COURSE (Id VARCHAR)
SELECT COUNT(*) FROM COURSE
มีทั้งหมดกี่หลักสูตร?
How many courses are there in total?
CREATE TABLE COURSE (Credits INTEGER)
SELECT COUNT(*) FROM COURSE WHERE Credits > 2
มีกี่รายวิชาที่มีมากกว่า 2 หน่วยกิต?
How many courses have more than 2 credits?
CREATE TABLE COURSE (CName VARCHAR, Credits VARCHAR)
SELECT CName FROM COURSE WHERE Credits = 1
ระบุรายชื่อรายวิชาทั้งหมด 1 หน่วยกิต?
List all names of courses with 1 credit?
CREATE TABLE COURSE (CName VARCHAR, Days VARCHAR)
SELECT CName FROM COURSE WHERE Days = "MTW"
หลักสูตรใดบ้างที่สอนในวัน MTW?
Which courses are taught on days MTW?
CREATE TABLE DEPARTMENT (Division VARCHAR)
SELECT COUNT(*) FROM DEPARTMENT WHERE Division = "AS"
แผนก AS มีกี่แผนก?
What is the number of departments in Division "AS"?
CREATE TABLE DEPARTMENT (DPhone VARCHAR, Room VARCHAR)
SELECT DPhone FROM DEPARTMENT WHERE Room = 268
โทรศัพท์ของแผนกต่างๆ ในห้อง 268 คืออะไร?
What are the phones of departments in Room 268?
CREATE TABLE ENROLLED_IN (StuID VARCHAR, Grade VARCHAR)
SELECT COUNT(DISTINCT StuID) FROM ENROLLED_IN WHERE Grade = "B"
จงหาจำนวนนักเรียนที่ได้เกรด "B" อย่างน้อยหนึ่งเกรด
Find the number of students that have at least one grade "B".
CREATE TABLE GRADECONVERSION (gradepoint INTEGER)
SELECT MAX(gradepoint), MIN(gradepoint) FROM GRADECONVERSION
ค้นหาคะแนนเกรดสูงสุดและต่ำสุดสำหรับเกรดตัวอักษรทั้งหมด
Find the max and min grade point for all letter grade.
CREATE TABLE STUDENT (Fname VARCHAR)
SELECT DISTINCT Fname FROM STUDENT WHERE Fname LIKE '%a%'
ค้นหาชื่อนักเรียนที่มีชื่อมีตัวอักษร "a"
Find the first names of students whose first names contain letter "a".
CREATE TABLE FACULTY (Fname VARCHAR, Lname VARCHAR, sex VARCHAR, Building VARCHAR)
SELECT Fname, Lname FROM FACULTY WHERE sex = "M" AND Building = "NEB"
ค้นหาชื่อและนามสกุลของคณะชาย (เพศคือ M) ที่อาศัยอยู่ในอาคาร NEB
Find the first names and last names of male (sex is M) faculties who live in building NEB.
CREATE TABLE FACULTY (Room VARCHAR, Rank VARCHAR, Building VARCHAR)
SELECT Room FROM FACULTY WHERE Rank = "Professor" AND Building = "NEB"
ค้นหาห้องคณะที่มีตำแหน่งศาสตราจารย์ประจำอาคาร NEB
Find the rooms of faculties with rank professor who live in building NEB.
CREATE TABLE DEPARTMENT (DName VARCHAR, Building VARCHAR)
SELECT DName FROM DEPARTMENT WHERE Building = "Mergenthaler"
ค้นหาชื่อแผนกที่อยู่ในอาคาร "Mergenthaler"
Find the department name that is in Building "Mergenthaler".
CREATE TABLE COURSE (Credits VARCHAR)
SELECT * FROM COURSE ORDER BY Credits
แสดงรายการข้อมูลทั้งหมดเกี่ยวกับรายวิชาโดยเรียงลำดับตามหน่วยกิตจากน้อยไปมาก
List all information about courses sorted by credits in the ascending order.
CREATE TABLE COURSE (CName VARCHAR, Credits VARCHAR)
SELECT CName FROM COURSE ORDER BY Credits
รายชื่อรายวิชารายวิชาเรียงตามหน่วยกิต
List the course name of courses sorted by credits.
CREATE TABLE STUDENT (Fname VARCHAR, Age VARCHAR)
SELECT Fname FROM STUDENT ORDER BY Age DESC
ค้นหาชื่อนักเรียนตามลำดับอายุจากมากไปหาน้อย
Find the first name of students in the descending order of age.
CREATE TABLE STUDENT (LName VARCHAR, Sex VARCHAR, Age VARCHAR)
SELECT LName FROM STUDENT WHERE Sex = "F" ORDER BY Age DESC
ค้นหานามสกุลของนักเรียนหญิง (เพศ F) ตามลำดับอายุจากมากไปน้อย
Find the last name of female (sex is F) students in the descending order of age.