gpt4 book ai didi

mySQL 多表查询

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

请帮忙!我需要获取与“42”的 cat_id 相关的entry_id,然后找到附加到我们刚刚过滤的entry_id 的所有cat_id。然后我需要获取它们 cat_id 的 cat_group_id。请参阅下表的屏幕截图:

enter image description here

enter image description here

编辑

例如Entry_id 92 已分配给它 cat_id 42。但它还有 48 和 71。我需要输出的就是这些数字。但前提是entry_id在cat_id 42中

最佳答案

不太明白你想要什么,是这个吗?

select
group_id
from
exp_categories
inner join
exp_category_posts
on exp_category_posts.cat_id = exp_categories.cat_id
where
entry_id in (select entry_id from exp_category_posts where cat_id = 42)
;

注意:我没有创建表来测试它,但我认为查询没问题

关于mySQL 多表查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33629142/

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