这类题可以用

```列名 is not null
来对对应列中的空值进行过滤
具体代码如下:

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