mysql select语句结果限制

发布于 2024-12-08 03:37:16 字数 320 浏览 0 评论 0 原文

我有查询:

select id, name from categories where parent_id in (
    select id 
    from categories 
    where top_main_place > 0
)

它选择其父节点(内部选择)的子信息(外部选择)

问题是:我不需要所有子节点数据,每个父节点最多 6 个子节点数据id

我怎样才能达到这个结果?

顺便说一句,抱歉我的英语不好

I have query:

select id, name from categories where parent_id in (
    select id 
    from categories 
    where top_main_place > 0
)

it selects child info (outer select) of their parent nodes (inner select)

the problem is: I don't need to have all child nodes data, maximum 6 child nodes data per parent id

how can I reach this result?

btw, sorry for my poor english

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

彼岸花ソ最美的依靠 2024-12-15 03:37:16

您应该按parent_id对外部查询进行排序,为每行指定行号(每当parent_id更改时重置行号),然后过滤掉行号大于6的任何行,请查看 这个问题例如和sql 代码。

You should order the outer query by parent_id, give each row a row number (resetting the row number whenever parent_id changes) and then filter out any row with row number greater than 6, check out this question for example and sql code.

浪推晚风 2024-12-15 03:37:16

本页展示了如何限制查询返回的结果数量,采用多种 SQL 方言: http: //www.w3schools.com/sql/sql_top.asp

This page shows how to limit the number of results returned by a query, in several dialects of SQL: http://www.w3schools.com/sql/sql_top.asp

笨死的猪 2024-12-15 03:37:16
select id, name FROM (
    select id, name, IF(@parent_id=parent_id, @count:=@count+1, @count:=0) as count, @parent_id:=parent_id from categories, (select @count:=0, @parent_id:=0) as x where parent_id in (
        select id 
        from categories 
        where top_main_place > 0
    ) order by parent_id
) y where count <= 6;
select id, name FROM (
    select id, name, IF(@parent_id=parent_id, @count:=@count+1, @count:=0) as count, @parent_id:=parent_id from categories, (select @count:=0, @parent_id:=0) as x where parent_id in (
        select id 
        from categories 
        where top_main_place > 0
    ) order by parent_id
) y where count <= 6;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文