4
我想以二進制字符串的形式存儲20個字節,它們來自應用程序的整數。這是我能做的最好的。兩個字節只是爲了使其更簡單。將整數連接成二進制字符串並返回
create table t (bs binary(2));
insert into t (bs) values
(concat(unhex(hex(240)), unhex(hex(40))))
;
select
conv(hex(left(bs, 1)), 16, 10) n1,
conv(hex(mid(bs, 2, 1)), 16, 10) n2
from t;
+------+------+
| n1 | n2 |
+------+------+
| 240 | 40 |
+------+------+
有什麼不太詳細的?如果不是這些功能將如何做這些轉換?