Função MySQL RIGHT()
Exemplo
Extraia 4 caracteres de uma string (começando da direita):
SELECT RIGHT("SQL Tutorial is cool", 4) AS ExtractString;
Definição e uso
A função RIGHT() extrai um número de caracteres de uma string (começando da direita).
Dica: Veja também a função LEFT() .
Sintaxe
RIGHT(string, number_of_chars)
Valores de parâmetro
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 |
Detalhes técnicos
Trabalha em: | Do MySQL 4.0 |
---|
Mais exemplos
Exemplo
Extraia 5 caracteres do texto na coluna "CustomerName" (começando da direita):
SELECT RIGHT(CustomerName, 5) AS ExtractString
FROM Customers;