第一种方法:select * from B where A not in(2,3)
第二种方法:select * from B where A=1 or A is null
第一种:not in 这个不行,主要是由null值
第二种where里面有很多查询条件这个只是其中一项,不能这么写
@lydiamiao:
select * from B where (A=1 or A is null) and 其他条件
@Rich.T: 呵呵,刚刚写了这个,欧了……
同样谢谢你……一时短路,哈哈
select A from B
where A=1 or A is null
还有个问题是,where里面有很多查询条件这个只是其中一项,不能这么写