我有这个日历,其中每天都有一个事件列表,我使用这个查询来计算特定日期的事件。在我的数据库中,我有start_time
一个end_time
字段,用户有一个具体的材料时间表。我尝试select
了那天的事件,但我的查询似乎有问题。因为用户可以借用不止一种材料,所以它会以相同的方式存储在数据库start_time
中end_time
。我想要的是用相同的方式计算用户的所有数据,start_time
我尝试过GROUP BY
,但似乎也不起作用。这是我的数据库:
----Table: schedule----
id | materialID | borrowerID | date_reserve | start_time | end_time|
-----------------------------------------------------------------------------------
9 | 7 | bobi | 2013-08-16 | 07:01:12 | 07:01:12|
10 | 10 | bobi | 2013-08-16 | 07:01:12 | 07:01:12|
11 | 12 | bobi | 2013-08-16 | 07:01:12 | 07:01:12|
12 | 7 | sobi | 2013-08-18 | 07:01:12 | 07:01:12|
------------------------------------------------------------------------------------
这是我的查询:
$cal_data = array();
for($i=1;$i<=31;$i++)
{
$date = "$year-$month-$i";
$this->db->select('(SELECT COUNT(id) as count_s FROM schedule WHERE date_reserve='.$date.' GROUP BY start_time) as count', FALSE);
$this->db->select('date_reserve,borrowerID,start_time,end_time');
$this->db->from('schedule');
$this->db->where('date_reserve',"$year-$month-$i");
$this->db->group_by('start_time');
$query = $this->db->get();
foreach ($query->result() as $row) {
$cal_data[$i] = ($row->count > 0) ? $row->count.' ' .'event(s)' : '';
}
}
所以预期的输出将是:
count | date_reserve | borrowerID | start_time | end_time
---------------------------------------------------------------------------------------------------
1 | 2013-08-16 | bobi | 07:01:12 | 07:01:12
在这里有一个很大的但是在那个查询中它会给你这个输出。注意:I'm using CodeIgniter
。
我在我的服务器上使用$this->output->enable_profiler(TRUE);
并尝试了2013-08-16
MySQL 的日期(因为它是多项选择)并给我这个。
count | date_reserve | borrowerID | start_time | end_time
---------------------------------------------------------------------------------------------------
NULL | 2013-08-16 | bobi | 07:01:12 | 07:01:12
那么你认为解决这个问题的方法是什么?