其他分享
首页 > 其他分享> > 查找山东大学或者性别为男生的信息

查找山东大学或者性别为男生的信息

作者:互联网

 

 题目说了不去重,那就需要使用到   union all :不去重  ,然后分别查询两个条件,山东大学 和 男生 

题目不难,主要是对union得了解和使用,以及题目的审题

具体SQL为,要用到   union all 而不是union

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,gender,查找,男生,山东大学,id,select
来源: https://www.cnblogs.com/jdearfaust/p/15709612.html