gpt4 book ai didi

php - MySQL - 为特定列中的每个值 y 获取 x 记录

转载 作者:行者123 更新时间:2023-11-29 06:48:35 25 4
gpt4 key购买 nike

我有一个这样的表:

列:

id | parent

记录:

1 | 1
2 | 1
3 | 1
4 | 2
5 | 2
6 | 2
7 | 3
8 | 4
9 | 5

对于所有的 parent ,我想获得前 2 条记录,所以我应该:

1 | 1
2 | 1
4 | 2
5 | 2
7 | 3
8 | 4
9 | 5

我如何在 MySQL 中实现这一点?我需要使用子查询吗?谢谢。

最佳答案

试试这个

  SELECT a.id,  a.parent FROM Table1 AS a WHERE 
(SELECT COUNT(*) FROM Table1 AS b
WHERE b.parent = a.parent AND b.id <= a.id) <= 2
ORDER BY a.parent ASC, a.id asc

DEMO HERE

 ID     PARENT
1 1
2 1
4 2
5 2
7 3
8 4
9 5

关于php - MySQL - 为特定列中的每个值 y 获取 x 记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17070229/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com