我想从模式中的表中选择一些数据,并从“schemaexample1”传输到“schemaexample2”。这些模式具有相同的表结构,但密码不同。
为此,最好的方法是使用这个吗?如何在两个mysql数据库之间传输数据?
我还尝试使用:
alter table SchemaExample1.testTable rename SchemaExample2.testTable2
但这个给了我一个错误:
INSERT,CREATE command denied to user 'SchemaExample1'@'localhost' for table 'test_testTable2'
旁注:我需要在schemaexample1.testtable上选择表的一部分,而不是整个表。
我有两个模式,每个模式都有其唯一的密码:
“schemaexample1和”
方案示例2;
要使用这些模式,我通常会这样做:-mysql-usschemaexample1--password=test1;-mysql-u schemaexample2——密码=test2;
1条答案
按热度按时间p4tfgftt1#
你可以
mysqldump
一张table和管道mysql -u SchemaExample2 --password=test2 Schema2
如果您希望整个表按原样复制。