select device_id,gender,age,gpa from user_profile where university = '山东大学' union all #组合数条SQL查询,将它们的结果组合成一个结果集,且不去重,只要满足一个条件就被筛选出来 select device_id,gender,age,gpa from user_profile where gender = 'male' # -union组合数条SQL查询 # 利用 UNION,可给出多条 SELECT 语句,将它们的结果组合成一个结果集。 # 使用 UNION 很简单,所要做的只是给出每条 SELE...