MySQL LENGTH() 函数
定义和用法
LENGTH() 函数返回字符串的长度(以字节为单位)。
语法
LENGTH(string)
参数值
参数 | 描述 |
---|---|
string | 必需。要计算长度的字符串 |
技术细节
工作于 | 从 MySQL 4.0 |
---|
更多例子
例子
返回 "CustomerName" 列中文本的长度(以字节为单位)
SELECT LENGTH(CustomerName) AS LengthOfName
FROM Customers;
亲自尝试 »
LENGTH() 函数返回字符串的长度(以字节为单位)。
LENGTH(string)
参数 | 描述 |
---|---|
string | 必需。要计算长度的字符串 |
工作于 | 从 MySQL 4.0 |
---|
返回 "CustomerName" 列中文本的长度(以字节为单位)
SELECT LENGTH(CustomerName) AS LengthOfName
FROM Customers;
亲自尝试 »
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]