select * from tbl_xxx where bbb!='1'

でbbb列で1でないものが全部表示されると思ってもNULLは選択されない

ので、NULLがある時は、

select * from tbl_xxx where (bbb!='1' OR bbb is null)