题解 | #查找山东大学男生的GPA#
查找山东大学男生的GPA
http://www.nowcoder.com/practice/979b1a5a16d44afaba5191b22152f64a
使用组合查询的两个基本情况:
- 在单个查询中从不同的表返回类似的数据。
- 对单个表执行多个查询,按单个查询返回数据。 union 默认取消重复行 union all 不取消重复行
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"