MySQL中的bit类型
bit类型的值是一个二进制位,其格式为:b'value'符号写位字段值。value是一个用0和1写成的二进制值。
drop table if exists Test;
create table Test
(
id int primary key,
`status` bit default b'0'
) ;
desc Test;
插入bit类型的数据:
INSERT INTO Test values(1,b'1');
bit类型的值是一个二进制位,其格式为:b'value'符号写位字段值。value是一个用0和1写成的二进制值。
drop table if exists Test;
create table Test
(
id int primary key,
`status` bit default b'0'
) ;
desc Test;
插入bit类型的数据:
INSERT INTO Test values(1,b'1');