ฟังก์ชันMySQL SUBSTRING_INDEX()
ตัวอย่าง
ส่งกลับสตริงย่อยของสตริงก่อนที่จะมีตัวคั่นตามจำนวนที่ระบุ:
SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 1);
ความหมายและการใช้งาน
ฟังก์ชัน SUBSTRING_INDEX() ส่งกลับสตริงย่อยของสตริงก่อนที่จะมีตัวคั่นตามจำนวนที่ระบุ
ไวยากรณ์
SUBSTRING_INDEX(string, delimiter, number)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
string | Required. The original string |
delimiter | Required. The delimiter to search for |
number | Required. The number of times to search for the delimiter. Can be both a positive or negative number. If it is a positive number, this function returns all to the left of the delimiter. If it is a negative number, this function returns all to the right of the delimiter. |
รายละเอียดทางเทคนิค
ทำงานใน: | จาก MySQL 4.0 |
---|
ตัวอย่างเพิ่มเติม
ตัวอย่าง
ส่งกลับสตริงย่อยของสตริงก่อนที่จะมีตัวคั่นตามจำนวนที่ระบุ:
SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 2);