题解 | #查找山东大学或者性别为男生的信息#
查找山东大学或者性别为男生的信息
https://www.nowcoder.com/practice/979b1a5a16d44afaba5191b22152f64a
select device_id, gender, age, gpa from user_profile where university='山东大学' union all #在这里使用 union all ,表示对两张表进行合并,下面一张表的内容追加到上一张表后面 select device_id, gender, age, gpa from user_profile where gender='male'