如何在fql中对一个条件使用两个运算符进行查询?
您好,我遇到了 FQL 语句的问题, 我不明白如何在一种条件下创建两个运算符? 这是我的示例代码:
FacebookDesktop.fqlQuery("SELECT username, age, , FROM somewhere WHERE source_id = me() AND (34 > age > 20 ) LIMIT 50",httpservice1_resultHandler);
我不知道如何用两个条件限制年龄。我尝试使用许多变体,但它不起作用。 谁能告诉我正确的方法是什么?
谢谢
HI i got a problem with FQL statments,
I dont understand how i can make two operators on one condition?.
This is my example code:
FacebookDesktop.fqlQuery("SELECT username, age, , FROM somewhere WHERE source_id = me() AND (34 > age > 20 ) LIMIT 50",httpservice1_resultHandler);
I dont know how to limit the age with two conditions. I tried to use many variations but it doesnt work.
Can anyone please let my know what is the correct way to do it?.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我无法理解您想通过该查询获得什么。
请确保您在编写 fql 查询时引用准确的列名和表名。
无论如何,请尝试这个..
I couldn't understand what you are trying to get with that query..
Make sure that you are referring exact column name and table names while writing fql query..
Anyway try this..