context
stringlengths 27
489
| answer
stringlengths 18
557
| question_th
stringlengths 8
226
| question_en
stringlengths 12
244
|
---|---|---|---|
CREATE TABLE Treatments (professional_id VARCHAR, treatment_type_code VARCHAR); CREATE TABLE Treatment_types (treatment_type_description VARCHAR, treatment_type_code VARCHAR); CREATE TABLE professionals (first_name VARCHAR, professional_id VARCHAR)
|
SELECT DISTINCT T1.first_name, T3.treatment_type_description FROM professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id JOIN Treatment_types AS T3 ON T2.treatment_type_code = T3.treatment_type_code
|
ระบุชื่อของผู้เชี่ยวชาญทั้งหมดพร้อมกับคำอธิบายการรักษาที่พวกเขาได้ทำ
|
List the first name of all the professionals along with the description of the treatment they have done.
|
CREATE TABLE singer (Name VARCHAR, Net_Worth_Millions VARCHAR)
|
SELECT Name FROM singer ORDER BY Net_Worth_Millions
|
รายชื่อนักร้องเรียงตามมูลค่าสุทธิจากน้อยไปมาก
|
List the name of singers in ascending order of net worth.
|
CREATE TABLE singer (Birth_Year VARCHAR, Citizenship VARCHAR)
|
SELECT Birth_Year, Citizenship FROM singer
|
นักร้องเกิดปีอะไรและสัญชาติอะไร
|
What are the birth year and citizenship of singers?
|
CREATE TABLE singer (Name VARCHAR, Citizenship VARCHAR)
|
SELECT Name FROM singer WHERE Citizenship <> "France"
|
รายชื่อนักร้องที่ไม่มีสัญชาติ "ฝรั่งเศส"
|
List the name of singers whose citizenship is not "France".
|
CREATE TABLE singer (Name VARCHAR, Birth_Year VARCHAR)
|
SELECT Name FROM singer WHERE Birth_Year = 1948 OR Birth_Year = 1949
|
แสดงชื่อนักร้องที่มีปีเกิดเป็น พ.ศ. 2491 หรือ พ.ศ. 2492?
|
Show the name of singers whose birth year is either 1948 or 1949?
|
CREATE TABLE singer (Name VARCHAR, Net_Worth_Millions VARCHAR)
|
SELECT Name FROM singer ORDER BY Net_Worth_Millions DESC LIMIT 1
|
นักร้องที่มีมูลค่าสุทธิมากที่สุดชื่ออะไร?
|
What is the name of the singer with the largest net worth?
|
CREATE TABLE singer (Citizenship VARCHAR)
|
SELECT Citizenship, COUNT(*) FROM singer GROUP BY Citizenship
|
แสดงสัญชาติของนักร้องที่แตกต่างกันและจำนวนนักร้องของแต่ละสัญชาติ
|
Show different citizenship of singers and the number of singers of each citizenship.
|
CREATE TABLE singer (Citizenship VARCHAR)
|
SELECT Citizenship FROM singer GROUP BY Citizenship ORDER BY COUNT(*) DESC LIMIT 1
|
กรุณาแสดงสัญชาติของนักร้องที่พบบ่อยที่สุด
|
Please show the most common citizenship of singers.
|
CREATE TABLE singer (citizenship VARCHAR)
|
SELECT citizenship FROM singer GROUP BY citizenship ORDER BY COUNT(*) DESC LIMIT 1
|
สัญชาตินักร้องที่พบบ่อยที่สุดคืออะไร?
|
What is the most common singer citizenship ?
|
CREATE TABLE singer (Citizenship VARCHAR, Net_Worth_Millions INTEGER)
|
SELECT Citizenship, MAX(Net_Worth_Millions) FROM singer GROUP BY Citizenship
|
แสดงสัญชาติที่แตกต่างกันและมูลค่าสุทธิสูงสุดของนักร้องในแต่ละสัญชาติ
|
Show different citizenships and the maximum net worth of singers of each citizenship.
|
CREATE TABLE singer (Name VARCHAR, Singer_ID VARCHAR); CREATE TABLE song (Title VARCHAR, Singer_ID VARCHAR)
|
SELECT T2.Title, T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID
|
แสดงชื่อเพลงและชื่อนักร้อง
|
Show titles of songs and names of singers.
|
CREATE TABLE song (Singer_ID VARCHAR, Sales INTEGER); CREATE TABLE singer (Name VARCHAR, Singer_ID VARCHAR)
|
SELECT DISTINCT T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID WHERE T2.Sales > 300000
|
แสดงรายชื่อนักร้องที่มีเพลงที่มียอดขายมากกว่า 300,000 เพลง
|
Show distinct names of singers that have songs with sales more than 300000.
|
CREATE TABLE song (Singer_ID VARCHAR); CREATE TABLE singer (Name VARCHAR, Singer_ID VARCHAR)
|
SELECT T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID GROUP BY T1.Name HAVING COUNT(*) > 1
|
แสดงชื่อนักร้องที่มีมากกว่าหนึ่งเพลง
|
Show the names of singers that have more than one song.
|
CREATE TABLE singer (Name VARCHAR, Singer_ID VARCHAR); CREATE TABLE song (Sales INTEGER, Singer_ID VARCHAR)
|
SELECT T1.Name, SUM(T2.Sales) FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID GROUP BY T1.Name
|
แสดงชื่อนักร้องและยอดขายรวมของเพลง
|
Show the names of singers and the total sales of their songs.
|
CREATE TABLE song (Name VARCHAR, Singer_ID VARCHAR); CREATE TABLE singer (Name VARCHAR, Singer_ID VARCHAR)
|
SELECT Name FROM singer WHERE NOT Singer_ID IN (SELECT Singer_ID FROM song)
|
รายชื่อนักร้องที่ไม่มีเพลงใดๆ
|
List the name of singers that do not have any song.
|
CREATE TABLE singer (Citizenship VARCHAR, Birth_Year INTEGER)
|
SELECT Citizenship FROM singer WHERE Birth_Year < 1945 INTERSECT SELECT Citizenship FROM singer WHERE Birth_Year > 1955
|
แสดงสัญชาติของนักร้องที่เกิดก่อนปี พ.ศ. 2488 และหลังปี พ.ศ. 2498
|
Show the citizenship shared by singers with birth year before 1945 and after 1955.
|
CREATE TABLE Other_Available_Features (Id VARCHAR)
|
SELECT COUNT(*) FROM Other_Available_Features
|
มีทั้งหมดกี่คุณสมบัติที่มีอยู่?
|
How many available features are there in total?
|
CREATE TABLE Other_Available_Features (feature_type_code VARCHAR, feature_name VARCHAR); CREATE TABLE Ref_Feature_Types (feature_type_name VARCHAR, feature_type_code VARCHAR)
|
SELECT T2.feature_type_name FROM Other_Available_Features AS T1 JOIN Ref_Feature_Types AS T2 ON T1.feature_type_code = T2.feature_type_code WHERE T1.feature_name = "AirCon"
|
ชื่อฟีเจอร์ของฟีเจอร์ AirCon คืออะไร?
|
What is the feature type name of feature AirCon?
|
CREATE TABLE Properties (property_type_code VARCHAR); CREATE TABLE Ref_Property_Types (property_type_description VARCHAR, property_type_code VARCHAR)
|
SELECT T2.property_type_description FROM Properties AS T1 JOIN Ref_Property_Types AS T2 ON T1.property_type_code = T2.property_type_code GROUP BY T1.property_type_code
|
แสดงคำอธิบายประเภทคุณสมบัติของคุณสมบัติที่เป็นของรหัสนั้น
|
Show the property type descriptions of properties belonging to that code.
|
CREATE TABLE Properties (property_name VARCHAR, property_type_code VARCHAR, room_count VARCHAR)
|
SELECT property_name FROM Properties WHERE property_type_code = "House" UNION SELECT property_name FROM Properties WHERE property_type_code = "Apartment" AND room_count > 1
|
คุณสมบัติที่เป็นบ้านหรืออพาร์ตเมนต์ที่มีมากกว่า 1 ห้องชื่ออะไร
|
What are the names of properties that are either houses or apartments with more than 1 room?
|
CREATE TABLE table_10015132_16 (nationality VARCHAR, player VARCHAR)
|
SELECT nationality FROM table_10015132_16 WHERE player = "Terrence Ross"
|
สัญชาติของเทอร์เรนซ์ รอสส์คืออะไร
|
What is terrence ross' nationality
|
CREATE TABLE table_10015132_16 (school_club_team VARCHAR, years_in_toronto VARCHAR)
|
SELECT school_club_team FROM table_10015132_16 WHERE years_in_toronto = "1995-96"
|
สโมสรใดอยู่ในโตรอนโต 1995-96
|
What clu was in toronto 1995-96
|
CREATE TABLE table_10015132_16 (school_club_team VARCHAR, years_in_toronto VARCHAR)
|
SELECT school_club_team FROM table_10015132_16 WHERE years_in_toronto = "2003-06"
|
สโมสรใดอยู่ในโตรอนโต 2546-06
|
which club was in toronto 2003-06
|
CREATE TABLE table_10015132_16 (school_club_team VARCHAR, player VARCHAR)
|
SELECT COUNT(school_club_team) FROM table_10015132_16 WHERE player = "Jalen Rose"
|
มีโรงเรียนหรือทีมกี่แห่งที่มีจาเลนลุกขึ้น
|
how many schools or teams had jalen rose
|
CREATE TABLE table_10083598_1 (round VARCHAR, circuit VARCHAR)
|
SELECT round FROM table_10083598_1 WHERE circuit = "Assen"
|
Assen จัดขึ้นที่ไหน?
|
Where was Assen held?
|
CREATE TABLE table_10083598_1 (no VARCHAR, pole_position VARCHAR)
|
SELECT COUNT(no) FROM table_10083598_1 WHERE pole_position = "Kevin Curtain"
|
Kevin Curtain ชนะการแข่งขันหมายเลขเท่าไร?
|
What was the number of race that Kevin Curtain won?
|
CREATE TABLE table_10083598_1 (date VARCHAR, circuit VARCHAR)
|
SELECT date FROM table_10083598_1 WHERE circuit = "Misano"
|
การแข่งขันที่มิซาโนะวันที่เท่าไหร่?
|
What was the date of the race in Misano?
|
CREATE TABLE table_1013129_2 (position VARCHAR, college_junior_club_team VARCHAR)
|
SELECT COUNT(position) FROM table_1013129_2 WHERE college_junior_club_team = "Sherbrooke Faucons (QMJHL)"
|
Sherbrooke Faucons (qmjhl) ระบุตำแหน่งที่แตกต่างกันกี่ตำแหน่งในร่าง?
|
How many different positions did Sherbrooke Faucons (qmjhl) provide in the draft?
|
CREATE TABLE table_1013129_2 (nationality VARCHAR, college_junior_club_team VARCHAR)
|
SELECT nationality FROM table_1013129_2 WHERE college_junior_club_team = "Thunder Bay Flyers (USHL)"
|
ผู้เล่นที่เลือกจาก Thunder Bay Flyers (ushl) มีสัญชาติอะไรบ้าง
|
What are the nationalities of the player picked from Thunder Bay Flyers (ushl)
|
CREATE TABLE table_1013129_2 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
|
SELECT COUNT(college_junior_club_team) FROM table_1013129_2 WHERE nhl_team = "Washington Capitals"
|
มีทีมวิทยาลัย/จูเนียร์/สโมสรที่แตกต่างกันกี่ทีมที่จัดหาผู้เล่นให้กับทีม Washington Capitals NHL
|
How many different college/junior/club teams provided a player to the Washington Capitals NHL Team?
|
CREATE TABLE table_1013129_3 (nationality VARCHAR, nhl_team VARCHAR)
|
SELECT COUNT(nationality) FROM table_1013129_3 WHERE nhl_team = "New Jersey Devils"
|
ผู้เล่นของนิวเจอร์ซีย์เดวิลส์มาจากกี่เชื้อชาติ?
|
How many different nationalities do the players of New Jersey Devils come from?
|
CREATE TABLE table_1013129_3 (pick VARCHAR, player VARCHAR)
|
SELECT pick FROM table_1013129_3 WHERE player = "Dorain Anneck"
|
หมายเลขเลือกของ Dorain Anneneck คืออะไร?
|
What's Dorain Anneck's pick number?
|
CREATE TABLE table_1013129_3 (nationality VARCHAR, nhl_team VARCHAR)
|
SELECT nationality FROM table_1013129_3 WHERE nhl_team = "Vancouver Canucks"
|
นักเตะแวนคูเวอร์ คานัคส์ มีสัญชาติอะไร?
|
What is the nationality of the player from Vancouver Canucks?
|
CREATE TABLE table_1013129_3 (pick VARCHAR, college_junior_club_team VARCHAR)
|
SELECT pick FROM table_1013129_3 WHERE college_junior_club_team = "Springfield Olympics (NEJHL)"
|
ผู้เล่นจาก Springfield Olympics (Nejhl) เลือกเบอร์อะไร?
|
What's the pick number of the player from Springfield Olympics (Nejhl)?
|
CREATE TABLE table_1014206_2 (launched VARCHAR, laid_down VARCHAR)
|
SELECT launched FROM table_1014206_2 WHERE laid_down = "September 1, 1964"
|
เรือที่ปล่อยเมื่อวันที่ 1 กันยายน พ.ศ. 2507 เปิดตัวเมื่อใด
|
When were the ships launched that were laid down on september 1, 1964?
|
CREATE TABLE table_1014206_2 (_number VARCHAR, commissioned VARCHAR)
|
SELECT _number FROM table_1014206_2 WHERE commissioned = "December 18, 1965"
|
ระบุ # สำหรับเรือที่เข้าประจำการเมื่อวันที่ 18 ธันวาคม พ.ศ. 2508
|
List the # for ships commissioned on december 18, 1965.
|
CREATE TABLE table_1014206_2 (_number VARCHAR, commissioned VARCHAR)
|
SELECT _number FROM table_1014206_2 WHERE commissioned = "September 30, 1967"
|
ระบุ # สำหรับเรือที่เข้าประจำการเมื่อวันที่ 30 กันยายน พ.ศ. 2510
|
List the # for ships commissioned on september 30, 1967.
|
CREATE TABLE table_1014206_2 (laid_down VARCHAR, commissioned VARCHAR)
|
SELECT laid_down FROM table_1014206_2 WHERE commissioned = "October 29, 1965"
|
เรือถูกวางลงซึ่งเข้าประจำการในวันที่ 29 ตุลาคม 1965 เมื่อใด
|
When were ships laid down that were commissioned on october 29, 1965?
|
CREATE TABLE table_1015521_2 (commonwealth_equivalent VARCHAR, rank_in_spanish VARCHAR)
|
SELECT commonwealth_equivalent FROM table_1015521_2 WHERE rank_in_spanish = "Coronel"
|
เจ้าหน้าที่ชันสูตรศพชาวสเปนสามารถพูดถึงอะไรได้บ้างในกองทัพเครือจักรภพ?
|
What could a spanish coronel be addressed as in the commonwealth military?
|
CREATE TABLE table_1015521_2 (rank_in_english VARCHAR, commonwealth_equivalent VARCHAR)
|
SELECT rank_in_english FROM table_1015521_2 WHERE commonwealth_equivalent = "Group Captain"
|
ขอรายชื่อตำแหน่งเจ้าหน้าที่สเปนทั้งหมดที่สามารถได้รับการยอมรับในฐานะกัปตันกลุ่มเป็นภาษาอังกฤษ
|
Give me a list of all spanish officer titles that could receive recognition as group captain in english
|
CREATE TABLE table_1015521_2 (us_air_force_equivalent VARCHAR, commonwealth_equivalent VARCHAR)
|
SELECT us_air_force_equivalent FROM table_1015521_2 WHERE commonwealth_equivalent = "Pilot Officer"
|
หากคุณเป็นนักบินในเครือจักรภพ คุณจะเรียกว่าอะไรในกองทัพอากาศสหรัฐฯ
|
If you are a pilot officer in the commonwealth then what will you called as in the US air force?
|
CREATE TABLE table_1015521_2 (commonwealth_equivalent VARCHAR, us_air_force_equivalent VARCHAR)
|
SELECT commonwealth_equivalent FROM table_1015521_2 WHERE us_air_force_equivalent = "Major General"
|
หากคุณเป็นนายพลตรีในกองทัพอากาศสหรัฐฯ คุณจะได้รับยศอะไรในกองทัพอากาศของเครือจักรภพ?
|
If you're a major general in the US air force then what ranking will you receive in the commonwealth's air force?
|
CREATE TABLE table_1015521_2 (rank_in_spanish VARCHAR, rank_in_english VARCHAR)
|
SELECT rank_in_spanish FROM table_1015521_2 WHERE rank_in_english = "Major"
|
หากคุณได้รับการจัดอันดับเป็นเอกในกองทัพอังกฤษ แล้วกองทัพสเปนจะเรียกคุณว่าอะไร?
|
If you get a ranking as major in the english military then what would the spanish military address you as?
|
CREATE TABLE table_1024710_2 (province VARCHAR, electorate VARCHAR)
|
SELECT province FROM table_1024710_2 WHERE electorate = "Grey and Bell"
|
จังหวัดไหนเป็นสีเทาและเขตเลือกตั้งระฆังอยู่
|
Which province is grey and bell electorate in
|
CREATE TABLE table_1024710_2 (province VARCHAR, electorate VARCHAR)
|
SELECT province FROM table_1024710_2 WHERE electorate = "Bay of Islands"
|
จังหวัดใดเป็นอ่าวหมู่เกาะ
|
Which province is bay of islands in
|
CREATE TABLE table_10294071_1 (total_w_l VARCHAR, doubles_w_l VARCHAR)
|
SELECT COUNT(total_w_l) FROM table_10294071_1 WHERE doubles_w_l = "11–11"
|
คือจำนวนรวมของ w-l ทั้งหมด โดยที่ w-l สองเท่าคือ 11–11
|
what is the total number of total w–l where doubles w–l is 11–11
|
CREATE TABLE table_10294071_1 (singles_w_l VARCHAR, doubles_w_l VARCHAR)
|
SELECT COUNT(singles_w_l) FROM table_10294071_1 WHERE doubles_w_l = "11–14"
|
จำนวนคนโสดทั้งหมด w–l คือเท่าใด โดยที่คนโสด w–l คือ 11–14
|
what is the total number of singles w–l where doubles w–l is 11–14
|
CREATE TABLE table_10294071_1 (total_w_l VARCHAR, player VARCHAR)
|
SELECT total_w_l FROM table_10294071_1 WHERE player = "Boro Jovanović Category:Articles with hCards"
|
ค่า w–l ทั้งหมดคือเท่าใด โดยที่ผู้เล่นคือ boro jovanović หมวดหมู่:บทความที่มี hcards
|
what's the total w–l where player is boro jovanović category:articles with hcards
|
CREATE TABLE table_10294071_1 (ties_played INTEGER, player VARCHAR)
|
SELECT MAX(ties_played) FROM table_10294071_1 WHERE player = "Josip Palada Category:Articles with hCards"
|
ความสัมพันธ์สูงสุดที่เล่นโดยที่ผู้เล่นคือหมวดหมู่ josip palada:บทความที่มี hcards
|
what is the maximum ties played where player is josip palada category:articles with hcards
|
CREATE TABLE table_10294071_1 (ties_played VARCHAR, total_w_l VARCHAR)
|
SELECT COUNT(ties_played) FROM table_10294071_1 WHERE total_w_l = "38–24"
|
จำนวนเสมอทั้งหมดที่เล่นโดยที่ผลรวม w–l คือ 38–24
|
what is the total number of ties played where total w–l is 38–24
|
CREATE TABLE table_10333757_1 (frequency VARCHAR, market_rank VARCHAR)
|
SELECT COUNT(frequency) FROM table_10333757_1 WHERE market_rank = "Burlington - Plattsburgh , Vermont - New York /143"
|
ความถี่ที่ตลาด/อันดับของ Burlington - Plattsburgh , Vermont - New York /143 คืออะไร?
|
What is the Frequency at the Market/Rank of Burlington - Plattsburgh , Vermont - New York /143?
|
CREATE TABLE table_10333757_1 (branding VARCHAR, group_owner VARCHAR)
|
SELECT branding FROM table_10333757_1 WHERE group_owner = "Qantam of Cape Cod, LLC"
|
การสร้างแบรนด์สำหรับเจ้าของกลุ่ม Qantam of Cape Cod, LLC คืออะไร?
|
What is the Branding for Group Owner Qantam of Cape Cod, LLC?
|
CREATE TABLE table_10333757_1 (branding VARCHAR, calls VARCHAR)
|
SELECT branding FROM table_10333757_1 WHERE calls = "WRKO"
|
WRKO call ใช้การสร้างแบรนด์แบบใด
|
What Branding does WRKO calls use?
|
CREATE TABLE table_10333757_1 (format VARCHAR, branding VARCHAR)
|
SELECT format FROM table_10333757_1 WHERE branding = "1290 WKBK W281AU 104.1"
|
รูปแบบการสร้างแบรนด์ของ 1290 wkbk w281au 104.1 คืออะไร
|
What is the Format for Branding of 1290 wkbk w281au 104.1?
|
CREATE TABLE table_10333757_1 (market_rank VARCHAR, calls VARCHAR)
|
SELECT market_rank FROM table_10333757_1 WHERE calls = "WCRN"
|
ตลาด/อันดับใดที่เกี่ยวข้องกับการโทร WCRN
|
Which Market/Rank is associated with WCRN calls?
|
CREATE TABLE table_10333757_1 (frequency VARCHAR, calls VARCHAR)
|
SELECT frequency FROM table_10333757_1 WHERE calls = "WEGP"
|
ความถี่ใดที่ใช้สำหรับการโทร WEGP
|
Which Frequency is used for WEGP calls?
|
CREATE TABLE table_10408617_5 (bts_retail_price__regulated_ VARCHAR, tariff_code VARCHAR)
|
SELECT bts_retail_price__regulated_ FROM table_10408617_5 WHERE tariff_code = "ff0 PRS"
|
ราคาขายปลีกที่ได้รับการควบคุมสำหรับรหัสภาษี ff0 prs คือเท่าใด
|
What is the regulated retail price for the tariff code ff0 prs?
|
CREATE TABLE table_10408617_5 (approx_premium VARCHAR, tariff_code VARCHAR)
|
SELECT approx_premium FROM table_10408617_5 WHERE tariff_code = "g9"
|
เบี้ยประกันภัยที่เกี่ยวข้องกับรหัสภาษี g9 คืออะไร?
|
What is the premium associated with tariff code g9?
|
CREATE TABLE table_10408617_5 (tariff_code VARCHAR, bts_retail_price__regulated_ VARCHAR)
|
SELECT COUNT(tariff_code) FROM table_10408617_5 WHERE bts_retail_price__regulated_ = "2p/min or inclusive"
|
มีรหัสภาษีกี่รหัสที่มีราคาขายปลีก bts 2 p/min หรือรวมอยู่ด้วย
|
How many tariff codes have a bts retail price of 2p/min or inclusive?
|
CREATE TABLE table_10408617_5 (tariff_code VARCHAR, bts_retail_price__regulated_ VARCHAR)
|
SELECT COUNT(tariff_code) FROM table_10408617_5 WHERE bts_retail_price__regulated_ = "2.553p/min"
|
มีรหัสภาษีกี่รหัสที่มีราคาขายปลีก bts 2.553p/min
|
How many tariff codes have a bts retail price of 2.553p/min?
|
CREATE TABLE table_10408617_5 (prefixes VARCHAR, scheme VARCHAR, approx_premium VARCHAR)
|
SELECT prefixes FROM table_10408617_5 WHERE scheme = "Pence per minute, fixed at all times" AND approx_premium = "3p/min"
|
คำนำหน้าใดมีราคาเป็นเพนนีต่อนาที แก้ไขตลอดเวลาด้วยพรีเมี่ยม 3p/นาที
|
What prefixes are priced at pence per minute, fixed at all times with a premium of 3p/min?
|
CREATE TABLE table_10408617_5 (bts_retail_price__regulated_ VARCHAR, tariff_code VARCHAR)
|
SELECT bts_retail_price__regulated_ FROM table_10408617_5 WHERE tariff_code = "g10"
|
ราคาขายปลีก bts (ควบคุม) สำหรับรหัสภาษี g10 คือเท่าไร
|
What is the bts retail price (regulated) for tariff code g10?
|
CREATE TABLE table_10432351_1 (radius__r___ INTEGER)
|
SELECT MIN(radius__r___) FROM table_10432351_1
|
รัศมีที่เล็กที่สุดที่เป็นไปได้คืออะไร?
|
What is the smallest possible radius?
|
CREATE TABLE table_10432351_1 (spectral_type VARCHAR, star__pismis24__number_ VARCHAR)
|
SELECT spectral_type FROM table_10432351_1 WHERE star__pismis24__number_ = "1SW"
|
สเปกตรัมของดาว mismis24-# คือ 1sw มีประเภทใดบ้าง
|
What are all the spectral types for star mismis24-# is 1sw?
|
CREATE TABLE table_10432351_1 (mass__m___ INTEGER, radius__r___ VARCHAR)
|
SELECT MIN(mass__m___) FROM table_10432351_1 WHERE radius__r___ = 10
|
หากรัศมีคือ 10 มวลต่ำสุดที่เป็นไปได้คือเท่าใด
|
If a radius is 10, what is the lowest possible mass?
|
CREATE TABLE table_105344_2 (seat_factor VARCHAR, year VARCHAR)
|
SELECT seat_factor FROM table_105344_2 WHERE year = 2006
|
มีที่นั่งเต็มกี่เปอร์เซ็นต์ในปี 2549
|
What percentage of seats were filled in 2006?
|
CREATE TABLE table_105344_2 (flying_hours VARCHAR, aircraft_kilometers INTEGER)
|
SELECT flying_hours FROM table_105344_2 WHERE aircraft_kilometers > 64379058.0
|
ในแต่ละปีที่บินมากกว่า 64379058.0 กิโลเมตร มีกี่ชั่วโมง?
|
How many hours were flown in each of the years where more than 64379058.0 kilometers were flown?
|
CREATE TABLE table_105344_2 (aircraft_kilometers INTEGER, departures VARCHAR)
|
SELECT MAX(aircraft_kilometers) FROM table_105344_2 WHERE departures = 17096
|
จากปีที่มีเที่ยวบินออก 1,7096 ลำพอดี เครื่องบินบินได้มากที่สุดกี่กิโลเมตร?
|
Of the years that had exactly 17096 departures, what is the greatest number of aircraft kilometers flown?
|
CREATE TABLE table_10548224_1 (winning_team VARCHAR, losing_team VARCHAR)
|
SELECT winning_team FROM table_10548224_1 WHERE losing_team = "New York Yankees"
|
ทีมใดชนะนิวยอร์กแยงกี้?
|
Which winning team beat the New York Yankees?
|
CREATE TABLE table_10548224_1 (final_score VARCHAR, date_contested VARCHAR)
|
SELECT final_score FROM table_10548224_1 WHERE date_contested = "February 1, 2009"
|
คะแนนสุดท้ายของเกมที่แข่งขันเมื่อวันที่ 1 กุมภาพันธ์ พ.ศ. 2552 เป็นเท่าใด
|
What was the final score for the game that was contested on February 1, 2009?
|
CREATE TABLE table_10548224_1 (sport VARCHAR, final_score VARCHAR)
|
SELECT sport FROM table_10548224_1 WHERE final_score = "3-2"
|
กีฬาใดมีสกอร์สุดท้าย 3-2?
|
What sport had a final score of 3-2?
|
CREATE TABLE table_10548224_1 (winning_team VARCHAR, date_contested VARCHAR)
|
SELECT winning_team FROM table_10548224_1 WHERE date_contested = "February 1, 2009"
|
ทีมใดเป็นผู้ชนะในเกมที่แข่งขันเมื่อวันที่ 1 กุมภาพันธ์ พ.ศ. 2552
|
Who was the winning team of the game that was contested on February 1, 2009?
|
CREATE TABLE table_10548224_1 (losing_team VARCHAR, date_contested VARCHAR)
|
SELECT losing_team FROM table_10548224_1 WHERE date_contested = "February 1, 2004"
|
ทีมที่แพ้ในเกมที่แข่งขันเมื่อวันที่ 1 กุมภาพันธ์ พ.ศ. 2547 คือใคร?
|
Who was the losing team of the game that was contested on February 1, 2004?
|
CREATE TABLE table_1057262_2 (total INTEGER, crop__kilotonnes_ VARCHAR)
|
SELECT MIN(total) FROM table_1057262_2 WHERE crop__kilotonnes_ = "s Lupin"
|
ยอดรวมขั้นต่ำคือเท่าใดเมื่อพืชผล (กิโลตัน) เป็นลูปิน
|
what's the minimum total with crop (kilotonnes) being s lupin
|
CREATE TABLE table_1057262_2 (new_south_wales VARCHAR, crop__kilotonnes_ VARCHAR)
|
SELECT new_south_wales FROM table_1057262_2 WHERE crop__kilotonnes_ = "Canola"
|
นิวเซาท์เวลส์ที่มีพืชผล (กิโลตัน) เป็นคาโนลาคืออะไร
|
what's the new south wales with crop (kilotonnes) being canola
|
CREATE TABLE table_1057262_2 (south_australia VARCHAR, victoria VARCHAR)
|
SELECT COUNT(south_australia) FROM table_1057262_2 WHERE victoria = 2173
|
ออสเตรเลียใต้ซึ่งมีมูลค่าวิกตอเรียอยู่ที่ 2173 ทั้งหมดคือเท่าไร
|
what's the total number of south australia with victoria value of 2173
|
CREATE TABLE table_1057262_2 (tasmania INTEGER)
|
SELECT MIN(tasmania) FROM table_1057262_2
|
ค่าแทสเมเนียขั้นต่ำคือเท่าไร
|
what's the minimum tasmania value
|
CREATE TABLE table_1057262_2 (tasmania VARCHAR, new_south_wales VARCHAR)
|
SELECT COUNT(tasmania) FROM table_1057262_2 WHERE new_south_wales = 190
|
แทสเมเนียที่มีผลผลิตนิวเซาท์เวลส์ทั้งหมดเป็นจำนวน 190 กิโลตัน
|
what's the total number of tasmania with new south wales crop of 190 kilotonnes
|
CREATE TABLE table_1058787_1 (significant_relationship VARCHAR, virtues VARCHAR)
|
SELECT COUNT(significant_relationship) FROM table_1058787_1 WHERE virtues = "Will"
|
รายการความสัมพันธ์ที่สำคัญจะมีคุณธรรมกี่รายการ?
|
How many significant relationships list Will as a virtue?
|
CREATE TABLE table_1058787_1 (examples VARCHAR, existential_question_ VARCHAR, _not_in_citation_given_ VARCHAR)
|
SELECT examples FROM table_1058787_1 WHERE existential_question_[_not_in_citation_given_] = "Can I Love?"
|
ตัวอย่างใดที่ถามคำถามอัตถิภาวนิยม "ฉันสามารถรักได้หรือไม่"
|
Which examples ask the existential question "Can I Love?"
|
CREATE TABLE table_1059743_2 (rank VARCHAR, points VARCHAR)
|
SELECT COUNT(rank) FROM table_1059743_2 WHERE points = "796.7"
|
มีกี่ประเทศที่ได้ 796.7 คะแนน
|
How many countries got 796.7 points?
|
CREATE TABLE table_1059743_2 (group_stage VARCHAR, points VARCHAR)
|
SELECT COUNT(group_stage) FROM table_1059743_2 WHERE points = "177.2"
|
ในรอบแบ่งกลุ่มใดที่ได้ 177.2 คะแนน?
|
In what group stage were 177.2 points awarded?
|
CREATE TABLE table_1059743_2 (group_stage INTEGER, points VARCHAR)
|
SELECT MIN(group_stage) FROM table_1059743_2 WHERE points = "886.6"
|
กลุ่มไหนได้ต่ำสุดที่ได้ 886.6 คะแนน?
|
What is the lowest group to earn 886.6 points?
|
CREATE TABLE table_1059743_2 (member_association VARCHAR, points VARCHAR)
|
SELECT COUNT(member_association) FROM table_1059743_2 WHERE points = "177.2"
|
มีกี่ประเทศที่ได้รับ 177.2 คะแนน
|
How many countries earned 177.2 points?
|
CREATE TABLE table_10586064_2 (county VARCHAR, total VARCHAR)
|
SELECT county FROM table_10586064_2 WHERE total = "18,900 (R)"
|
ประเทศใดมีทั้งหมด 18,900 (r)?
|
What country had the total 18,900 (r)?
|
CREATE TABLE table_10586064_2 (county VARCHAR, precincts VARCHAR)
|
SELECT county FROM table_10586064_2 WHERE precincts = 515
|
เขต 515 คืออะไร?
|
What is the county of precints 515?
|
CREATE TABLE table_10601843_2 (city VARCHAR, capacity VARCHAR)
|
SELECT city FROM table_10601843_2 WHERE capacity = 41903
|
เมืองใดมีความจุ 41903?
|
Which city has a capacity of 41903?
|
CREATE TABLE table_10601843_2 (capacity INTEGER, stadium VARCHAR)
|
SELECT MAX(capacity) FROM table_10601843_2 WHERE stadium = "Otkrytie Arena"
|
ความจุสูงสุดของสนามกีฬา Otkrytie Arena คือเท่าใด?
|
What is the maximum capacity of the Otkrytie Arena stadium?
|
CREATE TABLE table_10601843_2 (opening INTEGER, tenant VARCHAR)
|
SELECT MIN(opening) FROM table_10601843_2 WHERE tenant = "Bursaspor"
|
สนามกีฬาที่บูร์ซาสปอร์เป็นผู้เช่าเปิดเมื่อใด?
|
When did the stadium where Bursaspor is the tenant open?
|
CREATE TABLE table_10601843_2 (tenant VARCHAR, city VARCHAR)
|
SELECT COUNT(tenant) FROM table_10601843_2 WHERE city = "Samsun"
|
ในเมืองซัมซันมีผู้เช่ากี่คน?
|
How many tenants are there in the city of Samsun?
|
CREATE TABLE table_10638523_1 (shivalik_zone VARCHAR, mid_hill_zone VARCHAR)
|
SELECT shivalik_zone FROM table_10638523_1 WHERE mid_hill_zone = "10%"
|
เปอร์เซ็นต์ของโซนศิวลิกโดยที่เปอร์เซ็นต์ของโซน Mid-Hill คือ 10%?
|
What is the percentage of the Shivalik Zone where the percentage of the Mid-Hill Zone is 10%?
|
CREATE TABLE table_10638523_1 (mid_hill_zone VARCHAR, particulars_and_characteristics VARCHAR)
|
SELECT mid_hill_zone FROM table_10638523_1 WHERE particulars_and_characteristics = "Altitude"
|
สำหรับโซนกลางเขาสูงเท่าไร?
|
For mid-hill zone what is the altitude?
|
CREATE TABLE table_10638523_1 (trance__n_himalaya_zone VARCHAR, particulars_and_characteristics VARCHAR)
|
SELECT trance__n_himalaya_zone FROM table_10638523_1 WHERE particulars_and_characteristics = "Climatic conditions"
|
สภาพภูมิอากาศของเขตภวังค์หิมาลัยมีอะไรบ้าง?
|
What are the climatic conditions for the trance- n himalaya zone?
|
CREATE TABLE table_10638523_1 (trance__n_himalaya_zone VARCHAR, high_hill_zone VARCHAR)
|
SELECT trance__n_himalaya_zone FROM table_10638523_1 WHERE high_hill_zone = "25%"
|
ร้อยละของโซนมึนงงหิมาลัยที่สอดคล้องกับโซนเนินสูงคือ 25% เป็นเท่าใด
|
What is the percentage of the trance- n himalaya zone that corresponds with the high hill zone is 25%?
|
CREATE TABLE table_10644188_3 (state_represented VARCHAR, name VARCHAR)
|
SELECT state_represented FROM table_10644188_3 WHERE name = "Ted Stevens"
|
สถานะของ Ted Stevens เป็นอย่างไร?
|
What is the state of Ted Stevens?
|
CREATE TABLE table_10682862_68 (standard INTEGER, first_title VARCHAR)
|
SELECT MAX(standard) FROM table_10682862_68 WHERE first_title = 1992
|
มาตรฐานของประเทศที่คว้าแชมป์ครั้งแรกในปี 1992 คืออะไร?
|
What's the standard of the country who won its first title in 1992?
|
CREATE TABLE table_10682862_68 (players INTEGER)
|
SELECT MIN(players) FROM table_10682862_68
|
จำนวนผู้เล่นน้อยที่สุดคือเท่าไร?
|
What's the smallest number of players?
|
CREATE TABLE table_10682862_68 (last_title INTEGER)
|
SELECT MAX(last_title) FROM table_10682862_68
|
ประเทศใดได้รับตำแหน่งสุดท้ายครั้งสุดท้ายในปีใด
|
In what year was the last last title received, by any of the countries?
|
CREATE TABLE table_10710364_1 (religious_group VARCHAR, population__percentage_2001 VARCHAR)
|
SELECT religious_group FROM table_10710364_1 WHERE population__percentage_2001 = "0.72%"
|
กลุ่มศาสนาใดคิดเป็น 0.72% ของประชากรอินเดียในปี 2544
|
What religious groups made up 0.72% of the Indian population in 2001?
|
CREATE TABLE table_10718868_2 (original_air_date VARCHAR, no_in_season VARCHAR)
|
SELECT original_air_date FROM table_10718868_2 WHERE no_in_season = 15
|
ตอนที่ 15 ของซีซั่น 6 ออกอากาศตอนแรกเมื่อใด
|
What is the original air date for episode 15 of season 6?
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.