题解 | #用where过滤空值练习#
用where过滤空值练习
https://www.nowcoder.com/practice/08c9846a423540319eea4be44e339e35
用where过滤空值,有两种方法:
where age is not null
where age <> '' -- <> 是不等于的意思
用where过滤空值练习
https://www.nowcoder.com/practice/08c9846a423540319eea4be44e339e35
用where过滤空值,有两种方法:
where age is not null
where age <> '' -- <> 是不等于的意思
相关推荐