Função MySQL MID()
Exemplo
Extraia uma substring de uma string (comece na posição 5, extraia 3 caracteres):
SELECT MID("SQL Tutorial", 5, 3) AS ExtractString;
Definição e uso
A função MID() extrai uma substring de uma string (começando em qualquer posição).
Nota: As funções MID() e SUBSTR() são iguais à função SUBSTRING() .
Sintaxe
MID(string, start, 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 | Required. The number of characters to extract |
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 MID(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 MID("SQL Tutorial", -5, 5) AS ExtractString;