FQL 支持哪些运算符和命令?
我正在尝试编制一份完整的列表,但消息来源并不同意。
这是我到目前为止所得到的。如果我遗漏了什么,或者我是否输入了错误的内容,请告诉我。
基本格式: SELECT [fields] FROM [table] WHERE [conditions]
在文档中:now()、strlen()、substr() 和 strpos()、IN
不确定:
- AND
- OR
- LIMIT
- ORDER_BY
- OFFSET
- 还有其他吗?
另外:加入肯定已经结束了,对吗?
I'm trying to compile a complete list but the sources don't agree.
Here's what I've got so far. Let me know if I'm missing anything, or if I've put anything in incorrectly.
Basic format: SELECT [fields] FROM [table] WHERE [conditions]
In the docs: now(), strlen(), substr() and strpos(), IN
Unsure:
- AND
- OR
- LIMIT
- ORDER_BY
- OFFSET
- Anything else?
Also: Joins are definitely out right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
支持的功能:
支持的运算符:
OFFSET 是 LIMIT 的一部分:偏移量、行计数,即
支持 ORDER BY,还支持 DESC、ASC,不支持 SELECT *
编辑:不支持连接,但可以执行子查询
functions supported:
operators supported:
OFFSET is a part of LIMIT: offset, rowcount, i.e.
ORDER BY is supported, DESC, ASC is supported also, SELECT * not supported
EDIT: joins not supported but you can do subqueries