题解 | #用where过滤空值练习#
用where过滤空值练习
http://www.nowcoder.com/practice/08c9846a423540319eea4be44e339e35
SELECT `device_id`,`gender`,`age`,`university` from user_profile where not age is NULL
is null : 判断为空。 不为空的判断可以使用 not .. is null
用where过滤空值练习
http://www.nowcoder.com/practice/08c9846a423540319eea4be44e339e35
SELECT `device_id`,`gender`,`age`,`university` from user_profile where not age is NULL
is null : 判断为空。 不为空的判断可以使用 not .. is null
相关推荐