2005-04-25から1日間の記事一覧

'' と NULL

mysql> create table b (a varchar(10)); Query OK, 0 rows affected (0.05 sec) mysql> insert into b values(''); Query OK, 1 row affected (0.08 sec) mysql> select * from b where a = '' ; +------+ | a | +------+ | | +------+ 1 row in set (0.00 …