Funkce MySQL RIGHT() .
Příklad
Extrahujte 4 znaky z řetězce (začínající zprava):
SELECT RIGHT("SQL Tutorial is cool", 4) AS ExtractString;
Definice a použití
Funkce RIGHT() extrahuje počet znaků z řetězce (počínaje zprava).
Tip: Podívejte se také na funkci LEFT() .
Syntax
RIGHT(string, number_of_chars)
Hodnoty parametrů
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 |
Technické údaje
Pracuje v: | Od MySQL 4.0 |
---|
Další příklady
Příklad
Extrahujte 5 znaků z textu ve sloupci „CustomerName“ (začíná zprava):
SELECT RIGHT(CustomerName, 5) AS ExtractString
FROM Customers;