题解 | SQL10 用where过滤空值练习
空值过滤是一个很重要的知识点,一定要记住。
用is not null
来对空值进行过滤
select device_id, gender, age, university from user_profile where age is not null;
空值过滤是一个很重要的知识点,一定要记住。
用is not null
来对空值进行过滤
select device_id, gender, age, university from user_profile where age is not null;
相关推荐