第一种
select * from 表名 where [字段名] <>'字符串'
第二种
select * from 表名 where [字段名] !='字符串'
第三种
查询为null的时候
SELECT * FROM table t where t.ID IS NOT NULL
第一种
select * from 表名 where [字段名] <>'字符串'
第二种
select * from 表名 where [字段名] !='字符串'
第三种
查询为null的时候
SELECT * FROM table t where t.ID IS NOT NULL