gpt4 book ai didi

mysql查询从一个ID列显示多个表

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

我试图找到这个查询,我想在其中显示哪些主机使用我的 Zabbix 表中的哪个模板。唯一的问题是主机和模板注册在同一个表中。它们在表中混合,例如 ID 11813 是主机,11815 是模板。 现在我找到了一个表,其中定义了这两者之间的关系:hosts_templates。

该表有 3 列: host_template id、hostid、templateid

hosts 表有很多列,但还包含:hostid、名称,其中 hostid 包含主机和模板。表主机确实有一个 templateid 列,但它没有被使用。

在表hosts_templates中,我可以看到哪些主机使用哪个模板。唯一的问题是我看到了 ID,并且想查看与该 ID 匹配的名称。到目前为止我所拥有的:

表hosts_templates的输出
output from table hosts_templates

来自名称的输出,来自表主机的主机ID
output from name, hostid from table hosts

到目前为止我已经尝试过:

select name, name
from hosts_templates
inner join hosts on hosts_templates.hostid = hosts.hostid;

select name, name
from hosts_templates
inner join hosts on hosts_templates.templateid = hosts.hostid;

这些查询的输出显示了我的解决方案的一半,但有重复。

问题是我无法为第二列选择不同的名称,因此它只是重复第一列,这不是我想要的...并且由于我已经内部加入了主机ID,所以我无法这样做第二次。所以我需要上面 2 个 sql 查询的组合。我感觉我已经很接近了,但我就是无法理解。

任何帮助将不胜感激!

最佳答案

您必须加入两次。为表指定不同的别名,以便您可以区分它们。

SELECT h1.name as host_name, h2.name AS template_name
FROM hosts_template AS t
JOIN hosts AS h1 ON t.hostid = h1.hostid
JOIN hosts AS h2 ON t.hosttemplateid = h2.hostid

关于mysql查询从一个ID列显示多个表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57876243/

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