Função MySQL SUBSTRING_INDEX()
Exemplo
Retorna uma substring de uma string antes que ocorra um número especificado de delimitador:
SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 1);
Definição e uso
A função SUBSTRING_INDEX() retorna uma substring de uma string antes que ocorra um número especificado de delimitador.
Sintaxe
SUBSTRING_INDEX(string, delimiter, number)
Valores de parâmetro
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. |
Detalhes técnicos
Trabalha em: | Do MySQL 4.0 |
---|
Mais exemplos
Exemplo
Retorna uma substring de uma string antes que ocorra um número especificado de delimitador:
SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 2);