题解 | #查找山东大学或者性别为男生的信息#
查找山东大学或者性别为男生的信息
https://www.nowcoder.com/practice/979b1a5a16d44afaba5191b22152f64a
select device_id, gender ,age, gpa from user_profile where university='山东大学' union all select device_id, gender ,age, gpa from user_profile where gender='male'; 问题分解: 限定条件:学校为山东大学或者性别为男性的用户 题目要求:分别查看&结果不去重 不能使用or 因为使用or 结果去重了,所以想到联合查询 union 和union all,union会对结果去重,所以使用union all,