gpt4 book ai didi

php - MySQL 从两个具有多重连接的表中进行查询

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

我有两个表,例如 - 类别和项目。

 1. category table has two fields- cat_id, cat_name.
2. items table has 4 fields field1, field2, field3, field4 which value
is cat_id.

现在,我需要在每一行中打印 cat_name 而不是 cat_id。

我怎样才能做到这一点? MySQL 查询是什么?

欲了解更多信息,请查看这里 -网址:http://smartmux.com/demo_roundflat/admin/用户名:测试密码:测试

最佳答案

您需要使用Join你的查询应该是这样的:

"select t1.*, t2.cat_name FROM table1 as t1 JOIN table2 as t2 on t1.cat_id=t2.cat_id";

关于php - MySQL 从两个具有多重连接的表中进行查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22221229/

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