select name, birthday
from user
where uid in (SELECT uid2 FROM friend WHERE uid1 = me())
and birthday != null;
结果是
{
"error": {
"message": "(#602) NULL is not a member of the user table.",
"type": "OAuthException",
"code": 602
}
}
我可以以某种方式过滤掉空值吗?