题解 | #Where in 和Not in#
Where in 和Not in
https://www.nowcoder.com/practice/0355033fc2244cdaa09b2bd6e794c762
select device_id,gender,age,university,gpa from user_profile where university in('北京大学','复旦大学','山东大学')
where字句中可以使用:
- 比较运算符:> >= < <= <> !=
- between 80 and 100——值在80到100之间
- in(80,90,100)——值是80或90或100
- like 'e%' 通配符可以是%或_, %表示任意多字符 _表示一个字符
- 逻辑运算符:在多个条件直接可以使用逻辑运算符 and or not
关键字IN集合查询:
select device_id,gender,age,university,gpa from user_profile where university='北大' or university='川大' or university='复旦';
select device_id,gender,age,university,gpa from user_profile where university in ('北大','川大','复旦');