memo around mysql
MySQL関連のメモ/最近はMySQL Clusterネタが多い
Home > BIT
create table bits(a bit(10));insert into bits values(b'1010');select bin(a) from bits;select a+0 from bits;
Return to page top