SQL/MySQL/String/String Length
Get string length
/*
mysql> select length("123456");
+------------------+
| length("123456") |
+------------------+
| 6 |
+------------------+
1 row in set (0.00 sec)
*/
select length("123456");
/*
mysql> select length("123456");
+------------------+
| length("123456") |
+------------------+
| 6 |
+------------------+
1 row in set (0.00 sec)
*/
select length("123456");