Função MySQL LENGTH()
Exemplo
Retorna o comprimento da string, em bytes:
SELECT LENGTH("SQL Tutorial") AS LengthOfString;
Definição e uso
A função LENGTH() retorna o comprimento de uma string (em bytes).
Sintaxe
LENGTH(string)
Valores de parâmetro
Parameter | Description |
---|---|
string | Required. The string to count the length for |
Detalhes técnicos
Trabalha em: | Do MySQL 4.0 |
---|
Mais exemplos
Exemplo
Retorne o comprimento do texto na coluna "CustomerName", em bytes:
SELECT LENGTH(CustomerName) AS LengthOfName
FROM Customers;