MySQL SUBSTRING() İşlevi
Örnek
Bir dizeden bir alt dize ayıklayın (5. konumdan başlayın, 3 karakter çıkarın):
SELECT SUBSTRING("SQL Tutorial", 5, 3) AS ExtractString;
Tanım ve Kullanım
SUBSTRING() işlevi, bir dizeden (herhangi bir konumdan başlayarak) bir alt dize çıkarır.
Not: SUBSTR () ve MID() işlevleri, SUBSTRING() işlevine eşittir.
Sözdizimi
SUBSTRING(string, start, length)
VEYA:
SUBSTRING(string FROM start FOR length)
Parametre Değerleri
Parameter | Description |
---|---|
string | Required. The string to extract from |
start | Required. The start position. Can be both a positive or negative number. If it is a positive number, this function extracts from the beginning of the string. If it is a negative number, this function extracts from the end of the string |
length | Optional. The number of characters to extract. If omitted, the whole string will be returned (from the start position) |
Teknik detaylar
Çalışır: | MySQL 4.0'dan |
---|
Daha fazla örnek
Örnek
Bir sütundaki metinden bir alt dize ayıklayın (2. konumdan başlayın, 5 karakter çıkarın):
SELECT SUBSTRING(CustomerName,
2, 5) AS ExtractString
FROM Customers;
Örnek
Bir dizeden bir alt dize ayıklayın (sondan başlayın, -5 konumunda, 5 karakter çıkarın):
SELECT SUBSTRING("SQL Tutorial", -5, 5) AS ExtractString;