我有一个squid
带表的数据库configs
。
我正在尝试获取配置表into a different database [testsquid] on the same host
。
这是我尝试过的:
select * into testsquid.configs from squid.configs;
我首先尝试不在 testquid 中创建 configs 表,然后我实际上configs
在testsquid
.
我正在尝试将配置表从 squid 获取到新的数据库 testquid 中。我决定不使用 mysql dump 因为它会锁定表。
我做错了什么?