Answers for "How to find the string when the length of the string not known in MySQL"

SQL
3

mysql string length

-- Relevant for MySQL only

-- syntax
LENGTH(<your-string>)

-- example
LENGTH('CountCharacters') -- OUTPUT: 15
        123456789012345

-- example with query 
SELECT 'CountCharacters',LENGTH('CountCharacters')
FROM DUAL;

-- OUTPUT: CountCharacters, 15
Posted by: Guest on May-08-2020

Code answers related to "How to find the string when the length of the string not known in MySQL"

Code answers related to "SQL"

Browse Popular Code Answers by Language