这是示例
id | name | year | color
------------------------
1 | john | 1955 | red
2 | mark | 1955 | yellow
.... more than 10K inserts
如果我搜索“mark”,我得到了~100个结果。我显示分页结果(每页15个)。
我想要的是:每页显示15个结果,但在旁边显示“年”和“颜色”的所有不同值,它们将用作基于所有~100个结果的过滤器。
将来会有大约100K插页和大约20个单元格(年份,颜色)作为过滤器。
答案 0 :(得分:0)
$count = 15;
$offest = $page * $count;
// for the 1-st page $page = 0;
// for the 2-nd page $page = 1;
// for the 3-rd page $page = 2; ......
SELECT name FROM table WHERE name = 'mark'
GROUP BY year, color
LIMIT $offset, $count;