#0基础自学SQL #一开始我是直接where university = '山东大学' or gender = 'male',发现结果直接少了两行(大学为山东大学的两行)-->会去重 #本题的重点是上下拼接,union和union all(不去重) select device_id, gender, age, gpa from user_profile where university = '山东大学' union all select device_id, gender, age, gpa from ...