MySQL 的 BIT_LENGTH(~)
方法返回字符串的长度(以位为单位)。
参数
1. str
| string
我们要返回其长度的字符串。
返回值
输入字符串的长度(以位为单位)。
例子
考虑下表有关一些学生的信息:
student_id |
名称 |
名字 |
day_enrolled |
年龄 |
用户名 |
---|---|---|---|---|---|
1 |
Sky |
Towner |
2015-12-03 |
17 |
stowner1 |
2 |
Ben |
Davis |
2016-04-20 |
19 |
bdavis2 |
3 |
Travis |
Apple |
2018-08-14 |
18 |
tapple3 |
4 |
Arthur |
David |
2016-04-01 |
16 |
adavid4 |
5 |
Benjamin |
Town |
2014-01-01 |
17 |
btown5 |
可以使用此处的代码创建上述示例表。
基本用法
返回学生名字的长度(以位为单位):
SELECT BIT_LENGTH(fname)
FROM students;
-------------------+
| BIT_LENGTH(fname) |
+-------------------+
| 24 |
| 24 |
| 48 |
| 48 |
| 64 |
+-------------------+
每个字符都使用 1 个字节(8 位)表示,因为这些字符是 ASCII 字符。
要检查用于表示日语字符 'あ'
的位:
SELECT BIT_LENGTH('あ');
+-------------------+
| BIT_LENGTH('あ') |
+-------------------+
| 24 |
+-------------------+
日语字符'あ'
使用3个字节存储,因此长度为24位。
相关用法
- MySQL BIT_LENGTH()用法及代码示例
- MySQL BIT_AND()用法及代码示例
- MySQL BIT_COUNT()用法及代码示例
- MySQL BIT_OR()用法及代码示例
- MySQL BIT_XOR()用法及代码示例
- MySQL BIT用法及代码示例
- MySQL BINARY用法及代码示例
- MySQL BIN()用法及代码示例
- MySQL BINARY and VARBINARY用法及代码示例
- MySQL BIN方法用法及代码示例
- MySQL Binary and Non-binary strings用法及代码示例
- MySQL BOOLEAN用法及代码示例
- MySQL BETWEEN用法及代码示例
- MySQL ROUND()用法及代码示例
- MySQL REPEAT()用法及代码示例
- MySQL POWER()用法及代码示例
- MySQL LEAD() and LAG()用法及代码示例
- MySQL IS_IPV4()用法及代码示例
- MySQL RADIANS方法用法及代码示例
- MySQL VARIANCE方法用法及代码示例
- MySQL WEEK()用法及代码示例
- MySQL TIME_FORMAT方法用法及代码示例
- MySQL CURTIME()用法及代码示例
- MySQL weekofyear()用法及代码示例
- MySQL Convert()用法及代码示例
注:本文由纯净天空筛选整理自Arthur Yanagisawa大神的英文原创作品 MySQL | BIT_LENGTH method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。