gpt4 book ai didi

mysql - 如何根据特定数据进行 order_by

转载 作者:行者123 更新时间:2023-11-29 15:43:32 24 4
gpt4 key购买 nike

我有一个这样的数据库

order_id | date               | qty
------------------------------------
a |2018-11-11 10:03:33 |1
b |2018-11-12 10:03:33 |1
c |2018-11-11 12:03:33 |1

我有一个这样的模型,

public function get_total_sales_per_day($date_from, $date_to)
{
$this->db->select('order_id, SUM(qty) as total, date');
$this->db->from("order");

$this->db->group_by('date');
$this->db->order_by('date','asc');
$query = $this->db->get();
log_message("debug", $this->db->last_query());
return $query->result();
}

如何使用 group_by 日期但仅使用年月日?

最佳答案

如果您只想按日期分组,例如(y-m-d),而不是按时间应用分组

然后对代码进行一些更改,例如:

对代码进行一些修改

public function get_total_sales_per_day($date_from, $date_to)
{
$this->db->select('order_id, SUM(qty) as total, date');
$this->db->from("order");

$this->db->group_by(DATE_FORMAT('date', "%y-%y-%d"));
$this->db->order_by('date','asc');
$query = $this->db->get();
log_message("debug", $this->db->last_query());
return $query->result();
}

关于mysql - 如何根据特定数据进行 order_by,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57323949/

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