Get string length : String Length « String « SQL / MySQL






Get string length

/*
mysql> select length("123456");
+------------------+
| length("123456") |
+------------------+
|                6 |
+------------------+
1 row in set (0.00 sec)


*/  
select length("123456");

           
       








Related examples in the same category