sql中的不等于问题

2024-12-14 16:49:10
推荐回答(4个)
回答1:

where tag != '1' or tag isnull

回答2:

是null吧..应该不是''

select * from table where tab!='1' and tab is not null

回答3:

select * from table
where tab <> '1'

回答4:

where tag<>'1'