select device_id,gender,age,university from user_profile where user_profile.university not in (select university from user_profile where university ='复旦大学'); 用一个临时的做一个只含有复旦大学的信息,然后用not in 在打出的表格里把这个表里的带有复旦大学的去掉

select device_id,gender,age,university from user_profile where user_profile.university not in (select university from user_profile where university ='复旦大学'); 用一个临时的做一个只含有复旦大学的信息,然后用not in 在打出的表格里把这个表里的带有复旦大学的去掉