Answers for "is there any function in mysql which gives the length of perticular column name?"

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 "is there any function in mysql which gives the length of perticular column name?"

Code answers related to "SQL"

Browse Popular Code Answers by Language