如何在 Zend_Db_Select 中使用 MySQL GROUP BY 修饰符与 ROLLUP?

发布于 2024-10-16 02:12:40 字数 178 浏览 6 评论 0原文

我的 Web 应用程序(PHP/MySQL + Zend)中的 SQL 查询使用许多参数来构建搜索查询。但是,提取的记录应按两列分组以获得小计。 WITH ROLLUP 似乎是查找小计的一个很好的解决方案,但 Zend_Db_Select 不支持此修饰符。有什么解决办法吗?

The SQL query in my web application(PHP/MySQL + Zend) uses a number of parameters to build the search query. However, the records fetched should be grouped by two columns to get sub totals. WITH ROLLUP seems to be a good solution to find subtotals, but Zend_Db_Select doesn't support this modifier. Is there any work around?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耳钉梦 2024-10-23 02:12:40

出色地,

$select->from(array('t1' => 'table1'))
    ->where("where");
    ->group("(field1)  WITH ROLLUP");

Well,

$select->from(array('t1' => 'table1'))
    ->where("where");
    ->group("(field1)  WITH ROLLUP");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文