mysql でnull指定

nullを指定したい場合,イコールで指定できなかった.

そもそもなんでnullいるんだよ!

> select * from hoge where aaa = 'huga';

> select * from hoge where aaa = 'null'; #だめ
> select * from hoge where aaa = null; #だめ

> select * from hoge where aaa is null; #できる