context
stringlengths 27
489
| answer
stringlengths 18
557
| question_th
stringlengths 8
226
| question_en
stringlengths 12
244
|
---|---|---|---|
CREATE TABLE player (Player_name VARCHAR, Player_ID VARCHAR); CREATE TABLE coach (coach_name VARCHAR, Coach_ID VARCHAR); CREATE TABLE player_coach (Coach_ID VARCHAR, Player_ID VARCHAR) | SELECT T3.Player_name, T2.coach_name FROM player_coach AS T1 JOIN coach AS T2 ON T1.Coach_ID = T2.Coach_ID JOIN player AS T3 ON T1.Player_ID = T3.Player_ID | แสดงชื่อผู้เล่นและชื่อโค้ชของพวกเขา | Show the names of players and names of their coaches. |
CREATE TABLE player (Player_name VARCHAR, Player_ID VARCHAR); CREATE TABLE coach (Coach_ID VARCHAR, Rank VARCHAR); CREATE TABLE player_coach (Coach_ID VARCHAR, Player_ID VARCHAR) | SELECT T3.Player_name FROM player_coach AS T1 JOIN coach AS T2 ON T1.Coach_ID = T2.Coach_ID JOIN player AS T3 ON T1.Player_ID = T3.Player_ID WHERE T2.Rank = 1 | แสดงรายชื่อผู้เล่นที่ได้รับการฝึกสอนโดยโค้ชอันดับ 1 | Show the names of players coached by the rank 1 coach. |
CREATE TABLE player (Player_name VARCHAR, gender VARCHAR, Player_ID VARCHAR); CREATE TABLE player_coach (Coach_ID VARCHAR, Player_ID VARCHAR, Starting_year INTEGER); CREATE TABLE coach (Coach_ID VARCHAR) | SELECT T3.Player_name, T3.gender FROM player_coach AS T1 JOIN coach AS T2 ON T1.Coach_ID = T2.Coach_ID JOIN player AS T3 ON T1.Player_ID = T3.Player_ID WHERE T1.Starting_year > 2011 | แสดงชื่อและเพศของผู้เล่นกับโค้ชที่เริ่มหลังปี 2554 | Show the names and genders of players with a coach starting after 2011. |
CREATE TABLE coach (coach_name VARCHAR, Coach_ID VARCHAR); CREATE TABLE player_coach (Coach_ID VARCHAR, Player_ID VARCHAR); CREATE TABLE player (Player_name VARCHAR, Player_ID VARCHAR, Votes VARCHAR) | SELECT T3.Player_name, T2.coach_name FROM player_coach AS T1 JOIN coach AS T2 ON T1.Coach_ID = T2.Coach_ID JOIN player AS T3 ON T1.Player_ID = T3.Player_ID ORDER BY T3.Votes DESC | แสดงชื่อผู้เล่นและชื่อโค้ชตามลำดับคะแนนโหวตของผู้เล่นจากมากไปน้อย | Show the names of players and names of their coaches in descending order of the votes of players. |
CREATE TABLE player (Player_name VARCHAR, Player_ID VARCHAR); CREATE TABLE player_coach (Player_name VARCHAR, Player_ID VARCHAR) | SELECT Player_name FROM player WHERE NOT Player_ID IN (SELECT Player_ID FROM player_coach) | รายชื่อผู้เล่นที่ไม่มีโค้ช | List the names of players that do not have coaches. |
CREATE TABLE player (Residence VARCHAR, gender VARCHAR) | SELECT Residence FROM player WHERE gender = "M" INTERSECT SELECT Residence FROM player WHERE gender = "F" | แสดงที่อยู่อาศัยที่มีทั้งผู้เล่นเพศ "M" และผู้เล่นเพศ "F" | Show the residences that have both a player of gender "M" and a player of gender "F". |
CREATE TABLE club (club_id VARCHAR, club_name VARCHAR); CREATE TABLE coach (club_id VARCHAR) | SELECT T1.club_id, T1.club_name, COUNT(*) FROM club AS T1 JOIN coach AS T2 ON T1.club_id = T2.club_id GROUP BY T1.club_id | แต่ละสโมสรมีโค้ชกี่คน? ระบุรหัสสโมสร ชื่อ และจำนวนโค้ช | How many coaches does each club has? List the club id, name and the number of coaches. |
CREATE TABLE match_result (club_id VARCHAR, gold VARCHAR); CREATE TABLE coach (club_id VARCHAR) | SELECT T1.club_id, T1.gold FROM match_result AS T1 JOIN coach AS T2 ON T1.club_id = T2.club_id GROUP BY T1.club_id ORDER BY COUNT(*) DESC LIMIT 1 | สโมสรที่มีโค้ชมากที่สุดชนะได้กี่เหรียญทอง? | How many gold medals has the club with the most coaches won? |
CREATE TABLE gymnast (Id VARCHAR) | SELECT COUNT(*) FROM gymnast | มีนักยิมนาสติกกี่คน? | How many gymnasts are there? |
CREATE TABLE gymnast (Total_Points VARCHAR) | SELECT Total_Points FROM gymnast ORDER BY Total_Points DESC | แสดงรายการคะแนนรวมของนักยิมนาสติกตามลำดับจากมากไปน้อย | List the total points of gymnasts in descending order. |
CREATE TABLE gymnast (Total_Points VARCHAR, Floor_Exercise_Points VARCHAR) | SELECT Total_Points FROM gymnast ORDER BY Floor_Exercise_Points DESC | แสดงรายการคะแนนรวมของนักยิมนาสติกตามลำดับคะแนนการออกกำลังกายบนพื้นจากมากไปหาน้อย | List the total points of gymnasts in descending order of floor exercise points. |
CREATE TABLE gymnast (Horizontal_Bar_Points INTEGER) | SELECT AVG(Horizontal_Bar_Points) FROM gymnast | คะแนนแถบแนวนอนเฉลี่ยสำหรับนักยิมนาสติกทุกคนคือเท่าไร? | What is the average horizontal bar points for all gymnasts? |
CREATE TABLE People (Name VARCHAR) | SELECT Name FROM People ORDER BY Name | ชื่อของบุคคลตามลำดับตัวอักษรจากน้อยไปหามากคืออะไร? | What are the names of people in ascending alphabetical order? |
CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR) | SELECT T2.Name FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID | นักยิมนาสติกชื่ออะไร? | What are the names of gymnasts? |
CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR, Hometown VARCHAR) | SELECT T2.Name FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID WHERE T2.Hometown <> "Santo Domingo" | นักยิมนาสติกชื่ออะไรที่ไม่ใช่บ้านเกิด "ซานโตโดมิงโก"? | What are the names of gymnasts whose hometown is not "Santo Domingo"? |
CREATE TABLE people (Age VARCHAR, Height VARCHAR) | SELECT Age FROM people ORDER BY Height DESC LIMIT 1 | คนที่สูงที่สุดอายุเท่าไหร่? | What is the age of the tallest person? |
CREATE TABLE People (Name VARCHAR, Age VARCHAR) | SELECT Name FROM People ORDER BY Age DESC LIMIT 5 | รายชื่อบุคคลที่อายุมากที่สุด 5 อันดับแรก | List the names of the top 5 oldest people. |
CREATE TABLE people (People_ID VARCHAR, Age VARCHAR); CREATE TABLE gymnast (Total_Points VARCHAR, Gymnast_ID VARCHAR) | SELECT T1.Total_Points FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID ORDER BY T2.Age LIMIT 1 | นักยิมนาสติกอายุน้อยที่สุดมีคะแนนรวมเท่าไร? | What is the total point count of the youngest gymnast? |
CREATE TABLE people (Age INTEGER, People_ID VARCHAR); CREATE TABLE gymnast (Gymnast_ID VARCHAR) | SELECT AVG(T2.Age) FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID | อายุเฉลี่ยของนักยิมนาสติกทุกคนคือเท่าไร? | What is the average age of all gymnasts? |
CREATE TABLE gymnast (Gymnast_ID VARCHAR, Total_Points INTEGER); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR) | SELECT DISTINCT T2.Hometown FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID WHERE T1.Total_Points > 57.5 | บ้านเกิดของนักยิมนาสติกที่มีคะแนนรวมมากกว่า 57.5 มีบ้านเกิดที่แตกต่างกันอย่างไร | What are the distinct hometowns of gymnasts with total points more than 57.5? |
CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR) | SELECT T2.Hometown, COUNT(*) FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID GROUP BY T2.Hometown | บ้านเกิดของนักยิมนาสติกและนักยิมนาสติกมีกี่คน? | What are the hometowns of gymnasts and the corresponding number of gymnasts? |
CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR) | SELECT T2.Hometown FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID GROUP BY T2.Hometown ORDER BY COUNT(*) DESC LIMIT 1 | บ้านเกิดของนักยิมนาสติกที่พบบ่อยที่สุดคืออะไร? | What is the most common hometown of gymnasts? |
CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR) | SELECT T2.Hometown FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID GROUP BY T2.Hometown HAVING COUNT(*) >= 2 | บ้านเกิดที่มีนักยิมนาสติกอย่างน้อยสองคนร่วมกันคืออะไร? | What are the hometowns that are shared by at least two gymnasts? |
CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR, Height VARCHAR) | SELECT T2.Name FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID ORDER BY T2.Height | รายชื่อนักยิมนาสติกเรียงตามความสูงจากน้อยไปหามาก | List the names of gymnasts in ascending order by their heights. |
CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR) | SELECT DISTINCT Hometown FROM people EXCEPT SELECT DISTINCT T2.Hometown FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID | ระบุบ้านเกิดที่ไม่เกี่ยวข้องกับนักกายกรรม | List the distinct hometowns that are not associated with any gymnast. |
CREATE TABLE people (Hometown VARCHAR, Age INTEGER) | SELECT Hometown FROM people WHERE Age > 23 INTERSECT SELECT Hometown FROM people WHERE Age < 20 | แสดงบ้านเกิดที่แบ่งปันโดยผู้ที่มีอายุมากกว่า 23 ปีและอายุน้อยกว่า 20 ปี | Show the hometowns shared by people older than 23 and younger than 20. |
CREATE TABLE people (Hometown VARCHAR) | SELECT COUNT(DISTINCT Hometown) FROM people | คนเหล่านี้มีบ้านเกิดที่แตกต่างกันกี่แห่ง? | How many distinct hometowns did these people have? |
CREATE TABLE people (Age VARCHAR, People_ID VARCHAR); CREATE TABLE gymnast (Gymnast_ID VARCHAR, Total_Points VARCHAR) | SELECT T2.Age FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID ORDER BY T1.Total_Points DESC | แสดงอายุของนักยิมนาสติกโดยเรียงลำดับคะแนนรวมจากมากไปหาน้อย | Show the ages of gymnasts in descending order of total points. |
CREATE TABLE accounts (custid VARCHAR, name VARCHAR); CREATE TABLE savings (balance INTEGER, custid VARCHAR) | SELECT SUM(T2.balance) FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid WHERE T1.name <> 'Brown' | ค้นหายอดออมทรัพย์รวมของทุกบัญชี ยกเว้นบัญชีชื่อ 'บราวน์' | Find the total savings balance of all accounts except the account with name ‘Brown’. |
CREATE TABLE accounts (Id VARCHAR) | SELECT COUNT(*) FROM accounts | มีทั้งหมดกี่บัญชี? | How many accounts are there in total? |
CREATE TABLE checking (balance INTEGER) | SELECT SUM(balance) FROM checking | ยอดเช็ครวมในทุกบัญชีคือเท่าไร? | What is the total checking balance in all accounts? |
CREATE TABLE checking (balance INTEGER) | SELECT AVG(balance) FROM checking | ค้นหายอดการตรวจสอบเฉลี่ย | Find the average checking balance. |
CREATE TABLE savings (balance INTEGER) | SELECT COUNT(*) FROM savings WHERE balance > (SELECT AVG(balance) FROM savings) | มีกี่บัญชีที่มียอดออมทรัพย์สูงกว่ายอดออมทรัพย์เฉลี่ย? | How many accounts have a savings balance above the average savings balance? |
CREATE TABLE accounts (custid VARCHAR, name VARCHAR); CREATE TABLE checking (balance INTEGER); CREATE TABLE checking (custid VARCHAR, balance INTEGER) | SELECT T1.custid, T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T2.balance < (SELECT MAX(balance) FROM checking) | ค้นหาชื่อและรหัสบัญชีที่มียอดคงเหลือในบัญชีต่ำกว่ายอดคงเหลือสูงสุด | Find the name and id of accounts whose checking balance is below the maximum checking balance. |
CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (custid VARCHAR, name VARCHAR) | SELECT T2.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T1.name LIKE '%ee%' | ยอดเงินในเช็คของบัญชีที่มีชื่อเจ้าของมีอักษรย่อย 'ee' คืออะไร? | What is the checking balance of the account whose owner’s name contains the substring ‘ee’? |
CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (custid VARCHAR, name VARCHAR); CREATE TABLE savings (balance VARCHAR, custid VARCHAR) | SELECT T2.balance, T3.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid WHERE T1.name = 'Brown' | ค้นหายอดคงเหลือในบัญชีและยอดออมทรัพย์ในบัญชีของบราวน์ | Find the checking balance and saving balance in the Brown’s account. |
CREATE TABLE checking (custid VARCHAR, balance INTEGER); CREATE TABLE savings (custid VARCHAR, balance INTEGER); CREATE TABLE savings (balance INTEGER); CREATE TABLE checking (balance INTEGER); CREATE TABLE accounts (name VARCHAR, custid VARCHAR) | SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T2.balance > (SELECT AVG(balance) FROM checking) INTERSECT SELECT T1.name FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid WHERE T2.balance < (SELECT AVG(balance) FROM savings) | ค้นหาชื่อบัญชีที่มียอดคงเหลือในกระแสรายวันสูงกว่ายอดกระแสรายวันเฉลี่ย แต่ยอดออมทรัพย์ต่ำกว่ายอดออมทรัพย์เฉลี่ย | Find the names of accounts whose checking balance is above the average checking balance, but savings balance is below the average savings balance. |
CREATE TABLE accounts (custid VARCHAR, name VARCHAR); CREATE TABLE checking (balance INTEGER, custid VARCHAR); CREATE TABLE savings (balance INTEGER, custid VARCHAR); CREATE TABLE savings (balance INTEGER) | SELECT T2.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T1.name IN (SELECT T1.name FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid WHERE T2.balance > (SELECT AVG(balance) FROM savings)) | ค้นหายอดเงินคงเหลือในบัญชีที่มียอดออมทรัพย์สูงกว่ายอดออมทรัพย์เฉลี่ย | Find the checking balance of the accounts whose savings balance is higher than the average savings balance. |
CREATE TABLE accounts (name VARCHAR) | SELECT name FROM accounts ORDER BY name | ระบุชื่อลูกค้าทั้งหมดตามลำดับตัวอักษร | List all customers’ names in the alphabetical order. |
CREATE TABLE checking (custid VARCHAR, balance VARCHAR); CREATE TABLE savings (custid VARCHAR, balance VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR) | SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T2.balance + T3.balance LIMIT 1 | ค้นหาชื่อบัญชีที่มียอดฝากและเช็คยอดรวมต่ำสุด | Find the name of account that has the lowest total checking and saving balance. |
CREATE TABLE checking (balance INTEGER, custid VARCHAR); CREATE TABLE savings (balance INTEGER, custid VARCHAR); CREATE TABLE savings (balance INTEGER); CREATE TABLE accounts (name VARCHAR, custid VARCHAR) | SELECT T1.name, T2.balance + T3.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid WHERE T3.balance > (SELECT AVG(balance) FROM savings) | ค้นหาชื่อและยอดรวมเช็คและออมทรัพย์ของบัญชีที่มียอดออมทรัพย์สูงกว่ายอดออมทรัพย์เฉลี่ย | Find the names and total checking and savings balances of accounts whose savings balance is higher than the average savings balance. |
CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE savings (custid VARCHAR, balance VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR) | SELECT T1.name, T2.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T3.balance LIMIT 1 | ค้นหาชื่อและตรวจสอบยอดเงินในบัญชีที่มียอดออมน้อยที่สุด | Find the name and checking balance of the account with the lowest savings balance. |
CREATE TABLE checking (custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR) | SELECT COUNT(*), T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid GROUP BY T1.name | ค้นหาจำนวนบัญชีเช็คสำหรับแต่ละชื่อบัญชี | Find the number of checking accounts for each account name. |
CREATE TABLE savings (balance INTEGER, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR) | SELECT SUM(T2.balance), T1.name FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid GROUP BY T1.name | ค้นหายอดคงเหลือรวมของแต่ละชื่อบัญชี | Find the total saving balance for each account name. |
CREATE TABLE accounts (name VARCHAR, custid VARCHAR); CREATE TABLE checking (balance INTEGER); CREATE TABLE checking (custid VARCHAR, balance INTEGER) | SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T2.balance < (SELECT AVG(balance) FROM checking) | ค้นหาชื่อบัญชีที่มียอดเช็คต่ำกว่ายอดเช็คเฉลี่ย | Find the name of accounts whose checking balance is below the average checking balance. |
CREATE TABLE savings (balance VARCHAR, custid VARCHAR); CREATE TABLE checking (custid VARCHAR, balance VARCHAR); CREATE TABLE accounts (custid VARCHAR) | SELECT T3.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T2.balance DESC LIMIT 1 | ค้นหายอดเงินออมของบัญชีที่มียอดเช็คสูงสุด | Find the saving balance of the account with the highest checking balance. |
CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE savings (balance VARCHAR, custid VARCHAR) | SELECT T1.balance + T2.balance FROM checking AS T1 JOIN savings AS T2 ON T1.custid = T2.custid ORDER BY T1.balance + T2.balance | ค้นหายอดฝากและฝากรวมของทุกบัญชี เรียงตามยอดรวมจากน้อยไปหามาก | Find the total checking and saving balance of all accounts sorted by the total balance in ascending order. |
CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE savings (custid VARCHAR, balance VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR) | SELECT T2.balance, T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T3.balance LIMIT 1 | ค้นหาชื่อและตรวจสอบยอดเงินในบัญชีที่มียอดออมต่ำสุด | Find the name and checking balance of the account with the lowest saving balance. |
CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE savings (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR) | SELECT T2.balance, T3.balance, T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid | ค้นหาชื่อ ตรวจสอบยอดเงิน และยอดออมของทุกบัญชีในธนาคาร | Find the name, checking balance and saving balance of all accounts in the bank. |
CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE savings (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR) | SELECT T2.balance, T3.balance, T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T2.balance + T3.balance DESC | ค้นหาชื่อ ยอดเช็คและยอดออมทรัพย์ของทุกบัญชีในธนาคาร เรียงตามยอดรวมเช็คและออมทรัพย์ตามลำดับจากมากไปน้อย | Find the name, checking balance and savings balance of all accounts in the bank sorted by their total checking and savings balance in descending order. |
CREATE TABLE savings (custid VARCHAR, balance INTEGER); CREATE TABLE accounts (name VARCHAR, custid VARCHAR); CREATE TABLE checking (custid VARCHAR, balance INTEGER) | SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid WHERE T2.balance > T3.balance | ค้นหาชื่อบัญชีที่มียอดคงเหลือในบัญชีมากกว่ายอดออมทรัพย์ที่เกี่ยวข้อง | Find the name of accounts whose checking balance is higher than corresponding saving balance. |
CREATE TABLE checking (balance INTEGER, custid VARCHAR); CREATE TABLE savings (balance INTEGER, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR) | SELECT T1.name, T3.balance + T2.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid WHERE T3.balance < T2.balance | ค้นหาชื่อและยอดรวมเช็คและออมทรัพย์ของบัญชีที่มียอดออมทรัพย์ต่ำกว่ายอดเช็คที่สอดคล้องกัน | Find the name and total checking and savings balance of the accounts whose savings balance is lower than corresponding checking balance. |
CREATE TABLE savings (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR) | SELECT T1.name, T2.balance FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid ORDER BY T2.balance DESC LIMIT 3 | ค้นหาชื่อและยอดออมทรัพย์ของบัญชีที่มียอดออมสูงสุด 3 อันดับแรก เรียงตามยอดออมทรัพย์ตามลำดับจากมากไปน้อย | Find the name and savings balance of the top 3 accounts with the highest saving balance sorted by savings balance in descending order. |
CREATE TABLE browser (market_share VARCHAR) | SELECT COUNT(*) FROM browser WHERE market_share >= 5 | มีเบราว์เซอร์กระแสหลักกี่ตัวที่มีส่วนแบ่งการตลาดอย่างน้อย 5 ตัว? | How many main stream browsers whose market share is at least 5 exist? |
CREATE TABLE browser (name VARCHAR, market_share VARCHAR) | SELECT name FROM browser ORDER BY market_share DESC | แสดงรายการชื่อเบราว์เซอร์ตามลำดับจากมากไปน้อยตามส่วนแบ่งการตลาด | List the name of browsers in descending order by market share. |
CREATE TABLE browser (id VARCHAR, name VARCHAR, market_share VARCHAR) | SELECT id, name, market_share FROM browser | ระบุรหัส ชื่อ และส่วนแบ่งการตลาดของเบราว์เซอร์ทั้งหมด | List the ids, names and market shares of all browsers. |
CREATE TABLE browser (market_share INTEGER) | SELECT MAX(market_share), MIN(market_share), AVG(market_share) FROM browser | ส่วนแบ่งการตลาดสูงสุด ต่ำสุด และเฉลี่ยของเบราว์เซอร์ที่อยู่ในรายการคือเท่าใด | What is the maximum, minimum and average market share of the listed browsers? |
CREATE TABLE browser (id VARCHAR, market_share VARCHAR, name VARCHAR) | SELECT id, market_share FROM browser WHERE name = 'Safari' | ID และส่วนแบ่งการตลาดของเบราว์เซอร์ Safari คืออะไร? | What is the id and market share of the browser Safari? |
CREATE TABLE web_client_accelerator (name VARCHAR, operating_system VARCHAR, CONNECTION VARCHAR) | SELECT name, operating_system FROM web_client_accelerator WHERE CONNECTION <> 'Broadband' | ชื่อและระบบปฏิบัติการของตัวเร่งความเร็วเว็บไคลเอ็นต์ที่ไม่สามารถใช้งานได้กับการเชื่อมต่อประเภท 'บรอดแบนด์' คืออะไร | What are the name and os of web client accelerators that do not work with only a 'Broadband' type connection? |
CREATE TABLE accelerator_compatible_browser (browser_id VARCHAR, accelerator_id VARCHAR, compatible_since_year VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, name VARCHAR); CREATE TABLE browser (name VARCHAR, id VARCHAR) | SELECT T1.name FROM browser AS T1 JOIN accelerator_compatible_browser AS T2 ON T1.id = T2.browser_id JOIN web_client_accelerator AS T3 ON T2.accelerator_id = T3.id WHERE T3.name = 'CProxy' AND T2.compatible_since_year > 1998 | เบราว์เซอร์ที่เข้ากันได้กับตัวเร่งความเร็ว 'CProxy' หลังจากปี 1998 ชื่ออะไร | What is the name of the browser that became compatible with the accelerator 'CProxy' after year 1998 ? |
CREATE TABLE accelerator_compatible_browser (accelerator_id VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, Name VARCHAR) | SELECT T1.id, T1.Name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id GROUP BY T1.id HAVING COUNT(*) >= 2 | รหัสและชื่อของตัวเร่งความเร็วเว็บที่เข้ากันได้กับเบราว์เซอร์ตั้งแต่สองตัวขึ้นไปคืออะไร | What are the ids and names of the web accelerators that are compatible with two or more browsers? |
CREATE TABLE browser (id VARCHAR, name VARCHAR); CREATE TABLE accelerator_compatible_browser (browser_id VARCHAR) | SELECT T1.id, T1.name FROM browser AS T1 JOIN accelerator_compatible_browser AS T2 ON T1.id = T2.browser_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1 | ID และชื่อของเบราว์เซอร์ที่เข้ากันได้กับตัวเร่งความเร็วเว็บส่วนใหญ่คืออะไร? | What is the id and name of the browser that is compatible with the most web accelerators? |
CREATE TABLE accelerator_compatible_browser (compatible_since_year VARCHAR, browser_id VARCHAR, accelerator_id VARCHAR); CREATE TABLE browser (id VARCHAR, name VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, name VARCHAR) | SELECT T1.compatible_since_year FROM accelerator_compatible_browser AS T1 JOIN browser AS T2 ON T1.browser_id = T2.id JOIN web_client_accelerator AS T3 ON T1.accelerator_id = T3.id WHERE T3.name = 'CACHEbox' AND T2.name = 'Internet Explorer' | ตัวเร่งความเร็วเว็บ 'CACHEbox' และเบราว์เซอร์ 'Internet Explorer' เข้ากันได้เมื่อใด | When did the web accelerator 'CACHEbox' and browser 'Internet Explorer' become compatible? |
CREATE TABLE web_client_accelerator (client VARCHAR) | SELECT COUNT(DISTINCT client) FROM web_client_accelerator | Web Client Accelerator รองรับไคลเอนต์กี่ประเภท? | How many different kinds of clients are supported by the web clients accelerators? |
CREATE TABLE accelerator_compatible_browser (id VARCHAR, accelerator_id VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, accelerator_id VARCHAR) | SELECT COUNT(*) FROM web_client_accelerator WHERE NOT id IN (SELECT accelerator_id FROM accelerator_compatible_browser) | มีตัวเร่งความเร็วกี่ตัวที่ไม่เข้ากันกับเบราว์เซอร์ที่อยู่ในรายการ ? | How many accelerators are not compatible with the browsers listed ? |
CREATE TABLE web_client_accelerator (name VARCHAR, id VARCHAR); CREATE TABLE accelerator_compatible_browser (accelerator_id VARCHAR, browser_id VARCHAR); CREATE TABLE browser (id VARCHAR, market_share INTEGER) | SELECT DISTINCT T1.name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T3.market_share > 15 | ชื่อตัวเร่งที่ชัดเจนใดบ้างที่เข้ากันได้กับเบราว์เซอร์ที่มีส่วนแบ่งการตลาดสูงกว่า 15 | What distinct accelerator names are compatible with the browswers that have market share higher than 15? |
CREATE TABLE accelerator_compatible_browser (accelerator_id VARCHAR, browser_id VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, name VARCHAR); CREATE TABLE browser (name VARCHAR, id VARCHAR) | SELECT T3.name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T1.name = 'CACHEbox' INTERSECT SELECT T3.name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T1.name = 'Fasterfox' | แสดงรายการชื่อของเบราว์เซอร์ที่เข้ากันได้กับทั้ง 'CACHEbox' และ 'Fasterfox' | List the names of the browser that are compatible with both 'CACHEbox' and 'Fasterfox'. |
CREATE TABLE browser (id VARCHAR, name VARCHAR); CREATE TABLE web_client_accelerator (name VARCHAR, operating_system VARCHAR); CREATE TABLE accelerator_compatible_browser (accelerator_id VARCHAR, browser_id VARCHAR); CREATE TABLE web_client_accelerator (name VARCHAR, operating_system VARCHAR, id VARCHAR) | SELECT name, operating_system FROM web_client_accelerator EXCEPT SELECT T1.name, T1.operating_system FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T3.name = 'Opera' | แสดงชื่อตัวเร่งความเร็วและระบบปฏิบัติการที่รองรับซึ่งเข้ากันไม่ได้กับเบราว์เซอร์ชื่อ 'Opera' | Show the accelerator names and supporting operating systems that are not compatible with the browser named 'Opera'. |
CREATE TABLE web_client_accelerator (name VARCHAR) | SELECT name FROM web_client_accelerator WHERE name LIKE "%Opera%" | ชื่อคันเร่งใดมีสตริงย่อย "Opera" | Which accelerator name contains substring "Opera"? |
CREATE TABLE web_client_accelerator (Operating_system VARCHAR) | SELECT Operating_system, COUNT(*) FROM web_client_accelerator GROUP BY Operating_system | ค้นหาจำนวนตัวเร่งความเร็วเว็บที่ใช้สำหรับระบบปฏิบัติการแต่ละระบบ | Find the number of web accelerators used for each Operating system. |
CREATE TABLE accelerator_compatible_browser (browser_id VARCHAR, accelerator_id VARCHAR, compatible_since_year VARCHAR); CREATE TABLE web_client_accelerator (name VARCHAR, id VARCHAR); CREATE TABLE browser (name VARCHAR, id VARCHAR) | SELECT T2.name, T3.name FROM accelerator_compatible_browser AS T1 JOIN browser AS T2 ON T1.browser_id = T2.id JOIN web_client_accelerator AS T3 ON T1.accelerator_id = T3.id ORDER BY T1.compatible_since_year DESC | แจ้งชื่อเบราว์เซอร์และตัวเร่งความเร็วที่เข้ากันได้ทั้งหมดให้ฉันโดยเรียงลำดับจากมากไปหาน้อยของปีที่เข้ากันได้ | give me names of all compatible browsers and accelerators in the descending order of compatible year |
CREATE TABLE wrestler (Id VARCHAR) | SELECT COUNT(*) FROM wrestler | มีนักมวยปล้ำกี่คน? | How many wrestlers are there? |
CREATE TABLE wrestler (Name VARCHAR, Days_held VARCHAR) | SELECT Name FROM wrestler ORDER BY Days_held DESC | รายชื่อนักมวยปล้ำเรียงตามวันที่จัดขึ้นจากมากไปหาน้อย | List the names of wrestlers in descending order of days held. |
CREATE TABLE wrestler (Name VARCHAR, Days_held VARCHAR) | SELECT Name FROM wrestler ORDER BY Days_held LIMIT 1 | นักมวยปล้ำที่มีวันน้อยที่สุดชื่ออะไร? | What is the name of the wrestler with the fewest days held? |
CREATE TABLE wrestler (Reign VARCHAR, LOCATION VARCHAR) | SELECT DISTINCT Reign FROM wrestler WHERE LOCATION <> "Tokyo , Japan" | อะไรคือรัชสมัยของนักมวยปล้ำที่ไม่ได้มีที่ตั้ง "โตเกียว ประเทศญี่ปุ่น" ที่แตกต่างกัน? | What are the distinct reigns of wrestlers whose location is not "Tokyo,Japan" ? |
CREATE TABLE wrestler (Name VARCHAR, LOCATION VARCHAR) | SELECT Name, LOCATION FROM wrestler | ชื่อและที่ตั้งของนักมวยปล้ำคืออะไร? | What are the names and location of the wrestlers? |
CREATE TABLE Elimination (Elimination_Move VARCHAR, Team VARCHAR) | SELECT Elimination_Move FROM Elimination WHERE Team = "Team Orton" | การเคลื่อนไหวแบบคัดออกของนักมวยปล้ำที่มีทีมคือ "ทีมออร์ตัน" คืออะไร? | What are the elimination moves of wrestlers whose team is "Team Orton"? |
CREATE TABLE wrestler (Name VARCHAR, Wrestler_ID VARCHAR); CREATE TABLE elimination (Elimination_Move VARCHAR, Wrestler_ID VARCHAR) | SELECT T2.Name, T1.Elimination_Move FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID | นักมวยปล้ำชื่ออะไรและท่าคัดออกคืออะไร? | What are the names of wrestlers and the elimination moves? |
CREATE TABLE elimination (Team VARCHAR, Wrestler_ID VARCHAR); CREATE TABLE wrestler (Name VARCHAR, Wrestler_ID VARCHAR, Days_held VARCHAR) | SELECT T2.Name, T1.Team FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID ORDER BY T2.Days_held DESC | รายชื่อนักมวยปล้ำและทีมที่คัดออกโดยเรียงลำดับตามวันที่จัดขึ้นจากมากไปน้อย | List the names of wrestlers and the teams in elimination in descending order of days held. |
CREATE TABLE wrestler (Wrestler_ID VARCHAR, Days_held VARCHAR); CREATE TABLE elimination (Time VARCHAR, Wrestler_ID VARCHAR) | SELECT T1.Time FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID ORDER BY T2.Days_held DESC LIMIT 1 | ระบุเวลากำจัดนักมวยปล้ำที่มีวันจัดมากที่สุด | List the time of elimination of the wrestlers with largest days held. |
CREATE TABLE wrestler (Wrestler_ID VARCHAR, Days_held INTEGER); CREATE TABLE elimination (Time VARCHAR, Wrestler_ID VARCHAR) | SELECT T1.Time FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID WHERE T2.Days_held > 50 | แสดงเวลาคัดนักมวยปล้ำที่มีวันจัดเกิน 50 วัน | Show times of elimination of wrestlers with days held more than 50. |
CREATE TABLE elimination (Team VARCHAR) | SELECT Team, COUNT(*) FROM elimination GROUP BY Team | แสดงทีมที่แตกต่างกันในการคัดออกและจำนวนการคัดออกของแต่ละทีม | Show different teams in eliminations and the number of eliminations from each team. |
CREATE TABLE elimination (Team VARCHAR) | SELECT Team FROM elimination GROUP BY Team HAVING COUNT(*) > 3 | แสดงทีมที่ได้รับการคัดออกมากกว่าสามครั้ง | Show teams that have suffered more than three eliminations. |
CREATE TABLE wrestler (Reign VARCHAR, Days_held VARCHAR) | SELECT Reign, Days_held FROM wrestler | แสดงรัชสมัยและวันที่จัดขึ้นของนักมวยปล้ำ | Show the reign and days held of wrestlers. |
CREATE TABLE wrestler (Name VARCHAR, Days_held INTEGER) | SELECT Name FROM wrestler WHERE Days_held < 100 | วันนักมวยปล้ำที่จัดขึ้นไม่ถึง 100 วันชื่ออะไร? | What are the names of wrestlers days held less than 100? |
CREATE TABLE wrestler (Reign VARCHAR) | SELECT Reign FROM wrestler GROUP BY Reign ORDER BY COUNT(*) DESC LIMIT 1 | โปรดแสดงรัชสมัยของนักมวยปล้ำที่พบบ่อยที่สุด | Please show the most common reigns of wrestlers. |
CREATE TABLE wrestler (LOCATION VARCHAR) | SELECT LOCATION FROM wrestler GROUP BY LOCATION HAVING COUNT(*) > 2 | ระบุสถานที่ที่นักมวยปล้ำมากกว่าสองคนแชร์กัน | List the locations that are shared by more than two wrestlers. |
CREATE TABLE elimination (Name VARCHAR, Wrestler_ID VARCHAR); CREATE TABLE wrestler (Name VARCHAR, Wrestler_ID VARCHAR) | SELECT Name FROM wrestler WHERE NOT Wrestler_ID IN (SELECT Wrestler_ID FROM elimination) | รายชื่อนักมวยปล้ำที่ยังไม่ถูกตัดออก | List the names of wrestlers that have not been eliminated. |
CREATE TABLE Elimination (Team VARCHAR, Eliminated_By VARCHAR) | SELECT Team FROM Elimination WHERE Eliminated_By = "Orton" INTERSECT SELECT Team FROM Elimination WHERE Eliminated_By = "Benjamin" | แสดงทีมที่มีทั้งนักมวยปล้ำตกรอบโดย "ออร์ตัน" และนักมวยปล้ำตกรอบโดย "เบนจามิน" | Show the teams that have both wrestlers eliminated by "Orton" and wrestlers eliminated by "Benjamin". |
CREATE TABLE elimination (team VARCHAR) | SELECT COUNT(DISTINCT team) FROM elimination | จำนวนทีมที่แตกต่างกันที่ต้องตกรอบคือเท่าใด? | What is the number of distinct teams that suffer elimination? |
CREATE TABLE elimination (TIME VARCHAR, Eliminated_By VARCHAR) | SELECT TIME FROM elimination WHERE Eliminated_By = "Punk" OR Eliminated_By = "Orton" | แสดงเวลาคัดออกด้วย "พังค์" หรือ "ออร์ตัน" | Show the times of elimination by "Punk" or "Orton". |
CREATE TABLE school (Id VARCHAR) | SELECT COUNT(*) FROM school | มีกี่โรงเรียน? | How many schools are there? |
CREATE TABLE school (school_name VARCHAR) | SELECT school_name FROM school ORDER BY school_name | แสดงชื่อโรงเรียนทั้งหมดตามลำดับตัวอักษร | Show all school names in alphabetical order. |
CREATE TABLE school (school_name VARCHAR, LOCATION VARCHAR, mascot VARCHAR) | SELECT school_name, LOCATION, mascot FROM school | แจ้งชื่อ ที่ตั้ง มาสคอตของทุกโรงเรียน | List the name, location, mascot for all schools. |
CREATE TABLE school (enrollment INTEGER) | SELECT SUM(enrollment), AVG(enrollment) FROM school | จำนวนการลงทะเบียนรวมและเฉลี่ยของทุกโรงเรียนคือเท่าใด | What are the total and average enrollment of all schools? |
CREATE TABLE school (mascot VARCHAR, enrollment INTEGER) | SELECT mascot FROM school WHERE enrollment > (SELECT AVG(enrollment) FROM school) | ตัวนำโชคสำหรับโรงเรียนที่มีการลงทะเบียนสูงกว่าค่าเฉลี่ยคืออะไร? | What are the mascots for schools with enrollments above the average? |
CREATE TABLE school (school_name VARCHAR, enrollment VARCHAR) | SELECT school_name FROM school ORDER BY enrollment LIMIT 1 | ระบุชื่อโรงเรียนที่มีการลงทะเบียนน้อยที่สุด | List the name of the school with the smallest enrollment. |
CREATE TABLE school (enrollment INTEGER) | SELECT AVG(enrollment), MAX(enrollment), MIN(enrollment) FROM school | แสดงการลงทะเบียนเฉลี่ย สูงสุด ขั้นต่ำของทุกโรงเรียน | Show the average, maximum, minimum enrollment of all schools. |
CREATE TABLE school (county VARCHAR, enrollment INTEGER) | SELECT county, COUNT(*), SUM(enrollment) FROM school GROUP BY county | แสดงแต่ละเคาน์ตีพร้อมกับจำนวนโรงเรียนและจำนวนการลงทะเบียนทั้งหมดในแต่ละเคาน์ตี | Show each county along with the number of schools and total enrollment in each county. |
CREATE TABLE school (school_id VARCHAR, school_name VARCHAR); CREATE TABLE endowment (donator_name VARCHAR, school_id VARCHAR) | SELECT COUNT(DISTINCT T1.donator_name) FROM endowment AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T2.school_name = "Glenn" | มีผู้บริจาคเงินบริจาคให้กับโรงเรียนชื่อ "เกลนน์" กี่คน? | How many donors have endowment for school named "Glenn"? |