gpt4 book ai didi

mysql - 如何在 MySQL 中执行联接

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

我正在尝试打印 2 个分支机构中的帐户列表。数据来自 2 个表:帐户和分支。如何让数据库打印帐户表中的客户 ID、帐号和帐户类型以及分支表中的分支名称?我认为某处需要有一个 JOIN 命令。

最佳答案

我不知道您的字段名称,但如果您的帐户上有branch_id,则需要类似的内容:

SELECT account.cust_id, account.account_id, account.product_cd, branch.name INNER JOIN branch ON branch.id = account.branch_id FROM account

或者如果您在分支机构有 account_id:

SELECT account.cust_id, account.account_id, account.product_cd, branch.name INNER JOIN account ON branch.account_id = account.id FROM branch

关于mysql - 如何在 MySQL 中执行联接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14632040/

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