从给定日期获取总数量和价格

时间:2016-06-27 03:51:49

标签: php mysql codeigniter

大家好我想问一下如何用这种日期格式获得销售总量和总价。我的数据库中有这些数据。

ID数量价格日期
1 10 100六月27,2016
2 12 120 2016年6月28日
3 15 150 June 26,2016

我只获得一个数据,第一行只有1行。 我有这个问题。

2

我怎样才能从6月27日到6月29日的特定日期范围内获取所有记录?我只有1条记录

$query= $this->db->select('SUM(total_price) as overall_price, SUM(quantity) as total_quantity')->from('sales')
        ->where('branch',$_SESSION['branch'])->where('date_sold >=',date('F d,Y',strtotime($from)))->where('date_sold <=',date('F d,Y',strtotime($to)))->get();

1 个答案:

答案 0 :(得分:0)

尝试使用BETWEEN,例如:$this->db->where("$something BETWEEN date('F d,Y',strtotime($from)) AND date('F d,Y',strtotime($to))");