context
stringlengths 27
489
| answer
stringlengths 18
557
| question_th
stringlengths 8
226
| question_en
stringlengths 12
244
|
---|---|---|---|
CREATE TABLE station (city VARCHAR, lat INTEGER) | SELECT city FROM station GROUP BY city ORDER BY MAX(lat) DESC | รายชื่อเมืองทั้งหมดโดยเรียงจากละติจูดสูงสุดของสถานีแต่ละเมืองโดยเรียงลำดับจากลดลง | List all the cities in a decreasing order of each city's stations' highest latitude. |
CREATE TABLE weather (date VARCHAR, cloud_cover VARCHAR) | SELECT date, cloud_cover FROM weather ORDER BY cloud_cover DESC LIMIT 5 | วันที่ใดที่มีอัตราการครอบคลุมคลาวด์ 5 อันดับแรก? บอกอัตราการปกคลุมของเมฆให้ฉันด้วย | What are the dates that had the top 5 cloud cover rates? Also tell me the cloud cover rate. |
CREATE TABLE trip (id VARCHAR, duration VARCHAR) | SELECT id, duration FROM trip ORDER BY duration DESC LIMIT 3 | รหัสและระยะเวลาของการเดินทางที่มีระยะเวลา 3 อันดับแรกคือเท่าใด | What are the ids and durations of the trips with the top 3 durations? |
CREATE TABLE station (name VARCHAR, long VARCHAR, id VARCHAR); CREATE TABLE trip (duration INTEGER, start_station_id VARCHAR) | SELECT T1.name, T1.long, AVG(T2.duration) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id GROUP BY T2.start_station_id | สำหรับแต่ละสถานี ให้ส่งคืนลองจิจูดและระยะเวลาเฉลี่ยของการเดินทางที่เริ่มต้นจากสถานี | For each station, return its longitude and the average duration of trips that started from the station. |
CREATE TABLE trip (duration INTEGER, end_station_id VARCHAR); CREATE TABLE station (name VARCHAR, lat VARCHAR, id VARCHAR) | SELECT T1.name, T1.lat, MIN(T2.duration) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.end_station_id GROUP BY T2.end_station_id | สำหรับแต่ละสถานี ให้ค้นหาละติจูดและระยะเวลาต่ำสุดของการเดินทางที่สิ้นสุดที่สถานี | For each station, find its latitude and the minimum duration of trips that ended at the station. |
CREATE TABLE trip (start_station_name VARCHAR, duration INTEGER) | SELECT DISTINCT start_station_name FROM trip WHERE duration < 100 | ระบุสถานีที่แตกต่างกันทั้งหมดที่เริ่มต้นการเดินทางที่มีระยะเวลาต่ำกว่า 100 | List all the distinct stations from which a trip of duration below 100 started. |
CREATE TABLE weather (zip_code VARCHAR, max_dew_point_f VARCHAR) | SELECT DISTINCT zip_code FROM weather EXCEPT SELECT DISTINCT zip_code FROM weather WHERE max_dew_point_f >= 70 | ค้นหารหัสไปรษณีย์ทั้งหมดที่จุดน้ำค้างสูงสุดไม่เคยถึง 70 | Find all the zip codes in which the max dew point have never reached 70. |
CREATE TABLE trip (id VARCHAR, duration INTEGER, zip_code VARCHAR) | SELECT id FROM trip WHERE duration >= (SELECT AVG(duration) FROM trip WHERE zip_code = 94103) | ค้นหารหัสสำหรับการเดินทางที่กินเวลาอย่างน้อยตราบเท่าที่ระยะเวลาเฉลี่ยของการเดินทางในรหัสไปรษณีย์ 94103 | Find the id for the trips that lasted at least as long as the average duration of trips in zip code 94103. |
CREATE TABLE weather (date VARCHAR, mean_sea_level_pressure_inches INTEGER) | SELECT date FROM weather WHERE mean_sea_level_pressure_inches BETWEEN 30.3 AND 31 | วันที่ความกดอากาศเฉลี่ยของระดับน้ำทะเลอยู่ระหว่าง 30.3 ถึง 31 คือวันที่ใด | What are the dates in which the mean sea level pressure was between 30.3 and 31? |
CREATE TABLE weather (date VARCHAR, max_temperature_f VARCHAR, min_temperature_f VARCHAR) | SELECT date, max_temperature_f - min_temperature_f FROM weather ORDER BY max_temperature_f - min_temperature_f LIMIT 1 | ค้นหาวันที่ความแตกต่างระหว่างอุณหภูมิสูงสุดและอุณหภูมิต่ำสุดน้อยที่สุด รายงานความแตกต่างด้วย | Find the day in which the difference between the max temperature and min temperature was the smallest. Also report the difference. |
CREATE TABLE station (id VARCHAR, name VARCHAR); CREATE TABLE status (station_id VARCHAR, bikes_available INTEGER) | SELECT DISTINCT T1.id, T1.name FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id WHERE T2.bikes_available > 12 | รหัสและชื่อของสถานีที่เคยมีจักรยานมากกว่า 12 คันคืออะไร? | What are the id and name of the stations that have ever had more than 12 bikes available? |
CREATE TABLE weather (zip_code VARCHAR, mean_humidity INTEGER); CREATE TABLE trip (zip_code VARCHAR, mean_humidity INTEGER) | SELECT zip_code FROM weather GROUP BY zip_code HAVING AVG(mean_humidity) < 70 INTERSECT SELECT zip_code FROM trip GROUP BY zip_code HAVING COUNT(*) >= 100 | ขอรหัสไปรษณีย์ที่มีความชื้นเฉลี่ยเฉลี่ยต่ำกว่า 70 และมีการเดินทางอย่างน้อย 100 ครั้ง | Give me the zip code where the average mean humidity is below 70 and at least 100 trips took place. |
CREATE TABLE trip (name VARCHAR, end_station_name VARCHAR, city VARCHAR); CREATE TABLE station (name VARCHAR, end_station_name VARCHAR, city VARCHAR) | SELECT name FROM station WHERE city = "Palo Alto" EXCEPT SELECT end_station_name FROM trip GROUP BY end_station_name HAVING COUNT(*) > 100 | สถานีที่ตั้งอยู่ในเมืองปาโลอัลโตแต่ไม่เคยเป็นจุดสิ้นสุดการเดินทางเกิน 100 ครั้งมีชื่อว่าอะไร? | What are the names of stations that are located in Palo Alto city but have never been the ending point of trips more than 100 times? |
CREATE TABLE station (city VARCHAR, id VARCHAR); CREATE TABLE trip (end_station_id VARCHAR, id VARCHAR); CREATE TABLE station (id VARCHAR, city VARCHAR); CREATE TABLE trip (start_station_id VARCHAR, id VARCHAR) | SELECT COUNT(*) FROM station AS T1 JOIN trip AS T2 JOIN station AS T3 JOIN trip AS T4 ON T1.id = T2.start_station_id AND T2.id = T4.id AND T3.id = T4.end_station_id WHERE T1.city = "Mountain View" AND T3.city = "Palo Alto" | มีกี่เที่ยวที่เริ่มจากเมือง Mountain View และไปสิ้นสุดที่เมือง Palo Alto? | How many trips started from Mountain View city and ended at Palo Alto city? |
CREATE TABLE trip (start_station_id VARCHAR); CREATE TABLE station (lat INTEGER, long INTEGER, id VARCHAR) | SELECT AVG(T1.lat), AVG(T1.long) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id | ละติจูดและลองจิจูดเฉลี่ยของจุดเริ่มต้นของการเดินทางทั้งหมดคือเท่าใด | What is the average latitude and longitude of the starting points of all trips? |
CREATE TABLE book (Id VARCHAR) | SELECT COUNT(*) FROM book | มีกี่เล่มคะ? | How many books are there? |
CREATE TABLE book (Writer VARCHAR) | SELECT Writer FROM book ORDER BY Writer | รายชื่อผู้เขียนหนังสือตามลำดับตัวอักษรจากน้อยไปหามาก | List the writers of the books in ascending alphabetical order. |
CREATE TABLE book (Title VARCHAR, Issues VARCHAR) | SELECT Title FROM book ORDER BY Issues | เรียงลำดับชื่อหนังสือตามลำดับประเด็น | List the titles of the books in ascending order of issues. |
CREATE TABLE book (Title VARCHAR, Writer VARCHAR) | SELECT Title FROM book WHERE Writer <> "Elaine Lee" | หนังสือที่ผู้เขียนไม่ใช่ "เอเลน ลี" ชื่ออะไร | What are the titles of the books whose writer is not "Elaine Lee"? |
CREATE TABLE book (Title VARCHAR, Issues VARCHAR) | SELECT Title, Issues FROM book | ชื่อหนังสือและประเด็นของหนังสือคืออะไร? | What are the title and issues of the books? |
CREATE TABLE publication (Publication_Date VARCHAR, Price VARCHAR) | SELECT Publication_Date FROM publication ORDER BY Price DESC | วันที่ตีพิมพ์โดยเรียงลำดับราคาจากมากไปหาน้อยคือเมื่อใด | What are the dates of publications in descending order of price? |
CREATE TABLE publication (Publisher VARCHAR, Price INTEGER) | SELECT DISTINCT Publisher FROM publication WHERE Price > 5000000 | ผู้จัดพิมพ์สิ่งพิมพ์ที่มีราคาสูงกว่า 5000000 รายใดบ้าง | What are the distinct publishers of publications with price higher than 5000000? |
CREATE TABLE publication (Publisher VARCHAR, Price VARCHAR) | SELECT Publisher FROM publication ORDER BY Price DESC LIMIT 1 | รายชื่อผู้จัดพิมพ์สิ่งพิมพ์ที่มีราคาสูงสุด | List the publisher of the publication with the highest price. |
CREATE TABLE publication (Publication_Date VARCHAR, Price VARCHAR) | SELECT Publication_Date FROM publication ORDER BY Price LIMIT 3 | ระบุวันที่ตีพิมพ์สิ่งพิมพ์ที่มีราคาต่ำสุด 3 รายการ | List the publication dates of publications with 3 lowest prices. |
CREATE TABLE book (Title VARCHAR, Book_ID VARCHAR); CREATE TABLE publication (Publication_Date VARCHAR, Book_ID VARCHAR) | SELECT T1.Title, T2.Publication_Date FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID | แสดงชื่อและวันที่พิมพ์หนังสือ | Show the title and publication dates of books. |
CREATE TABLE publication (Book_ID VARCHAR, Price INTEGER); CREATE TABLE book (Writer VARCHAR, Book_ID VARCHAR) | SELECT T1.Writer FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID WHERE T2.Price > 4000000 | แสดงนักเขียนที่ได้ตีพิมพ์หนังสือที่มีราคามากกว่า 4000000 | Show writers who have published a book with price more than 4000000. |
CREATE TABLE publication (Book_ID VARCHAR, Price VARCHAR); CREATE TABLE book (Title VARCHAR, Book_ID VARCHAR) | SELECT T1.Title FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID ORDER BY T2.Price DESC | แสดงชื่อหนังสือตามลำดับราคาสิ่งพิมพ์จากมากไปหาน้อย | Show the titles of books in descending order of publication price. |
CREATE TABLE publication (Publisher VARCHAR) | SELECT Publisher FROM publication GROUP BY Publisher HAVING COUNT(*) > 1 | แสดงผู้จัดพิมพ์ที่มีสิ่งพิมพ์มากกว่าหนึ่งรายการ | Show publishers that have more than one publication. |
CREATE TABLE publication (Publisher VARCHAR) | SELECT Publisher, COUNT(*) FROM publication GROUP BY Publisher | แสดงผู้จัดพิมพ์ที่แตกต่างกันพร้อมจำนวนสิ่งพิมพ์ที่พวกเขามี | Show different publishers together with the number of publications they have. |
CREATE TABLE publication (Publication_Date VARCHAR) | SELECT Publication_Date FROM publication GROUP BY Publication_Date ORDER BY COUNT(*) DESC LIMIT 1 | กรุณาแสดงวันที่ตีพิมพ์ที่พบบ่อยที่สุด | Please show the most common publication date. |
CREATE TABLE book (Writer VARCHAR) | SELECT Writer FROM book GROUP BY Writer HAVING COUNT(*) > 1 | รายชื่อผู้เขียนที่เขียนหนังสือมากกว่าหนึ่งเล่ม | List the writers who have written more than one book. |
CREATE TABLE book (Title VARCHAR, Book_ID VARCHAR); CREATE TABLE publication (Title VARCHAR, Book_ID VARCHAR) | SELECT Title FROM book WHERE NOT Book_ID IN (SELECT Book_ID FROM publication) | รายชื่อหนังสือที่ยังไม่ได้จัดพิมพ์ | List the titles of books that are not published. |
CREATE TABLE publication (Publisher VARCHAR, Price INTEGER) | SELECT Publisher FROM publication WHERE Price > 10000000 INTERSECT SELECT Publisher FROM publication WHERE Price < 5000000 | แสดงผู้จัดพิมพ์ที่มีสิ่งพิมพ์ที่มีราคาสูงกว่า 10000000 และสิ่งตีพิมพ์ที่มีราคาต่ำกว่า 5000000 | Show the publishers that have publications with price higher than 10000000 and publications with price lower than 5000000. |
CREATE TABLE publication (Publication_Date VARCHAR) | SELECT COUNT(DISTINCT Publication_Date) FROM publication | จำนวนวันที่ตีพิมพ์ที่แตกต่างกันคือเท่าใด? | What is the number of distinct publication dates? |
CREATE TABLE publication (Price VARCHAR, Publisher VARCHAR) | SELECT Price FROM publication WHERE Publisher = "Person" OR Publisher = "Wiley" | แสดงราคาสิ่งพิมพ์ที่ผู้จัดพิมพ์เป็น "บุคคล" หรือ "ไวลีย์" | Show the prices of publications whose publisher is either "Person" or "Wiley" |
CREATE TABLE actor (Id VARCHAR) | SELECT COUNT(*) FROM actor | มีนักแสดงกี่คน? | How many actors are there? |
CREATE TABLE actor (Name VARCHAR) | SELECT Name FROM actor ORDER BY Name | รายชื่อนักแสดงตามลำดับตัวอักษรจากน้อยไปหามาก | List the name of actors in ascending alphabetical order. |
CREATE TABLE actor (Character VARCHAR, Duration VARCHAR) | SELECT Character, Duration FROM actor | ตัวละครและระยะเวลาของนักแสดงคืออะไร? | What are the characters and duration of actors? |
CREATE TABLE actor (Name VARCHAR, Age VARCHAR) | SELECT Name FROM actor WHERE Age <> 20 | รายชื่อนักแสดงที่อายุไม่ต่ำกว่า 20 ปี | List the name of actors whose age is not 20. |
CREATE TABLE actor (Character VARCHAR, age VARCHAR) | SELECT Character FROM actor ORDER BY age DESC | ตัวละครของนักแสดงเรียงตามอายุจากมากไปหาน้อยมีอะไรบ้าง? | What are the characters of actors in descending order of age? |
CREATE TABLE actor (Duration VARCHAR, Age VARCHAR) | SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1 | นักแสดงที่อายุมากที่สุดมีอายุเท่าไร? | What is the duration of the oldest actor? |
CREATE TABLE musical (Name VARCHAR, Nominee VARCHAR) | SELECT Name FROM musical WHERE Nominee = "Bob Fosse" | ละครเพลงที่ได้รับการเสนอชื่อเข้าชิง "Bob Fosse" ชื่ออะไร? | What are the names of musicals with nominee "Bob Fosse"? |
CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR) | SELECT DISTINCT Nominee FROM musical WHERE Award <> "Tony Award" | ผู้ที่ได้รับการเสนอชื่อเข้าชิงรางวัลละครเพลงประเภทต่าง ๆ ที่ไม่ใช่ "Tony Award" มีอะไรบ้าง? | What are the distinct nominees of the musicals with the award that is not "Tony Award"? |
CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR) | SELECT T1.Name, T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID | แสดงชื่อนักแสดงและชื่อละครเพลงที่พวกเขาอยู่ | Show names of actors and names of musicals they are in. |
CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Musical_ID VARCHAR, Name VARCHAR) | SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID WHERE T2.Name = "The Phantom of the Opera" | แสดงรายชื่อนักแสดงที่เคยแสดงละครเพลงชื่อ “The Phantom of the Opera” | Show names of actors that have appeared in musical with name "The Phantom of the Opera". |
CREATE TABLE musical (Musical_ID VARCHAR, Year VARCHAR); CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR) | SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID ORDER BY T2.Year DESC | แสดงรายชื่อนักแสดงโดยเรียงลำดับตามปีที่ละครเพลงที่ได้รับรางวัล | Show names of actors in descending order of the year their musical is awarded. |
CREATE TABLE actor (Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR) | SELECT T2.Name, COUNT(*) FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID | แสดงชื่อละครเพลงและจำนวนนักแสดงที่ร่วมแสดงละครเพลง | Show names of musicals and the number of actors who have appeared in the musicals. |
CREATE TABLE actor (Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR) | SELECT T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID HAVING COUNT(*) >= 3 | แสดงชื่อละครเพลงที่มีนักแสดงอย่างน้อยสามคน | Show names of musicals which have at least three actors. |
CREATE TABLE musical (Nominee VARCHAR) | SELECT Nominee, COUNT(*) FROM musical GROUP BY Nominee | แสดงผู้ได้รับการเสนอชื่อเข้าชิงที่แตกต่างกันและจำนวนละครเพลงที่พวกเขาได้รับการเสนอชื่อ | Show different nominees and the number of musicals they have been nominated. |
CREATE TABLE musical (Nominee VARCHAR) | SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1 | กรุณาแสดงผู้ที่ได้รับการเสนอชื่อมากที่สุดจำนวนครั้ง | Please show the nominee who has been nominated the greatest number of times. |
CREATE TABLE musical (RESULT VARCHAR) | SELECT RESULT FROM musical GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1 | แสดงรายการผลงานละครเพลงที่พบบ่อยที่สุด | List the most common result of the musicals. |
CREATE TABLE musical (Nominee VARCHAR) | SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*) > 2 | รายชื่อผู้ที่ได้รับการเสนอชื่อเข้าชิงละครเพลงมากกว่าสองเรื่อง | List the nominees that have been nominated more than two musicals. |
CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR) | SELECT Name FROM musical WHERE NOT Musical_ID IN (SELECT Musical_ID FROM actor) | รายชื่อละครเพลงที่ไม่มีนักแสดง | List the name of musicals that do not have actors. |
CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR) | SELECT Nominee FROM musical WHERE Award = "Tony Award" INTERSECT SELECT Nominee FROM musical WHERE Award = "Drama Desk Award" | แสดงรายชื่อผู้เข้าชิงผลงานละครเพลงทั้ง "Tony Award" และ "Drama Desk Award" | Show the nominees that have nominated musicals for both "Tony Award" and "Drama Desk Award". |
CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR) | SELECT Nominee FROM musical WHERE Award = "Tony Award" OR Award = "Cleavant Derricks" | แสดงผู้เข้าชิงละครเพลงพร้อมรางวัล "Bob Fosse" หรือ "Cleavant Derricks" | Show the musical nominee with award "Bob Fosse" or "Cleavant Derricks". |
CREATE TABLE user_profiles (email VARCHAR, name VARCHAR) | SELECT email FROM user_profiles WHERE name = 'Mary' | ค้นหาอีเมลของผู้ใช้ชื่อ "แมรี่" | Find the emails of the user named "Mary". |
CREATE TABLE user_profiles (partitionid VARCHAR, name VARCHAR) | SELECT partitionid FROM user_profiles WHERE name = 'Iron Man' | ID พาร์ติชันของผู้ใช้ชื่อ "Iron Man" คืออะไร | What is the partition id of the user named "Iron Man". |
CREATE TABLE user_profiles (Id VARCHAR) | SELECT COUNT(*) FROM user_profiles | มีผู้ใช้งานกี่คน? | How many users are there? |
CREATE TABLE follows (Id VARCHAR) | SELECT COUNT(*) FROM follows | ผู้ใช้แต่ละคนมีผู้ติดตามกี่คน? | How many followers does each user have? |
CREATE TABLE follows (f1 VARCHAR) | SELECT COUNT(*) FROM follows GROUP BY f1 | ค้นหาจำนวนผู้ติดตามของผู้ใช้แต่ละคน | Find the number of followers for each user. |
CREATE TABLE tweets (Id VARCHAR) | SELECT COUNT(*) FROM tweets | ค้นหาจำนวนทวีตในบันทึก | Find the number of tweets in record. |
CREATE TABLE tweets (UID VARCHAR) | SELECT COUNT(DISTINCT UID) FROM tweets | ค้นหาจำนวนผู้ใช้ที่โพสต์ทวีตบางส่วน | Find the number of users who posted some tweets. |
CREATE TABLE user_profiles (name VARCHAR, email VARCHAR) | SELECT name, email FROM user_profiles WHERE name LIKE '%Swift%' | ค้นหาชื่อและอีเมลของผู้ใช้ที่มีชื่อที่มีคำว่า 'Swift' | Find the name and email of the user whose name contains the word ‘Swift’. |
CREATE TABLE user_profiles (name VARCHAR, email VARCHAR) | SELECT name FROM user_profiles WHERE email LIKE '%superstar%' OR email LIKE '%edu%' | ค้นหาชื่อผู้ใช้ที่อีเมลมีคำว่า 'superstar' หรือ 'edu' | Find the names of users whose emails contain ‘superstar’ or ‘edu’. |
CREATE TABLE tweets (text VARCHAR) | SELECT text FROM tweets WHERE text LIKE '%intern%' | ส่งกลับข้อความทวีตเกี่ยวกับหัวข้อ 'ฝึกงาน' | Return the text of tweets about the topic 'intern'. |
CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, followers INTEGER) | SELECT name, email FROM user_profiles WHERE followers > 1000 | ค้นหาชื่อและอีเมลของผู้ใช้ที่มีผู้ติดตามมากกว่า 1,000 คน | Find the name and email of the users who have more than 1000 followers. |
CREATE TABLE follows (f1 VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR) | SELECT T1.name FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f1 GROUP BY T2.f1 HAVING COUNT(*) > (SELECT COUNT(*) FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f1 WHERE T1.name = 'Tyler Swift') | ค้นหาชื่อผู้ใช้ที่มีจำนวนผู้ติดตามมากกว่าผู้ใช้ชื่อ "Tyler Swift" | Find the names of the users whose number of followers is greater than that of the user named "Tyler Swift". |
CREATE TABLE follows (f1 VARCHAR); CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, uid VARCHAR) | SELECT T1.name, T1.email FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f1 GROUP BY T2.f1 HAVING COUNT(*) > 1 | ค้นหาชื่อและอีเมลสำหรับผู้ใช้ที่มีผู้ติดตามมากกว่าหนึ่งคน | Find the name and email for the users who have more than one follower. |
CREATE TABLE tweets (uid VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR) | SELECT T1.name FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING COUNT(*) > 1 | ค้นหาชื่อของผู้ใช้ที่มีมากกว่าหนึ่งทวีต | Find the names of users who have more than one tweet. |
CREATE TABLE follows (f1 VARCHAR, f2 VARCHAR); CREATE TABLE user_profiles (uid VARCHAR, name VARCHAR) | SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = "Mary" INTERSECT SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = "Susan" | ค้นหา ID ของผู้ใช้ที่ติดตามโดย Mary และ Susan | Find the id of users who are followed by Mary and Susan. |
CREATE TABLE follows (f1 VARCHAR, f2 VARCHAR); CREATE TABLE user_profiles (uid VARCHAR, name VARCHAR) | SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = "Mary" OR T1.name = "Susan" | ค้นหารหัสของผู้ใช้ที่ติดตามโดย Mary หรือ Susan | Find the id of users who are followed by Mary or Susan. |
CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR) | SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 1 | ค้นหาชื่อผู้ใช้ที่มีจำนวนผู้ติดตามมากที่สุด | Find the name of the user who has the largest number of followers. |
CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, followers VARCHAR) | SELECT name, email FROM user_profiles ORDER BY followers LIMIT 1 | ค้นหาชื่อและอีเมลของผู้ใช้ ตามด้วยจำนวนคนน้อยที่สุด | Find the name and email of the user followed by the least number of people. |
CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR) | SELECT name, followers FROM user_profiles ORDER BY followers DESC | ระบุชื่อและจำนวนผู้ติดตามสำหรับผู้ใช้แต่ละราย และจัดเรียงผลลัพธ์ตามจำนวนผู้ติดตามจากมากไปน้อย | List the name and number of followers for each user, and sort the results by the number of followers in descending order. |
CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR) | SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 5 | ระบุชื่อผู้ใช้ 5 ราย ตามด้วยผู้ใช้อื่นๆ จำนวนมากที่สุด | List the names of 5 users followed by the largest number of other users. |
CREATE TABLE tweets (text VARCHAR, createdate VARCHAR) | SELECT text FROM tweets ORDER BY createdate | แสดงรายการข้อความของทวีตทั้งหมดตามลำดับวันที่ | List the text of all tweets in the order of date. |
CREATE TABLE tweets (uid VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR) | SELECT T1.name, COUNT(*) FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid | ค้นหาชื่อของผู้ใช้แต่ละคนและจำนวนทวีตที่แต่ละคนทวีต | Find the name of each user and number of tweets tweeted by each of them. |
CREATE TABLE user_profiles (name VARCHAR, partitionid VARCHAR, uid VARCHAR); CREATE TABLE tweets (uid VARCHAR) | SELECT T1.name, T1.partitionid FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING COUNT(*) < 2 | ค้นหาชื่อและรหัสพาร์ติชันสำหรับผู้ใช้ที่ทวีตน้อยกว่าสองครั้ง | Find the name and partition id for users who tweeted less than twice. |
CREATE TABLE tweets (uid VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR) | SELECT T1.name, COUNT(*) FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING COUNT(*) > 1 | ค้นหาชื่อผู้ใช้ที่ทวีตมากกว่าหนึ่งครั้ง และจำนวนทวีตที่พวกเขาทวีต | Find the name of the user who tweeted more than once, and number of tweets tweeted by them. |
CREATE TABLE user_profiles (followers INTEGER, UID VARCHAR); CREATE TABLE tweets (followers INTEGER, UID VARCHAR) | SELECT AVG(followers) FROM user_profiles WHERE NOT UID IN (SELECT UID FROM tweets) | ค้นหาจำนวนผู้ติดตามโดยเฉลี่ยสำหรับผู้ใช้ที่ไม่มีทวีต | Find the average number of followers for the users who do not have any tweet. |
CREATE TABLE user_profiles (followers INTEGER, UID VARCHAR); CREATE TABLE tweets (followers INTEGER, UID VARCHAR) | SELECT AVG(followers) FROM user_profiles WHERE UID IN (SELECT UID FROM tweets) | ค้นหาจำนวนผู้ติดตามโดยเฉลี่ยสำหรับผู้ใช้ที่มีการทวีต | Find the average number of followers for the users who had some tweets. |
CREATE TABLE user_profiles (followers INTEGER) | SELECT MAX(followers), SUM(followers) FROM user_profiles | ค้นหาจำนวนผู้ติดตามสูงสุดและรวมของผู้ใช้ทั้งหมด | Find the maximum and total number of followers of all users. |
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR) | SELECT DISTINCT (catalog_entry_name) FROM catalog_contents | ค้นหาชื่อของรายการแค็ตตาล็อกทั้งหมด | Find the names of all the catalog entries. |
CREATE TABLE Attribute_Definitions (attribute_data_type VARCHAR) | SELECT attribute_data_type FROM Attribute_Definitions GROUP BY attribute_data_type HAVING COUNT(*) > 3 | ค้นหารายการประเภทข้อมูลแอตทริบิวต์ที่มีคำจำกัดความแอตทริบิวต์มากกว่า 3 รายการ | Find the list of attribute data types possessed by more than 3 attribute definitions. |
CREATE TABLE Attribute_Definitions (attribute_data_type VARCHAR, attribute_name VARCHAR) | SELECT attribute_data_type FROM Attribute_Definitions WHERE attribute_name = "Green" | ประเภทข้อมูลแอตทริบิวต์ของแอตทริบิวต์ชื่อ "สีเขียว" คืออะไร | What is the attribute data type of the attribute with name "Green"? |
CREATE TABLE Catalog_Structure (catalog_level_name VARCHAR, catalog_level_number INTEGER) | SELECT catalog_level_name, catalog_level_number FROM Catalog_Structure WHERE catalog_level_number BETWEEN 5 AND 10 | ค้นหาชื่อและระดับของโครงสร้างแค็ตตาล็อกที่มีระดับระหว่าง 5 ถึง 10 | Find the name and level of catalog structure with level between 5 and 10. |
CREATE TABLE catalogs (catalog_publisher VARCHAR) | SELECT DISTINCT (catalog_publisher) FROM catalogs WHERE catalog_publisher LIKE "%Murray%" | ค้นหาผู้จัดพิมพ์แค็ตตาล็อกทั้งหมดที่มีชื่อ "Murray" | Find all the catalog publishers whose name contains "Murray" |
CREATE TABLE catalogs (catalog_publisher VARCHAR) | SELECT catalog_publisher FROM catalogs GROUP BY catalog_publisher ORDER BY COUNT(*) DESC LIMIT 1 | ผู้จัดพิมพ์แคตตาล็อกรายใดได้เผยแพร่แคตตาล็อกมากที่สุด? | Which catalog publisher has published the most catalogs? |
CREATE TABLE catalogs (catalog_name VARCHAR, date_of_publication VARCHAR, catalog_id VARCHAR); CREATE TABLE catalog_structure (catalog_id VARCHAR) | SELECT t1.catalog_name, t1.date_of_publication FROM catalogs AS t1 JOIN catalog_structure AS t2 ON t1.catalog_id = t2.catalog_id WHERE catalog_level_number > 5 | ค้นหาชื่อและวันที่ตีพิมพ์ของแค็ตตาล็อกทั้งหมดที่มีหมายเลขระดับแค็ตตาล็อกมากกว่า 5 | Find the names and publication dates of all catalogs that have catalog level number greater than 5. |
CREATE TABLE Catalog_Contents_Additional_Attributes (catalog_entry_id VARCHAR, attribute_value VARCHAR); CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, catalog_entry_id VARCHAR); CREATE TABLE Catalog_Contents_Additional_Attributes (attribute_value VARCHAR) | SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.attribute_value = (SELECT attribute_value FROM Catalog_Contents_Additional_Attributes GROUP BY attribute_value ORDER BY COUNT(*) DESC LIMIT 1) | ชื่อรายการของแค็ตตาล็อกที่มีแอตทริบิวต์ครอบครองโดยรายการส่วนใหญ่คืออะไร | What are the entry names of catalog with the attribute possessed by most entries. |
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, price_in_dollars VARCHAR) | SELECT catalog_entry_name FROM catalog_contents ORDER BY price_in_dollars DESC LIMIT 1 | ชื่อรายการของแคตตาล็อกที่แพงที่สุด (เป็น USD) คืออะไร? | What is the entry name of the most expensive catalog (in USD)? |
CREATE TABLE catalog_structure (catalog_level_name VARCHAR, catalog_level_number VARCHAR); CREATE TABLE catalog_contents (catalog_level_number VARCHAR, price_in_dollars VARCHAR) | SELECT t2.catalog_level_name FROM catalog_contents AS t1 JOIN catalog_structure AS t2 ON t1.catalog_level_number = t2.catalog_level_number ORDER BY t1.price_in_dollars LIMIT 1 | ชื่อระดับของแคตตาล็อกที่ถูกที่สุด (เป็น USD) คืออะไร? | What is the level name of the cheapest catalog (in USD)? |
CREATE TABLE catalog_contents (price_in_euros INTEGER) | SELECT AVG(price_in_euros), MIN(price_in_euros) FROM catalog_contents | ราคาเฉลี่ยและขั้นต่ำ (ในสกุลเงินยูโร) ของผลิตภัณฑ์ทั้งหมดคือเท่าใด | What are the average and minimum price (in Euro) of all products? |
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, height VARCHAR) | SELECT catalog_entry_name FROM catalog_contents ORDER BY height DESC LIMIT 1 | สินค้าที่มีความสูงสูงสุดคืออะไร? แจ้งชื่อรายการแค็ตตาล็อกให้ฉันทราบ | What is the product with the highest height? Give me the catalog entry name. |
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, capacity VARCHAR) | SELECT catalog_entry_name FROM catalog_contents ORDER BY capacity LIMIT 1 | ค้นหาชื่อผลิตภัณฑ์ที่มีความจุน้อยที่สุด | Find the name of the product that has the smallest capacity. |
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, product_stock_number VARCHAR) | SELECT catalog_entry_name FROM catalog_contents WHERE product_stock_number LIKE "2%" | ค้นหาชื่อผลิตภัณฑ์ทั้งหมดที่มีหมายเลขสต็อกขึ้นต้นด้วย "2" | Find the names of all the products whose stock number starts with "2". |
CREATE TABLE Catalog_Contents_Additional_Attributes (catalog_entry_id VARCHAR, catalog_level_number VARCHAR); CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, catalog_entry_id VARCHAR) | SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.catalog_level_number = "8" | ค้นหาชื่อของรายการแค็ตตาล็อกที่มีหมายเลขระดับ 8 | Find the names of catalog entries with level number 8. |
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, LENGTH VARCHAR, width VARCHAR) | SELECT catalog_entry_name FROM catalog_contents WHERE LENGTH < 3 OR width > 5 | ค้นหาชื่อผลิตภัณฑ์ที่มีความยาวน้อยกว่า 3 หรือความสูงมากกว่า 5 | Find the names of the products with length smaller than 3 or height greater than 5. |
CREATE TABLE Catalog_Contents_Additional_Attributes (attribute_id VARCHAR, attribute_value VARCHAR); CREATE TABLE Attribute_Definitions (attribute_name VARCHAR, attribute_id VARCHAR) | SELECT t1.attribute_name, t1.attribute_id FROM Attribute_Definitions AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.attribute_id = t2.attribute_id WHERE t2.attribute_value = 0 | ค้นหาชื่อและ ID แอ็ตทริบิวต์ของคำจำกัดความแอ็ตทริบิวต์ที่มีค่าแอ็ตทริบิวต์ 0 | Find the name and attribute ID of the attribute definitions with attribute value 0. |
CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, capacity VARCHAR, price_in_dollars INTEGER) | SELECT catalog_entry_name, capacity FROM Catalog_Contents WHERE price_in_dollars > 700 | ค้นหาชื่อและกำลังการผลิตของผลิตภัณฑ์ที่มีราคามากกว่า 700 (เป็น USD) | Find the name and capacity of products with price greater than 700 (in USD). |