MySQL LENGTH() 함수
예시
문자열의 길이를 바이트 단위로 반환합니다.
SELECT LENGTH("SQL Tutorial") AS LengthOfString;
정의 및 사용
LENGTH() 함수는 문자열의 길이(바이트)를 반환합니다.
통사론
LENGTH(string)
매개변수 값
Parameter | Description |
---|---|
string | Required. The string to count the length for |
기술적 세부 사항
작동: | MySQL 4.0에서 |
---|
더 많은 예
예시
"CustomerName" 열의 텍스트 길이를 바이트 단위로 반환합니다.
SELECT LENGTH(CustomerName) AS LengthOfName
FROM Customers;