gpt4 book ai didi

MySql 连接查询两张表

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

您好,我正在尝试使用 mysql 查询连接两个表,但我无法为其检索数据

两个表是 accountheader 和 accountheadermonths。

查询:

Select ah.AH_SUBNAME,ahm.AH_OPENINGBALANCE1 
from erp_updated.accountheader ah,erp_updated.accountheader_months ahm
where ah.AH_CODE =" " AND ahm.AH_CODE=" " ;

提前致谢请帮忙

最佳答案

为了连接两个表,你应该有一个公共(public)连接两个表

Select ah.AH_SUBNAME,
ahm.AH_OPENINGBALANCE1
from erp_updated.accountheader ah
join
erp_updated.accountheader_months ahm
on ah.<col>=ahm.<col>
where ah.AH_CODE =" "
AND ahm.AH_CODE=" " ;

关于MySql 连接查询两张表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12067108/

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