在 yii2 中,我必须将整个表从一个数据库复制到另一个数据库
为此,我使用了以下代码,但出现了错误:
$dbName = "db1";
$table = "demotable";
$liveDbName = "db2";
$command3 = $connection->createCommand('CREATE TABLE `'.$dbName.'.'.$table.'` SELECT * FROM `'.$liveDbName.'.'.$table.'`');
$command3->execute();
但出现如下错误:
Database Exception – yii\db\Exception
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'db1.db2.demotable' doesnt exist
The SQL being executed was: CREATE TABLE `db1.demotable` SELECT * FROM `db2.demotable`
Error Info: Array
(
[0] => 42S02
[1] => 1146
[2] => Table 'db1.db2.demotable' doesnt exist
)
蝴蝶不菲