题解 | #Where in 和Not in#
Where in 和Not in
http://www.nowcoder.com/practice/0355033fc2244cdaa09b2bd6e794c762
这主要是用标题的两个关键字中的一个 in(字段...) 包含条件的字段,not in(字段..) 除字段以外的
推荐用in ,增加复用性
select device_id,gender,age,university,gpa from user_profile
where university in('北京大学','复旦大学','山东大学');