MySQL bit_length()函數
BIT_LENGTH(str)
返回字符串str的位的長度。
mysql> SELECT BIT_LENGTH('text'); +---------------------------------------------------------+ | BIT_LENGTH('text') | +---------------------------------------------------------+ | 32 | +---------------------------------------------------------+ 1 row in set (0.00 sec)