题目意义是把age是null值筛选出来。
select
device_id,
gender,
age,
university
from user_profile
WHERE
age is not null
考点is not null 不为空的,那列呢age列(age is not null)
题目意义是把age是null值筛选出来。
select
device_id,
gender,
age,
university
from user_profile
WHERE
age is not null
考点is not null 不为空的,那列呢age列(age is not null)