select
device_id,
gender,
age,
university,
gpa
from user_profile
where (gpa > 3.5 && university = '山东大学') || (gpa > 3.8 && university = '复旦大学');

select
device_id,
gender,
age,
university,
gpa
from user_profile
where (gpa > 3.5 && university = '山东大学') || (gpa > 3.8 && university = '复旦大学');