代码
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'
知识点
在使用 Union 时,如果不需要删除重复行,或者结果集中的重复行是有意义的,那么应该使用 Union All。此外,两个要联合的SQL语句的字段个数必须一样,且字段类型要相容。
当union和order by连用时,union先执行,order by后执行