题解 | 用where过滤空值练习
用where过滤空值练习
https://www.nowcoder.com/practice/08c9846a423540319eea4be44e339e35
select device_id,gender,age,university from user_profile where age is not null and age <> "";
某个列值“is not null”相当于是一个标明不是空值的
表示其中一列不是空值,过滤空值并不是用“! =”这点要记清楚