laravel sql复杂语句,原生写法----连表分组

时间:2021-06-16 13:05:13

###

  使用了临时表、又分组又连表的感觉好难写,使用拉 ravel

  但是现在越来也相信,没解决一个新的难题,自己又进步了一点点

###

原生的sql:

 select user_code, realname,sum(points) sum_points, user_id,source_type, t.is_verify, count(source_type) counts from
(select * from point_logs where source_type in ('layer', 'manager' , 'chief') ) t
left join users as u on u.id = t.user_id
where t.is_verify BETWEEN 1 and 2
GROUP BY user_id, source_type, t.is_verify

获得测试数据结果:

laravel sql复杂语句,原生写法----连表分组

转换成laravel 的写法:

     $point_logs =  DB::table('point_logs')
->whereIn('source_type', ['layer', 'manager', 'chief'])
->whereBetween('is_verify', [1, 2]);
$report_infos = DB::table(DB::raw("({$point_logs->toSql()}) as p"))
->mergeBindings($point_logs)
->leftJoin('users', 'users.id', '=', 'p.user_id')
->select(
'users.realname',
'users.phone',
'users.user_code',
DB::raw('sum(points) as sum_points'),
'source_type',
DB::raw('count(source_type) as number'),
'p.is_verify'
)
->groupBy('user_id')
->groupBy('source_type')
->groupBy('p.is_verify');

改进

            $point_logs =  DB::table('point_logs')
->whereIn('source_type', [‘layer’, 'manager', 'chief'])
->whereBetween('is_verify', [1, 2]);
$report_infos = DB::table(DB::raw("({$point_logs->toSql()}) as p"))
->mergeBindings($point_logs)
->leftJoin('users', 'users.id', '=', 'p.user_id')
->select(
'users.realname',
'users.phone',
'users.user_code',
DB::raw('sum(points) as sum_points'),
'source_type',
DB::raw("case when source_type = 'layer' then '层级奖' when source_type = 'manager' then '经理奖' when source_type = 'chief' then '总监奖' end as 'source_type' "),
DB::raw('count(source_type) as number'),
'p.is_verify'
)
->groupBy(['user_id', 'source_type', 'p.is_verify'])
->orderBy('user_id');

前台页面展示--js 当元格合并处理

单元格行合并方法:

   table_rowspan("#assign_table", 1);
table_rowspan("#assign_table", 2);
table_rowspan("#assign_table", 3);
//函数说明:合并指定表格(表格id为table_id)指定列(列数为table_colnum)的相同文本的相邻单元格
//参数说明:table_id 为需要进行合并单元格的表格的id。如在HTMl中指定表格 id="table1" ,此参数应为 #table1
//参数说明:table_colnum 为需要合并单元格的所在列。为数字,从最左边第一列为1开始算起。
function table_rowspan(table_id, table_colnum) {
table_firsttd = "";
table_currenttd = "";
table_SpanNum = 0;
colnum_Obj = $(table_id + " tr td:nth-child(" + table_colnum + ")");
colnum_Obj.each(function (i) {
if (i == 0) {
table_firsttd = $(this);
table_SpanNum = 1;
} else {
table_currenttd = $(this);
if (table_firsttd.text() == table_currenttd.text()) {
table_SpanNum++;
table_currenttd.hide(); //remove();
table_firsttd.attr("rowSpan", table_SpanNum);
} else {
table_firsttd = $(this);
table_SpanNum = 1;
}
}
});
}

此外还有列合并的方法:

  //函数说明:合并指定表格(表格id为table_id)指定行(行数为table_rownum)的相同文本的相邻单元格
//参数说明:table_id 为需要进行合并单元格的表格id。如在HTMl中指定表格 id="table1" ,此参数应为 #table1
//参数说明:table_rownum 为需要合并单元格的所在行。其参数形式请参考jQuery中nth-child的参数。
// 如果为数字,则从最左边第一行为1开始算起。
// "even" 表示偶数行
// "odd" 表示奇数行
// "3n+1" 表示的行数为1、4、7、10.......
//参数说明:table_maxcolnum 为指定行中单元格对应的最大列数,列数大于这个数值的单元格将不进行比较合并。
// 此参数可以为空,为空则指定行的所有单元格要进行比较合并。
function table_colspan(table_id, table_rownum, table_maxcolnum) {
if (table_maxcolnum == void 0) {
table_maxcolnum = 0;
}
table_firsttd = "";
table_currenttd = "";
table_SpanNum = 0;
$(table_id + " tr:nth-child(" + table_rownum + ")").each(function (i) {
row_Obj = $(this).children();
row_Obj.each(function (i) {
if (i == 0) {
table_firsttd = $(this);
table_SpanNum = 1;
} else if ((table_maxcolnum > 0) && (i > table_maxcolnum)) {
return "";
} else {
table_currenttd = $(this);
if (table_firsttd.text() == table_currenttd.text()) {
table_SpanNum++;
table_currenttd.hide(); //remove();
table_firsttd.attr("colSpan", table_SpanNum);
} else {
table_firsttd = $(this);
table_SpanNum = 1;
}
}
});
});
}