使用组合查询的两个基本情况: 在单个查询中从不同的表返回类似的数据。 对单个表执行多个查询,按单个查询返回数据。 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"