MySQL LENGTH() returns the length of a given string. MySQL의 LENGTH() 함수는 문자열의 길이를 출력해준다.
LENGTH(str) LENGTH(문자열)
Code
SELECT CustomerName, LENGTH(CustomerName) FROM Customers
Sample table: Customers
Sample Output