统计电话的数量
我有一个带有电话的MySQL表。 每一排意味着一个电话。 列是:
start_time
start_date
duration
我需要同时拨打最多的电话。 这是因为电话交换的尺寸。
我的解决方案是创建两个时间戳列timestamp_start
和timestamp_end
。 然后,我每天都要循环运行一个循环,然后问MySQL:
SELECT Count(*) FROM tbl WHERE start_date IN (thisday, secondday) AND "this_second_checking" BETWEEN timestamp_start AND timestamp_end;
这很慢。 有更好的解决方案吗? 谢谢!
编辑 - 我使用这个解决方案,它给了我适当的结果。 有使用SQL层dibi - http://dibiphp.com/cs/quick-start。
$starts = dibi::query("SELECT ts_start, ts_end FROM " . $tblname . " GROUP BY ts_start");
if(count($starts) > 0):
foreach ($starts as $row) {
if(isset($result)) unset($result);
$result = dibi::query('SELECT Count(*) FROM ' . $tblname . ' WHERE "'.$row->ts_start.'" BETWEEN ts_start AND ts_end');
$num = $result->fetchSingle();
if($total_max < $num):
$total_max = $num;
endif;
}
endif;
echo "Total MAX: " . $total_max;
而不是每秒钟运行一次,你应该为每一行(phonecall)查看当时还有哪些其他电话处于活动状态。 之后,将所有结果按行ID分组,并检查哪一个具有最大计数。 所以基本上是这样的:
SELECT MAX(calls.count)
FROM (
SELECT a.id, COUNT(*) AS count
FROM tbl AS a
INNER JOIN tbl AS b ON (
(b.timestamp_start BETWEEN a.timestamp_start AND a.timestamp_end)
OR
(b.timestamp_end BETWEEN a.timestamp_start AND a.timestamp_end)
)
GROUP BY a.id
) AS calls
在时间戳列上创建索引也会有所帮助。
怎么样:
SELECT MAX(callCount) FROM (SELECT COUNT(duration) AS callCount, CONCAT(start_date,start_time) AS callTime FROM tbl GROUP BY callTime)
这会给你一个单一的“时间”的最大数量的电话。 假设start_date和start_time是字符串。 如果它们是整数倍,那么可以稍微优化它。
链接地址: http://www.djcxy.com/p/55755.html上一篇: Count number of phone calls at the same time
下一篇: When using type classes, how to deal with object in different ways?