context
stringlengths
27
489
answer
stringlengths
18
557
question_th
stringlengths
8
226
question_en
stringlengths
12
244
CREATE TABLE country (Official_native_language VARCHAR, Country_id VARCHAR); CREATE TABLE match_season (Country VARCHAR, College VARCHAR)
SELECT T1.Official_native_language FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.College = "Maryland" OR T2.College = "Duke"
ภาษาทางการของประเทศของผู้เล่นจาก Maryland หรือ Duke College คืออะไร?
What are the official languages of the countries of players from Maryland or Duke college?
CREATE TABLE country (Official_native_language VARCHAR, Country_id VARCHAR); CREATE TABLE match_season (Country VARCHAR, Position VARCHAR)
SELECT COUNT(DISTINCT T1.Official_native_language) FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.Position = "Defender"
มีภาษาราชการที่แตกต่างกันกี่ภาษาในประเทศของผู้เล่นที่มีตำแหน่งเป็นกองหลัง
How many distinct official languages are there among countries of players whose positions are defenders.
CREATE TABLE team (Name VARCHAR, Team_id VARCHAR); CREATE TABLE match_season (Season VARCHAR, Player VARCHAR, Team VARCHAR)
SELECT T1.Season, T1.Player, T2.Name FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id
แสดงฤดูกาล ผู้เล่น และชื่อทีมที่ผู้เล่นอยู่
Show the season, the player, and the name of the team that players belong to.
CREATE TABLE match_season (Position VARCHAR, Team VARCHAR); CREATE TABLE team (Team_id VARCHAR, Name VARCHAR)
SELECT T1.Position FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id WHERE T2.Name = "Ryley Goldner"
แสดงตำแหน่งผู้เล่นจากทีมชื่อ "ไรลีย์ โกลด์เนอร์"
Show the positions of the players from the team with name "Ryley Goldner".
CREATE TABLE match_season (College VARCHAR, Team VARCHAR); CREATE TABLE team (Team_id VARCHAR, Name VARCHAR)
SELECT COUNT(DISTINCT T1.College) FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id WHERE T2.Name = "Columbus Crew"
มีวิทยาลัยที่แตกต่างกันกี่แห่งที่เกี่ยวข้องกับผู้เล่นจากทีมที่ชื่อ "โคลัมบัส ครูว์"
How many distinct colleges are associated with players from the team with name "Columbus Crew".
CREATE TABLE player (Player VARCHAR, Years_Played VARCHAR, Team VARCHAR); CREATE TABLE team (Team_id VARCHAR, Name VARCHAR)
SELECT T1.Player, T1.Years_Played FROM player AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id WHERE T2.Name = "Columbus Crew"
แสดงรายชื่อผู้เล่นและจำนวนปีที่เล่นให้กับผู้เล่นจากทีมโคลัมบัส ครูว์
Show the players and years played for players from team "Columbus Crew".
CREATE TABLE match_season (POSITION VARCHAR)
SELECT POSITION, COUNT(*) FROM match_season GROUP BY POSITION
แสดงตำแหน่งผู้เล่นและจำนวนผู้เล่นที่สอดคล้องกัน
Show the position of players and the corresponding number of players.
CREATE TABLE match_season (Country VARCHAR); CREATE TABLE country (Country_name VARCHAR, Country_id VARCHAR)
SELECT Country_name, COUNT(*) FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country GROUP BY T1.Country_name
แสดงชื่อประเทศและจำนวนผู้เล่นที่เกี่ยวข้อง
Show the country names and the corresponding number of players.
CREATE TABLE match_season (player VARCHAR, College VARCHAR)
SELECT player FROM match_season ORDER BY College
ส่งคืนผู้เล่นทั้งหมดโดยเรียงตามวิทยาลัยโดยเรียงจากน้อยไปหามาก
Return all players sorted by college in ascending alphabetical order.
CREATE TABLE match_season (POSITION VARCHAR)
SELECT POSITION FROM match_season GROUP BY POSITION ORDER BY COUNT(*) DESC LIMIT 1
แสดงตำแหน่งผู้เล่นที่พบบ่อยที่สุดในฤดูกาลการแข่งขัน
Show the most common position of players in match seasons.
CREATE TABLE match_season (College VARCHAR)
SELECT College FROM match_season GROUP BY College ORDER BY COUNT(*) DESC LIMIT 3
แสดงวิทยาลัยผู้เล่นที่พบมากที่สุด 3 อันดับแรกในฤดูกาลการแข่งขัน
Show the top 3 most common colleges of players in match seasons.
CREATE TABLE match_season (College VARCHAR)
SELECT College FROM match_season GROUP BY College HAVING COUNT(*) >= 2
แสดงชื่อวิทยาลัยที่มีผู้เล่นอย่างน้อยสองคน
Show the name of colleges that have at least two players.
CREATE TABLE match_season (College VARCHAR)
SELECT College FROM match_season GROUP BY College HAVING COUNT(*) >= 2 ORDER BY College DESC
แสดงชื่อวิทยาลัยที่มีผู้เล่นอย่างน้อยสองคนตามลำดับตัวอักษรจากมากไปน้อย
Show the name of colleges that have at least two players in descending alphabetical order.
CREATE TABLE match_season (Name VARCHAR, Team_id VARCHAR, Team VARCHAR); CREATE TABLE team (Name VARCHAR, Team_id VARCHAR, Team VARCHAR)
SELECT Name FROM team WHERE NOT Team_id IN (SELECT Team FROM match_season)
ทีมที่ไม่มีสถิติการแข่งขันมีชื่ออะไรบ้าง?
What are the names of teams that do no have match season record?
CREATE TABLE country (Country_name VARCHAR, Country_id VARCHAR); CREATE TABLE match_season (Country VARCHAR, Position VARCHAR)
SELECT T1.Country_name FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.Position = "Forward" INTERSECT SELECT T1.Country_name FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.Position = "Defender"
ประเทศที่มีทั้งผู้เล่นตำแหน่งกองหน้าและผู้เล่นตำแหน่งกองหลังชื่ออะไร?
What are the names of countries that have both players with position forward and players with position defender?
CREATE TABLE match_season (College VARCHAR, POSITION VARCHAR)
SELECT College FROM match_season WHERE POSITION = "Midfielder" INTERSECT SELECT College FROM match_season WHERE POSITION = "Defender"
วิทยาลัยไหนมีทั้งผู้เล่นตำแหน่งกองกลางและผู้เล่นตำแหน่งกองหลัง?
Which college have both players with position midfielder and players with position defender?
CREATE TABLE climber (Id VARCHAR)
SELECT COUNT(*) FROM climber
มีนักปีนเขากี่คน?
How many climbers are there?
CREATE TABLE climber (Name VARCHAR, Points VARCHAR)
SELECT Name FROM climber ORDER BY Points DESC
รายชื่อนักปีนเขาตามลำดับคะแนนจากมากไปน้อย
List the names of climbers in descending order of points.
CREATE TABLE climber (Name VARCHAR, Country VARCHAR)
SELECT Name FROM climber WHERE Country <> "Switzerland"
รายชื่อนักปีนเขาที่ไม่ใช่ประเทศสวิตเซอร์แลนด์
List the names of climbers whose country is not Switzerland.
CREATE TABLE climber (Points INTEGER, Country VARCHAR)
SELECT MAX(Points) FROM climber WHERE Country = "United Kingdom"
จุดสูงสุดสำหรับนักปีนเขาที่มีประเทศคือสหราชอาณาจักรคือเท่าไร?
What is the maximum point for climbers whose country is United Kingdom?
CREATE TABLE climber (Country VARCHAR)
SELECT COUNT(DISTINCT Country) FROM climber
นักปีนเขามาจากกี่ประเทศ?
How many distinct countries are the climbers from?
CREATE TABLE mountain (Name VARCHAR)
SELECT Name FROM mountain ORDER BY Name
ภูเขาชื่ออะไรเรียงตามลำดับตัวอักษร?
What are the names of mountains in ascending alphabetical order?
CREATE TABLE mountain (Country VARCHAR, Height INTEGER)
SELECT Country FROM mountain WHERE Height > 5000
ประเทศใดบ้างที่มีภูเขาสูงกว่า 5,000 ภูเขา?
What are the countries of mountains with height bigger than 5000?
CREATE TABLE mountain (Name VARCHAR, Height VARCHAR)
SELECT Name FROM mountain ORDER BY Height DESC LIMIT 1
ภูเขาที่สูงที่สุดชื่ออะไร?
What is the name of the highest mountain?
CREATE TABLE mountain (Range VARCHAR, Prominence VARCHAR)
SELECT DISTINCT Range FROM mountain ORDER BY Prominence DESC LIMIT 3
รายชื่อเทือกเขาที่แตกต่างกันโดยมีความโดดเด่น 3 อันดับแรก
List the distinct ranges of the mountains with the top 3 prominence.
CREATE TABLE mountain (Name VARCHAR, Mountain_ID VARCHAR); CREATE TABLE climber (Name VARCHAR, Mountain_ID VARCHAR)
SELECT T1.Name, T2.Name FROM climber AS T1 JOIN mountain AS T2 ON T1.Mountain_ID = T2.Mountain_ID
แสดงชื่อนักปีนเขาและชื่อภูเขาที่พวกเขาปีน
Show names of climbers and the names of mountains they climb.
CREATE TABLE mountain (Height VARCHAR, Mountain_ID VARCHAR); CREATE TABLE climber (Name VARCHAR, Mountain_ID VARCHAR)
SELECT T1.Name, T2.Height FROM climber AS T1 JOIN mountain AS T2 ON T1.Mountain_ID = T2.Mountain_ID
แสดงชื่อนักปีนเขาและความสูงของภูเขาที่พวกเขาปีน
Show the names of climbers and the heights of mountains they climb.
CREATE TABLE climber (Mountain_ID VARCHAR, Points VARCHAR); CREATE TABLE mountain (Height VARCHAR, Mountain_ID VARCHAR)
SELECT T2.Height FROM climber AS T1 JOIN mountain AS T2 ON T1.Mountain_ID = T2.Mountain_ID ORDER BY T1.Points DESC LIMIT 1
แสดงความสูงของภูเขาที่นักปีนเขาปีนขึ้นไปด้วยคะแนนสูงสุด
Show the height of the mountain climbed by the climber with the maximum points.
CREATE TABLE mountain (Name VARCHAR, Mountain_ID VARCHAR); CREATE TABLE climber (Mountain_ID VARCHAR, Country VARCHAR)
SELECT DISTINCT T2.Name FROM climber AS T1 JOIN mountain AS T2 ON T1.Mountain_ID = T2.Mountain_ID WHERE T1.Country = "West Germany"
แสดงชื่อภูเขาที่นักปีนเขาจากประเทศ "เยอรมนีตะวันตก" ปีนขึ้นไป
Show the distinct names of mountains climbed by climbers from country "West Germany".
CREATE TABLE mountain (Mountain_ID VARCHAR, Country VARCHAR); CREATE TABLE climber (Time VARCHAR, Mountain_ID VARCHAR)
SELECT T1.Time FROM climber AS T1 JOIN mountain AS T2 ON T1.Mountain_ID = T2.Mountain_ID WHERE T2.Country = "Uganda"
แสดงเวลาที่นักปีนเขาใช้เพื่อปีนภูเขาในประเทศยูกันดา
Show the times used by climbers to climb mountains in Country Uganda.
CREATE TABLE climber (Country VARCHAR)
SELECT Country, COUNT(*) FROM climber GROUP BY Country
กรุณาแสดงประเทศและจำนวนนักปีนเขาในแต่ละประเทศ
Please show the countries and the number of climbers from each country.
CREATE TABLE mountain (Country VARCHAR)
SELECT Country FROM mountain GROUP BY Country HAVING COUNT(*) > 1
รายชื่อประเทศที่มีภูเขามากกว่าหนึ่งลูก
List the countries that have more than one mountain.
CREATE TABLE mountain (Name VARCHAR, Mountain_ID VARCHAR); CREATE TABLE climber (Name VARCHAR, Mountain_ID VARCHAR)
SELECT Name FROM mountain WHERE NOT Mountain_ID IN (SELECT Mountain_ID FROM climber)
รายชื่อภูเขาที่ไม่มีนักปีนเขา
List the names of mountains that do not have any climber.
CREATE TABLE mountain (Country VARCHAR, Height INTEGER)
SELECT Country FROM mountain WHERE Height > 5600 INTERSECT SELECT Country FROM mountain WHERE Height < 5200
แสดงประเทศที่มีภูเขาสูงเกิน 5600 ชั้น และภูเขาสูงน้อยกว่า 5200 ชั้น
Show the countries that have mountains with height more than 5600 stories and mountains with height less than 5200.
CREATE TABLE mountain (Range VARCHAR)
SELECT Range FROM mountain GROUP BY Range ORDER BY COUNT(*) DESC LIMIT 1
แสดงช่วงที่มีจำนวนภูเขามากที่สุด
Show the range that has the most number of mountains.
CREATE TABLE mountain (Name VARCHAR, Height VARCHAR, Prominence VARCHAR)
SELECT Name FROM mountain WHERE Height > 5000 OR Prominence > 1000
แสดงชื่อภูเขาที่มีความสูงกว่า 5,000 หรือโดดเด่นมากกว่า 1,000
Show the names of mountains with height more than 5000 or prominence more than 1000.
CREATE TABLE body_builder (Id VARCHAR)
SELECT COUNT(*) FROM body_builder
มีนักเพาะกายกี่คน?
How many body builders are there?
CREATE TABLE body_builder (Total VARCHAR)
SELECT Total FROM body_builder ORDER BY Total
แสดงรายการคะแนนรวมของนักเพาะกายโดยเรียงจากน้อยไปหามาก
List the total scores of body builders in ascending order.
CREATE TABLE body_builder (Snatch VARCHAR, Clean_Jerk VARCHAR)
SELECT Snatch, Clean_Jerk FROM body_builder ORDER BY Snatch
แสดงรายการคะแนนการฉกและคะแนนการกระตุกที่สะอาดของนักเพาะกายโดยเรียงลำดับจากคะแนนการฉกจากน้อยไปมาก
List the snatch score and clean jerk score of body builders in ascending order of snatch score.
CREATE TABLE body_builder (Snatch INTEGER)
SELECT AVG(Snatch) FROM body_builder
คะแนนเฉลี่ยของนักเพาะกายคือเท่าไร?
What is the average snatch score of body builders?
CREATE TABLE body_builder (Clean_Jerk VARCHAR, Total VARCHAR)
SELECT Clean_Jerk FROM body_builder ORDER BY Total DESC LIMIT 1
คะแนน Clean and Jerk ของนักเพาะกายที่มีคะแนนรวมสูงสุดคือเท่าไร?
What are the clean and jerk score of the body builder with the highest total score?
CREATE TABLE People (Birth_Date VARCHAR, Height VARCHAR)
SELECT Birth_Date FROM People ORDER BY Height
วันเกิดของคนเรียงลำดับส่วนสูงคือวันไหน?
What are the birthdays of people in ascending order of height?
CREATE TABLE body_builder (People_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)
SELECT T2.Name FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID
นักเพาะกายชื่ออะไร?
What are the names of body builders?
CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE body_builder (People_ID VARCHAR, Total INTEGER)
SELECT T2.Name FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Total > 300
นักเพาะกายที่มีคะแนนรวมเกิน 300 ชื่ออะไร?
What are the names of body builders whose total score is higher than 300?
CREATE TABLE body_builder (People_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR, Weight VARCHAR)
SELECT T2.Name FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Weight DESC LIMIT 1
นักเพาะกายที่มีน้ำหนักตัวมากที่สุดชื่ออะไร?
What is the name of the body builder with the greatest body weight?
CREATE TABLE body_builder (People_ID VARCHAR, Total VARCHAR); CREATE TABLE people (Birth_Date VARCHAR, Birth_Place VARCHAR, People_ID VARCHAR)
SELECT T2.Birth_Date, T2.Birth_Place FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Total DESC LIMIT 1
วันเกิดและสถานที่เกิดของนักเพาะกายที่มีคะแนนรวมสูงสุดคือวันไหน?
What are the birth date and birth place of the body builder with the highest total points?
CREATE TABLE people (Height VARCHAR, People_ID VARCHAR); CREATE TABLE body_builder (People_ID VARCHAR, Total INTEGER)
SELECT T2.Height FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Total < 315
นักเพาะกายที่มีคะแนนรวมต่ำกว่า 315 มีความสูงเท่าใด
What are the heights of body builders with total score smaller than 315?
CREATE TABLE people (People_ID VARCHAR, Height INTEGER); CREATE TABLE body_builder (Total INTEGER, People_ID VARCHAR)
SELECT AVG(T1.Total) FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Height > 200
คะแนนรวมเฉลี่ยของนักเพาะกายที่มีส่วนสูงเกิน 200 คือเท่าไร?
What is the average total score of body builders with height bigger than 200?
CREATE TABLE body_builder (People_ID VARCHAR, Total VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)
SELECT T2.Name FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Total DESC
นักเพาะกายชื่ออะไรเรียงตามคะแนนรวมจากมากไปน้อย?
What are the names of body builders in descending order of total scores?
CREATE TABLE people (Birth_Place VARCHAR)
SELECT Birth_Place, COUNT(*) FROM people GROUP BY Birth_Place
ระบุสถานที่เกิดแต่ละแห่งพร้อมจำนวนผู้คนจากที่นั่น
List each birth place along with the number of people from there.
CREATE TABLE people (Birth_Place VARCHAR)
SELECT Birth_Place FROM people GROUP BY Birth_Place ORDER BY COUNT(*) DESC LIMIT 1
คนเกิดที่ไหนบ่อยที่สุด?
What is the most common birth place of people?
CREATE TABLE people (Birth_Place VARCHAR)
SELECT Birth_Place FROM people GROUP BY Birth_Place HAVING COUNT(*) >= 2
สถานที่เกิดที่มีคนร่วมกันอย่างน้อยสองคนคือที่ใด
What are the birth places that are shared by at least two people?
CREATE TABLE people (Height VARCHAR, Weight VARCHAR)
SELECT Height, Weight FROM people ORDER BY Height DESC
ระบุส่วนสูงและน้ำหนักของบุคคลตามลำดับส่วนสูงจากมากไปน้อย
List the height and weight of people in descending order of height.
CREATE TABLE body_builder (Id VARCHAR)
SELECT * FROM body_builder
แสดงข้อมูลทั้งหมดเกี่ยวกับนักเพาะกายแต่ละคน
Show all information about each body builder.
CREATE TABLE people (Name VARCHAR, birth_place VARCHAR, people_id VARCHAR); CREATE TABLE body_builder (people_id VARCHAR); CREATE TABLE people (Name VARCHAR, birth_place VARCHAR)
SELECT Name, birth_place FROM people EXCEPT SELECT T1.Name, T1.birth_place FROM people AS T1 JOIN body_builder AS T2 ON T1.people_id = T2.people_id
ระบุชื่อและที่มาของผู้ที่ไม่ใช่นักเพาะกาย
List the names and origins of people who are not body builders.
CREATE TABLE people (Birth_Place VARCHAR)
SELECT COUNT(DISTINCT Birth_Place) FROM people
มีสถานที่เกิดที่แตกต่างกันกี่แห่ง?
How many distinct birth places are there?
CREATE TABLE body_builder (people_id VARCHAR, People_ID VARCHAR); CREATE TABLE people (people_id VARCHAR, People_ID VARCHAR)
SELECT COUNT(*) FROM people WHERE NOT people_id IN (SELECT People_ID FROM body_builder)
มีกี่คนที่ไม่ใช่นักเพาะกาย?
How many persons are not body builders?
CREATE TABLE people (weight VARCHAR, people_id VARCHAR, height VARCHAR); CREATE TABLE body_builder (people_id VARCHAR, snatch VARCHAR)
SELECT T2.weight FROM body_builder AS T1 JOIN people AS T2 ON T1.people_id = T2.people_id WHERE T1.snatch > 140 OR T2.height > 200
ระบุน้ำหนักของนักเพาะกายที่มีคะแนน Snatch Score สูงกว่า 140 หรือมีส่วนสูงมากกว่า 200
List the weight of the body builders who have snatch score higher than 140 or have the height greater than 200.
CREATE TABLE people (people_id VARCHAR, Birth_Date VARCHAR); CREATE TABLE body_builder (total VARCHAR, people_id VARCHAR)
SELECT T1.total FROM body_builder AS T1 JOIN people AS T2 ON T1.people_id = T2.people_id WHERE T2.Birth_Date LIKE "%January%"
คะแนนรวมนักเพาะกายที่มีวันเกิดมีคำว่า "มกราคม" เป็นเท่าใด ?
What are the total scores of the body builders whose birthday contains the string "January" ?
CREATE TABLE body_builder (snatch INTEGER)
SELECT MIN(snatch) FROM body_builder
คะแนนฉกขั้นต่ำคือเท่าไร?
What is the minimum snatch score?
CREATE TABLE election (Id VARCHAR)
SELECT COUNT(*) FROM election
มีการเลือกตั้งกี่ครั้ง?
How many elections are there?
CREATE TABLE election (Votes VARCHAR)
SELECT Votes FROM election ORDER BY Votes DESC
แสดงรายการคะแนนเสียงของการเลือกตั้งตามลำดับจากมากไปน้อย
List the votes of elections in descending order.
CREATE TABLE election (Date VARCHAR, Vote_Percent VARCHAR)
SELECT Date, Vote_Percent FROM election
ระบุวันที่และเปอร์เซ็นต์การลงคะแนนเสียงของการเลือกตั้ง
List the dates and vote percents of elections.
CREATE TABLE election (Vote_Percent INTEGER)
SELECT MIN(Vote_Percent), MAX(Vote_Percent) FROM election
เปอร์เซ็นต์คะแนนเสียงต่ำสุดและสูงสุดในการเลือกตั้งคือเท่าใด
What are the minimum and maximum vote percents of elections?
CREATE TABLE representative (Name VARCHAR, Party VARCHAR)
SELECT Name, Party FROM representative
ชื่อและฝ่ายของผู้แทนคืออะไร?
What are the names and parties of representatives?
CREATE TABLE Representative (Name VARCHAR, Party VARCHAR)
SELECT Name FROM Representative WHERE Party <> "Republican"
ตัวแทนของพรรคที่ไม่ใช่ "พรรครีพับลิกัน" มีชื่ออะไรบ้าง?
What are the names of representatives whose party is not "Republican"?
CREATE TABLE representative (Lifespan VARCHAR, State VARCHAR)
SELECT Lifespan FROM representative WHERE State = "New York" OR State = "Indiana"
อายุขัยของผู้แทนจากรัฐนิวยอร์กหรือรัฐอินเดียน่าคือเท่าใด
What are the life spans of representatives from New York state or Indiana state?
CREATE TABLE election (Date VARCHAR, Representative_ID VARCHAR); CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR)
SELECT T2.Name, T1.Date FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID
ตัวแทนชื่ออะไรและวันที่เลือกตั้งที่พวกเขาเข้าร่วม
What are the names of representatives and the dates of elections they participated in.
CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR); CREATE TABLE election (Representative_ID VARCHAR)
SELECT T2.Name FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID WHERE Votes > 10000
ตัวแทนที่ได้รับคะแนนเสียงมากกว่า 10,000 เสียงในการเลือกตั้งชื่ออะไร?
What are the names of representatives with more than 10000 votes in election?
CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR); CREATE TABLE election (Representative_ID VARCHAR)
SELECT T2.Name FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID ORDER BY votes DESC
รายชื่อผู้แทนเรียงตามการลงคะแนนเสียงจากมากไปหาน้อยมีชื่ออะไรบ้าง?
What are the names of representatives in descending order of votes?
CREATE TABLE representative (Party VARCHAR, Representative_ID VARCHAR); CREATE TABLE election (Representative_ID VARCHAR)
SELECT T2.Party FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID ORDER BY votes LIMIT 1
พรรคใดของผู้แทนราษฎรที่ได้คะแนนเสียงน้อยที่สุดคือพรรคใด
What is the party of the representative that has the smallest number of votes.
CREATE TABLE election (Representative_ID VARCHAR); CREATE TABLE representative (Lifespan VARCHAR, Representative_ID VARCHAR)
SELECT T2.Lifespan FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID ORDER BY Vote_Percent DESC
ตัวแทนจะมีอายุขัยเท่าใดโดยเรียงตามเปอร์เซ็นต์การลงคะแนนจากมากไปน้อย?
What are the lifespans of representatives in descending order of vote percent?
CREATE TABLE election (Votes INTEGER, Representative_ID VARCHAR); CREATE TABLE representative (Representative_ID VARCHAR, Party VARCHAR)
SELECT AVG(T1.Votes) FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID WHERE T2.Party = "Republican"
จำนวนคะแนนเสียงเฉลี่ยของผู้แทนจากพรรค "รีพับลิกัน" คือเท่าไร?
What is the average number of votes of representatives from party "Republican"?
CREATE TABLE representative (Party VARCHAR)
SELECT Party, COUNT(*) FROM representative GROUP BY Party
ฝ่ายต่างๆ ของตัวแทนมีอะไรบ้าง? แสดงชื่อพรรคและจำนวนผู้แทนในแต่ละพรรค
What are the different parties of representative? Show the party name and the number of representatives in each party.
CREATE TABLE representative (Party VARCHAR)
SELECT Party, COUNT(*) FROM representative GROUP BY Party ORDER BY COUNT(*) DESC LIMIT 1
พรรคใดมีผู้แทนมากที่สุด?
What is the party that has the largest number of representatives?
CREATE TABLE representative (Party VARCHAR)
SELECT Party FROM representative GROUP BY Party HAVING COUNT(*) >= 3
ฝ่ายใดมีผู้แทนอย่างน้อยสามคน?
What parties have at least three representatives?
CREATE TABLE representative (State VARCHAR)
SELECT State FROM representative GROUP BY State HAVING COUNT(*) >= 2
รัฐใดมีตัวแทนอย่างน้อยสองคน?
What states have at least two representatives?
CREATE TABLE election (Name VARCHAR, Representative_ID VARCHAR); CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR)
SELECT Name FROM representative WHERE NOT Representative_ID IN (SELECT Representative_ID FROM election)
รายชื่อผู้แทนที่ไม่ได้เข้าร่วมการเลือกตั้งแสดงไว้ที่นี่
List the names of representatives that have not participated in elections listed here.
CREATE TABLE representative (Party VARCHAR, State VARCHAR)
SELECT Party FROM representative WHERE State = "New York" INTERSECT SELECT Party FROM representative WHERE State = "Pennsylvania"
แสดงฝ่ายที่มีทั้งตัวแทนในรัฐนิวยอร์กและตัวแทนในรัฐเพนซิลเวเนีย
Show the parties that have both representatives in New York state and representatives in Pennsylvania state.
CREATE TABLE representative (Party VARCHAR)
SELECT COUNT(DISTINCT Party) FROM representative
มีฝ่ายที่แตกต่างกันสำหรับตัวแทนกี่ฝ่าย?
How many distinct parties are there for representatives?
CREATE TABLE Apartment_Bookings (Id VARCHAR)
SELECT COUNT(*) FROM Apartment_Bookings
มีการจองอพาร์ทเมนท์ทั้งหมดกี่ห้อง?
How many apartment bookings are there in total?
CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, booking_end_date VARCHAR)
SELECT booking_start_date, booking_end_date FROM Apartment_Bookings
แสดงวันที่เริ่มต้นและวันที่สิ้นสุดของการจองอพาร์ทเมนท์ทั้งหมด
Show the start dates and end dates of all the apartment bookings.
CREATE TABLE Apartment_Buildings (building_description VARCHAR)
SELECT DISTINCT building_description FROM Apartment_Buildings
แสดงคำอธิบายอาคารที่แตกต่างกันทั้งหมด
Show all distinct building descriptions.
CREATE TABLE Apartment_Buildings (building_short_name VARCHAR, building_manager VARCHAR)
SELECT building_short_name FROM Apartment_Buildings WHERE building_manager = "Emma"
แสดงชื่อย่อของอาคารที่จัดการโดย "เอ็มม่า"
Show the short names of the buildings managed by "Emma".
CREATE TABLE Apartment_Buildings (building_address VARCHAR, building_phone VARCHAR, building_manager VARCHAR)
SELECT building_address, building_phone FROM Apartment_Buildings WHERE building_manager = "Brenden"
แสดงที่อยู่และโทรศัพท์ของอาคารทั้งหมดที่จัดการโดย "เบรนเดน"
Show the addresses and phones of all the buildings managed by "Brenden".
CREATE TABLE Apartment_Buildings (building_full_name VARCHAR)
SELECT building_full_name FROM Apartment_Buildings WHERE building_full_name LIKE "%court%"
ชื่อเต็มของอาคารที่มีคำว่า "ศาล" คืออะไร
What are the building full names that contain the word "court"?
CREATE TABLE Apartments (bathroom_count INTEGER)
SELECT MIN(bathroom_count), MAX(bathroom_count) FROM Apartments
จำนวนห้องน้ำขั้นต่ำและสูงสุดของอพาร์ทเมนท์ทั้งหมดคือเท่าไร?
What is the minimum and maximum number of bathrooms of all the apartments?
CREATE TABLE Apartments (bedroom_count INTEGER)
SELECT AVG(bedroom_count) FROM Apartments
จำนวนห้องนอนโดยเฉลี่ยของอพาร์ทเมนท์ทั้งหมดคือเท่าไร?
What is the average number of bedrooms of all apartments?
CREATE TABLE Apartments (apt_number VARCHAR, room_count VARCHAR)
SELECT apt_number, room_count FROM Apartments
ส่งกลับหมายเลขอพาร์ทเมนท์และจำนวนห้องของแต่ละอพาร์ตเมนต์
Return the apartment number and the number of rooms for each apartment.
CREATE TABLE Apartments (room_count INTEGER, apt_type_code VARCHAR)
SELECT AVG(room_count) FROM Apartments WHERE apt_type_code = "Studio"
จำนวนห้องโดยเฉลี่ยของอพาร์ทเมนต์ที่มีรหัสประเภท "สตูดิโอ" คือเท่าไร?
What is the average number of rooms of apartments with type code "Studio"?
CREATE TABLE Apartments (apt_number VARCHAR, apt_type_code VARCHAR)
SELECT apt_number FROM Apartments WHERE apt_type_code = "Flat"
ส่งกลับหมายเลขอพาร์ทเมนต์ของอพาร์ทเมนต์พร้อมรหัสประเภท "Flat"
Return the apartment numbers of the apartments with type code "Flat".
CREATE TABLE Guests (guest_first_name VARCHAR, guest_last_name VARCHAR)
SELECT guest_first_name, guest_last_name FROM Guests
ส่งกลับชื่อและนามสกุลของแขกทุกคน
Return the first names and last names of all guests
CREATE TABLE Guests (date_of_birth VARCHAR, gender_code VARCHAR)
SELECT date_of_birth FROM Guests WHERE gender_code = "Male"
กลับวันเกิดของแขกทุกคนด้วยรหัสเพศ "ชาย"
Return the date of birth for all the guests with gender code "Male".
CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, apt_id VARCHAR); CREATE TABLE Apartments (apt_number VARCHAR, apt_id VARCHAR)
SELECT T2.apt_number, T1.booking_start_date, T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id
แสดงหมายเลขอพาร์ทเมนท์ วันที่เริ่มต้น และวันที่สิ้นสุดของการจองอพาร์ทเมนท์ทั้งหมด
Show the apartment numbers, start dates, and end dates of all the apartment bookings.
CREATE TABLE Apartments (apt_id VARCHAR, apt_type_code VARCHAR); CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, apt_id VARCHAR)
SELECT T1.booking_start_date, T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.apt_type_code = "Duplex"
วันที่เริ่มต้นและสิ้นสุดการจองของอพาร์ทเมนท์ที่มีรหัสประเภท "Duplex" คือเมื่อใด
What are the booking start and end dates of the apartments with type code "Duplex"?
CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, apt_id VARCHAR); CREATE TABLE Apartments (apt_id VARCHAR, bedroom_count INTEGER)
SELECT T1.booking_start_date, T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 2
วันที่เริ่มต้นและสิ้นสุดการจองของอพาร์ทเมนท์ที่มีมากกว่า 2 ห้องนอนคือเมื่อใด?
What are the booking start and end dates of the apartments with more than 2 bedrooms?
CREATE TABLE Apartments (apt_id VARCHAR, apt_number VARCHAR); CREATE TABLE Apartment_Bookings (booking_status_code VARCHAR, apt_id VARCHAR)
SELECT T1.booking_status_code FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.apt_number = "Suite 634"
รหัสสถานะการจองอพาร์ทเมนท์หมายเลข "Suite 634" คืออะไร
What is the booking status code of the apartment with apartment number "Suite 634"?
CREATE TABLE Apartments (apt_number VARCHAR, apt_id VARCHAR); CREATE TABLE Apartment_Bookings (apt_id VARCHAR, booking_status_code VARCHAR)
SELECT DISTINCT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Confirmed"
แสดงหมายเลขอพาร์ตเมนต์ที่แตกต่างกันของอพาร์ตเมนต์ที่ได้จองพร้อมรหัสสถานะ "ยืนยันแล้ว"
Show the distinct apartment numbers of the apartments that have bookings with status code "Confirmed".
CREATE TABLE Apartment_Bookings (apt_id VARCHAR, booking_status_code VARCHAR); CREATE TABLE Apartments (apt_id VARCHAR)
SELECT AVG(room_count) FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Provisional"
แสดงจำนวนห้องพักโดยเฉลี่ยของอพาร์ทเมนท์ที่มีรหัสสถานะการจอง "ชั่วคราว"
Show the average room count of the apartments that have booking status code "Provisional".
CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, guest_id VARCHAR); CREATE TABLE Guests (guest_first_name VARCHAR, guest_id VARCHAR)
SELECT T2.guest_first_name, T1.booking_start_date, T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id
แสดงชื่อผู้เข้าพัก วันที่เริ่มต้น และวันที่สิ้นสุดของการจองอพาร์ทเมนท์ทั้งหมด
Show the guest first names, start dates, and end dates of all the apartment bookings.