Função MySQL SUBSTRING()
Exemplo
Extraia uma substring de uma string (comece na posição 5, extraia 3 caracteres):
SELECT SUBSTRING("SQL Tutorial", 5, 3) AS ExtractString;
Definição e uso
A função SUBSTRING() extrai uma substring de uma string (começando em qualquer posição).
Nota: As funções SUBSTR() e MID() equivalem à função SUBSTRING().
Sintaxe
SUBSTRING(string, start, length)
OU:
SUBSTRING(string FROM start FOR length)
Valores de parâmetro
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) |
Detalhes técnicos
Trabalha em: | Do MySQL 4.0 |
---|
Mais exemplos
Exemplo
Extraia uma substring do texto em uma coluna (comece na posição 2, extraia 5 caracteres):
SELECT SUBSTRING(CustomerName,
2, 5) AS ExtractString
FROM Customers;
Exemplo
Extraia uma substring de uma string (comece do final, na posição -5, extraia 5 caracteres):
SELECT SUBSTRING("SQL Tutorial", -5, 5) AS ExtractString;