Kohana Jelly ORM 中的聚合函数
你能帮我了解如何使用 Kohana - Jelly 模块插入聚合函数吗?
IE 我需要显示以下查询的结果:
SELECT COUNT('total_item') AS tot FROM items WHERE category_id = '1'
非常感谢您的帮助。
谢谢
could you help me to find out how to insert aggregate function using Kohana - Jelly module?
I.E. i need to show result of following query :
SELECT COUNT('total_item') AS tot FROM items WHERE category_id = '1'
really appreciate your help.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
通过简要查看文档。这将是像
希望一样有帮助的东西!
from briefly looking at the documentation. It's going to be something like
hope that helps!
我在 kohana 3.1 中使用以下内容
i m using following with kohana 3.1
也许这样的东西会更好:
这会生成这个查询:
Perhaps something like this would be better:
This would generate this query: