MySQL RIGHT()ฟังก์ชั่น
ตัวอย่าง
แยกอักขระ 4 ตัวออกจากสตริง (เริ่มจากด้านขวา):
SELECT RIGHT("SQL Tutorial is cool", 4) AS ExtractString;
ความหมายและการใช้งาน
ฟังก์ชัน RIGHT() จะแยกอักขระจำนวนหนึ่งออกจากสตริง (เริ่มจากด้านขวา)
เคล็ดลับ:ดู ฟังก์ชันLEFT() ด้วย
ไวยากรณ์
RIGHT(string, number_of_chars)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
string | Required. The string to extract from |
number_of_chars | Required. The number of characters to extract. If this parameter is larger than the number of characters in string, this function will return string |
รายละเอียดทางเทคนิค
ทำงานใน: | จาก MySQL 4.0 |
---|
ตัวอย่างเพิ่มเติม
ตัวอย่าง
แยกอักขระ 5 ตัวจากข้อความในคอลัมน์ "CustomerName" (เริ่มจากด้านขวา):
SELECT RIGHT(CustomerName, 5) AS ExtractString
FROM Customers;