题解 | #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字句中可以使用:

  1. 比较运算符:> >= < <= <> !=
  2. between 80 and 100——值在80到100之间
  3. in(80,90,100)——值是80或90或100
  4. like 'e%' 通配符可以是%或_, %表示任意多字符 _表示一个字符
  5. 逻辑运算符:在多个条件直接可以使用逻辑运算符 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 ('北大','川大','复旦');

全部评论

相关推荐

点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务