gpt4 book ai didi

php - 使用联接来组合两个查询

转载 作者:行者123 更新时间:2023-11-29 12:22:05 24 4
gpt4 key购买 nike

假设我有两个查询,如下所示

select a.item1,b.item2 from tablename a,tablename b;

store a.item1 as $value1;

select c.item3 from tablename c where c.item4=$value1;

我需要将这两个查询合并为一个查询,并使用联接

P.S: in PHP.

感谢任何帮助。

最佳答案

如果三个表中有相同的字段,则可以通过以下查询来实现,

select a.item1 as value1,b.item2,c.item3 from tablename a inner join tablename b on a.id=b.table1_id inner join tablename c on c.item4=value1;

问候,
雷卡

关于php - 使用联接来组合两个查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28853370/

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