6
Is there any way to display the string size in a MYSQL result?
I need, for example, to know the size of a given string returned in a SELECT
with group_concat
.
What I want would be more or less like this example:
SELECT "nome", FUNCAO_PARA_OBTER_TAMANHO("nome")
I’d like to return something like:
nome | 4
length(name) does not return ?
– Luciano Azevedo