gpt4 book ai didi

php - Mysqli 连接来自 2 个不同数据库的表

转载 作者:行者123 更新时间:2023-11-29 01:09:56 24 4
gpt4 key购买 nike

如何使用这 2 个连接来运行连接 2 个表的查询?yesno.table1 和 sushi.table1 ?假设我们通过 id 加入,它们都有相同的 id。我该怎么做?

// Connect to Yesno Database
$this->yesno_db = new mysqli("red", "yesno", "***", "yesnotmp");

if ($this->yesno_db->connect_errno) {
throw new Exception('Connection failed: '.$this->yesno_db->connect_error);
}

// Connect to Sushi Database
$this->sushi_db = new mysqli("red", "sushi", "***", "sushi");

if ($this->sushi_db->connect_errno) {
throw new Exception('Connection failed: '.$this->sushi_db->connect_error);
}

最佳答案

此问题与mysqli(或任何其他API)无关。

要与来自不同数据库的表进行连接,连接到 mysql 的用户必须对两个数据库都具有 SELECT 权限。

完成此操作后,只需在连接语句中选择一个数据库并使用通常的点语法解决另一个数据库:

SELECT * FROM t1 JOIN db2.t2

从字面上回答你的问题,

Can I use this 2 connections to run a query which joins 2 tables?

你不能

关于php - Mysqli 连接来自 2 个不同数据库的表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22296500/

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