Facebook 如何使用fql筛选空值?

Facebook 如何使用fql筛选空值?,facebook,facebook-fql,Facebook,Facebook Fql,导致 select name, birthday from user where uid in (SELECT uid2 FROM friend WHERE uid1 = me()) and birthday != null; 我能以某种方式过滤掉空值吗?这应该能从一年中几个月的常用字母中提取出所有空值 选择姓名、生日、电子邮件、来自用户的uid,其中uid中的uid从朋友处选择uid2,其中uid1=me和StrpsowerBirthday,a>=0或StrpsowerBirt

导致

select name, birthday 
from user 
where uid in (SELECT uid2 FROM friend WHERE uid1 = me()) 
    and birthday != null;

我能以某种方式过滤掉空值吗?

这应该能从一年中几个月的常用字母中提取出所有空值


选择姓名、生日、电子邮件、来自用户的uid,其中uid中的uid从朋友处选择uid2,其中uid1=me和StrpsowerBirthday,a>=0或StrpsowerBirthday,e>=0或StrpsowerBirthday,u>=0按生日排序\u日期

无需使用str*函数。。。只需使用“where field”排除空值,或使用“where not field”排除非空值。对于此特定示例:

选择姓名、生日 来自用户 生日在哪里
在朋友的selectuid2中,uid1=me

Oops,我以为你的代码是SQL。很抱歉你不能,你需要让你的代码足够灵活,这样它就能检测到空值并跳过它们
{
  "error": {
    "message": "(#602) NULL is not a member of the user table.", 
    "type": "OAuthException", 
    "code": 602
  }
}