MySQL SUBSTRING_INDEX() İşlevi
Örnek
Belirtilen sayıda sınırlayıcı oluşmadan önce bir dizenin alt dizesini döndür:
SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 1);
Tanım ve Kullanım
SUBSTRING_INDEX() işlevi, belirtilen sayıda sınırlayıcı oluşmadan önce bir dizenin alt dizesini döndürür.
Sözdizimi
SUBSTRING_INDEX(string, delimiter, number)
Parametre Değerleri
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. |
Teknik detaylar
Çalışır: | MySQL 4.0'dan |
---|
Daha fazla örnek
Örnek
Belirtilen sayıda sınırlayıcı oluşmadan önce bir dizenin alt dizesini döndür:
SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 2);