再sql中And比or运算符优先级要更高,比如说 条件1 Or 条件2 And 条件3 如果先执行or,就是1or2 再and3
但是实际上是 2and3 再or 1,所以如果想要 1or2 再and 3 就要给 1 or 2 加上括号(1 or 2) and 3 就可以了。
IN操作符就是用来指定条件范围 select username from user where id in(1,2,3) 这个就是表示id在 1,2,3中每个username都可以匹配。
or 和in操作符可以完成相同的任务,把括号拆开,分成三个or就好了,select username from user where id=1 or id=2 or id=3;
not是否定跟在后面的条件,比如说
select username from user where id not in(1,2,3); 就会找出id不是1,2,3 的username,所以not会否定后面的条件。
not是否定跟在后面的条件,比如说
[Not shì fǒudìng gēn zài hòumiàn de tiáojiàn, bǐrú shuō]
negative condition is not followed, for example