postgresql查询每组的前N条记录
方式
1 |
|
例如:
1 |
|
解析:
这里查询的是t_log表的整张数据,通过 t.src_ip, t.event_name, t.threats 分组;
同时会生成一个分组的row_id,通过t.row_id <=5可以限制每个分组5条数据;
查询结果
postgresql查询每组的前N条记录
https://leellun.github.io/2023/02/15/服务器/postgresql/2023-02-15-postgresql查询每组的前N条记录/