题解 | #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 ('北京大学','复旦大学','山东大学')
当筛选条件为某一个字段的多个or类型条件时,可以考虑使用in (条件列表)来进行筛选。
问题:最开始打算用not in (‘浙江大学’),后来发现左边表格只是示例表