所以我有这样的查询,我会像这样分组最大日期/时间
$table_data = App\salesreport::join(DB::RAW('(SELECT company_id, MAX(period) AS max_period FROM salesreport GROUP BY company_id ) latest_report'),function($join){
$join->on('salesreport.company_id','=','latest_report.company_id');
$join->on('salesreport.periods','=','latest_report.max_periods');
})->get()
它工作得很好,它可以将所有公司组合成一个,然后只显示最新的MAX(period)
。然后我想更多地调整一下,如果我不仅想要展示最新版本,还要展示每家公司的最新两个怎么样?因此,每家公司将返回2份报告,这是所有报告中的最新报告。
然后我想也许添加LIMIT 2
会使它有效,所以我把它像这样
$table_data = App\salesreport::join(DB::RAW('(SELECT company_id, MAX(period) AS max_period FROM salesreport GROUP BY company_id ) latest_report'),function($join){
$join->on('salesreport.company_id','=','latest_report.company_id');
$join->on('salesreport.periods','<=','latest_report.max_periods');
$join->limit(2)
})->get()
但它没有效果,只显示所有公司的所有报告,其中包含期间&lt; = max_periods。
让这里的事情更加清晰是我加入的表格
所以这是我的销售报告表
+----+------------+-------+------------+
| id | company_id | price | periods |
+----+------------+-------+------------+
| 1 | A1 | 500 | 2016-07-12 |
| 2 | A2 | 540 | 2017-01-21 |
| 3 | A1 | 440 | 2017-01-19 |
| 4 | A1 | 440 | 2018-01-19 |
| 5 | A2 | 330 | 2016-01-12 |
| 6 | A2 | 333 | 2018-01-22 |
+----+------------+-------+------------+
然后使用第一个查询然后我会得到这种表
+----+------------+-------+------------+
| id | company_id | price | periods |
+----+------------+-------+------------+
| 4 | A1 | 440 | 2018-01-19 |
| 6 | A2 | 333 | 2018-01-22 |
+----+------------+-------+------------+
所以我想要的就是获得这种表格
+----+------------+-------+------------+
| id | company_id | price | periods |
+----+------------+-------+------------+
| 4 | A1 | 440 | 2018-01-19 |
| 3 | A1 | 440 | 2017-01-19 |
| 6 | A2 | 333 | 2018-01-22 |
| 2 | A2 | 540 | 2017-01-21 |
+----+------------+-------+------------+
所以每家公司的最新2个......是否可能?只有一个请求?
答案 0 :(得分:0)
使用this trick:
App\salesreport::join(DB::RAW('(SELECT company_id, GROUP_CONCAT(periods ORDER BY periods DESC) grouped_periods FROM salesreport GROUP BY company_id ) latest_report'),function($join){
$join->on('salesreport.company_id','=','latest_report.company_id');
$join->whereBetween(DB::raw('FIND_IN_SET(`salesreport`.`periods`, `latest_report`.`grouped_periods`)'), [1, 2]);
})->get();
答案 1 :(得分:-1)
App\salesreport::join(DB::RAW('(SELECT company_id, MAX(period) AS max_period FROM salesreport GROUP BY company_id ) latest_report'),function($join){
$join->on('salesreport.company_id','=','latest_report.company_id');
$join->on('salesreport.periods','<=','latest_report.max_periods');
})->limit(2)->get();
像这样写