1.不為空
select * from table where id <> "";
select * from table where id != "";
select * from table where is not null;
2.為空
select * from table where id ="";
select * from table where isNull(id);
select * from table where id is null;
1.不為空
select * from table where id <> "";
select * from table where id != "";
select * from table where is not null;
2.為空
select * from table where id ="";
select * from table where isNull(id);
select * from table where id is null;