这句话什么意思?解决方法
这句话什么意思?SQL codeselect * from Status where Status1 and Status2 这符号是什么意思?[
这句话什么意思?
SQL codeselect * from Status where Status<>'1' and Status<>'2'
<>这符号是什么意思?
[解决办法]select * from Status where Status<>'1' and Status<>'2'
不等于1并且不等于2
可改为:
select * from Status where Status not between '1' and '2'
select * from Status where Status < '1' or Status > '2'
[解决办法]select * from Status where Status<>'1' and Status<>'2'
不等于符号
这句话等价于
select * from Status where Status !='1' and Status !='2'
或者
select * from Status where Status not in('1','2')
[解决办法]查询出表Status中列Status不等于'1'和'2'所有的记录