gpt4 book ai didi

php - Magento group by 日期字段的子句

转载 作者:可可西里 更新时间:2023-11-01 07:07:03 26 4
gpt4 key购买 nike

我需要获取指定月份一天内“grand_total”的订单总数、SUM、MIN MAX 和 AVG。这就是我正在做的。

$collection->getSelect()
->columns( 'SUM(base_grand_total) AS total' )
->columns( 'COUNT(*) AS orders_count' )
->columns( 'DATE_FORMAT(created_at, "%d") AS order_day' )
->columns( 'DATE_FORMAT(created_at, "%d/%m/%y") AS order_date' )
->columns( 'AVG(base_grand_total) AS avg_total' )
->columns( 'MAX(base_grand_total) AS max_total' )
->columns( 'MIN(base_grand_total) AS min_total' )
->where( 'DATE_FORMAT(created_at, "%m") = ?', $month )
->where( 'DATE_FORMAT(created_at, "%Y") = ?', $year )
->group( 'DATE_FORMAT(created_at, "%d-%m-%y")' );

$month 是“Sep”,$year 是“2014”

Current Output for the above query on Custom Grid System

what Sales > Order says for same time period

上面的查询说 26 号有 3 个订单,但是 magento 的销售 > 订单网格说 26 号只有一个订单。我想答案就在里面,“created_at”在数据库中存储为“2014-09-04 02:50:04”,但如果我们将其格式化为“2014 年 9 月 3 日下午 4:50:04”。

那么,谁能建议如何对集合应用按日期分组的子句。

提前致谢。

最佳答案

这是由于 Magento 从数据库解析日期以将它们设置在 System > Configuration > General > Locale Options > Timezone 下设置的时区中。但实际上以 GMT 将值保存在数据库中。

但这是您可以获取并以相同方式转换的信息:

解决方案 1:考虑夏令时,但需要正确配置 MySQL 服务器并正确加载时区。

要确定时区是否已加载到您的服务器上,请运行此查询

select * from mysql.time_zone_name;

如果返回时区列表,您应该可以开始了(尽管可能必须正确填写其他表格,另请参阅此答案:https://stackoverflow.com/a/15419843/2123530)

如果您在此表中没有任何记录,请参阅 MySQL 手册以了解如何在您的服务器上加载这些信息:http://dev.mysql.com/doc/refman/5.7/en/mysql-tzinfo-to-sql.html

然后,当一切都很好时,这应该是正确的查询:

$GMTToLocaleTZDiff = Mage::getStoreConfig('general/locale/timezone',0);

$collection->getSelect()
->columns( 'SUM(base_grand_total) AS total' )
->columns( 'COUNT(*) AS orders_count' )
->columns( 'DATE_FORMAT(created_at, "%d") AS order_day' )
->columns( 'DATE_FORMAT(created_at, "%d/%m/%y") AS order_date' )
->columns( 'AVG(base_grand_total) AS avg_total' )
->columns( 'MAX(base_grand_total) AS max_total' )
->columns( 'MIN(base_grand_total) AS min_total' )
->columns( "CONVERT_TZ(created_at,'GMT','".$GMTToLocaleTZDiff."') AS created_at" )
->where( 'DATE_FORMAT(created_at, "%m") = ?', $month )
->where( 'DATE_FORMAT(created_at, "%Y") = ?', $year )
->group( 'DATE_FORMAT(created_at, "%d-%m-%y")' );

解决方案 2:由于夏令时,这仍然会导致您轮类

$GMTToLocaleTZDiff = Mage::getSingleton('core/locale')->storeDate()->get(Zend_Date::GMT_DIFF_SEP);

$collection->getSelect()
->columns( 'SUM(base_grand_total) AS total' )
->columns( 'COUNT(*) AS orders_count' )
->columns( 'DATE_FORMAT(created_at, "%d") AS order_day' )
->columns( 'DATE_FORMAT(created_at, "%d/%m/%y") AS order_date' )
->columns( 'AVG(base_grand_total) AS avg_total' )
->columns( 'MAX(base_grand_total) AS max_total' )
->columns( 'MIN(base_grand_total) AS min_total' )
->columns( "CONVERT_TZ(created_at,'+00:00','".$GMTToLocaleTZDiff."') AS created_at" )
->where( 'DATE_FORMAT(created_at, "%m") = ?', $month )
->where( 'DATE_FORMAT(created_at, "%Y") = ?', $year )
->group( 'DATE_FORMAT(created_at, "%d-%m-%y")' );

关于php - Magento group by 日期字段的子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29769626/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com