题解 | #查找山东大学或者性别为男生的信息#
查找山东大学或者性别为男生的信息
https://www.nowcoder.com/practice/979b1a5a16d44afaba5191b22152f64a
select c.device_id, c.gender, c.age, c.gpa from user_profile c where c.university = "山东大学" union all select c.device_id, c.gender, c.age, c.gpa from user_profile c where c.gender = "male"
使用 UNION可以实现将多个查询结果集合并为一个结果集,不加all表示去重,加all表示不去重。