SQL-不去重

两个条件时,使用or和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"

你可能感兴趣的:(数据库,sql,java,数据库)