空值过滤是一个很重要的知识点,一定要记住。

is not null来对空值进行过滤

select device_id, gender, age, university from user_profile where age is not null;