gpt4 book ai didi

MySQL 选择类别

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

我有 3 张 table :

section
=======
id

cat
===
id
section_id

product
=======
id
cat_id

我想选择与某个部分匹配的所有产品。有没有办法在单个查询中做到这一点?

最佳答案

获取与该部分相关的所有数据:

SELECT * FROM product
INNER JOIN cat ON cat.id=product.cat_id
INNER JOIN section ON section.id=cat.section_id
WHERE section.id = 5

稍微快一点的解决方案,它将完全忽略节表。

SELECT * FROM product
INNER JOIN cat ON cat.id=product.cat_id
WHERE cat.section_id = 5

关于MySQL 选择类别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8328710/

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