题解 | SQL9 查找除复旦大学的用户信息
只获取不是复旦大学的信息就可以,所以直接用where university != '复旦大学'
来判断就可以了。
select device_id, gender, age, university from user_profile where university != '复旦大学';
只获取不是复旦大学的信息就可以,所以直接用where university != '复旦大学'
来判断就可以了。
select device_id, gender, age, university from user_profile where university != '复旦大学';
相关推荐