我的tb表如下:
id       aa     bb       cc
……     ……    ……      ……
1239 560 74 NULL 我想选出cc为空(null)的数据,
试了三条语句:
select * from tb where cc=nullselect * from tb where cc=''
select * from tb where cc='null'都选不出任何数据我应怎么写才能选出cc=null的数据???