目前有一个订单表,表里有 status 和 manager_id 字段,manager_id 值为 1-3,status 的值为 1-10,表示对应不同的状态,目前我需要把每一个 manager_id 的不同状态的条数查出来,然后展示到一个页面上,本来想利用 sql 自带的 select count 来统计,但是 10 个不同的状态要查 10*3=30 次,对数据库开销太大,所以我把全部数据取出来后利用循环计算,但是总觉得这办法很蠢,请教各位 dalao 有没有更好的办法实现?
这是我之前写的代码,思路是把数据全取出来,然后循环判断累加,所有结果放到一个数组,条数不多,小于 1 万条。
$order = new OrderModel();
$lists = $order->getAllOrder();
for ($i = 1; $i <= 3; $i++) {
for ($j = 0; $j <= 6; $j++) {
$counts[$i][$j] = 0;
}
}
foreach ($lists as $list) {
if ($list['manager_id'] == 1) {
$counts[1][0] +=1;
if ($list['status'] == 1) {
$counts[1][1] += 1;
}
if ($list['status'] == 2) {
$counts[1][2] += 1;
}
if ($list['status'] == 3) {
$counts[1][3] += 1;
}
if ($list['status'] == 4) {
$counts[1][4] += 1;
}
if ($list['status'] == 5) {
$counts[1][5] += 1;
}
if ($list['status'] == 6) {
$counts[1][6] += 1;
}
}
if ($list['manager_id'] == 2) {
$counts[2][0] +=1;
if ($list['status'] == 1) {
$counts[2][1] += 1;
}
if ($list['status'] == 2) {
$counts[2][2] += 1;
}
if ($list['status'] == 3) {
$counts[2][3] += 1;
}
if ($list['status'] == 4) {
$counts[2][4] += 1;
}
if ($list['status'] == 5) {
$counts[2][5] += 1;
}
if ($list['status'] == 6) {
$counts[2][6] += 1;
}
}
if ($list['manager_id'] == 3) {
$counts[3][0] +=1;
if ($list['status'] == 1) {
$counts[3][1] += 1;
}
if ($list['status'] == 2) {
$counts[3][2] += 1;
}
if ($list['status'] == 3) {
$counts[3][3] += 1;
}
if ($list['status'] == 4) {
$counts[3][4] += 1;
}
if ($list['status'] == 5) {
$counts[3][5] += 1;
}
if ($list['status'] == 6) {
$counts[3][6] += 1;
}
}
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.