Função MySQL CHARACTER_LENGTH()
Exemplo
Retorna o comprimento da string:
SELECT CHARACTER_LENGTH("SQL Tutorial") AS LengthOfString;
Definição e uso
A função CHARACTER_LENGTH() retorna o comprimento de uma string (em caracteres).
Nota: Esta função é igual à função CHAR_LENGTH() .
Sintaxe
CHARACTER_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":
SELECT CHARACTER_LENGTH(CustomerName) AS LengthOfName
FROM Customers;