-- -- 數據庫: `db_copy_old` -- -- -------------------------------------------------------- -- -- 表的結構 `article` -- CREATE TABLE IF NOT EXISTS `article` ( `id` int(20) NOT NULL auto_increment, `title` text character set utf8 NOT NULL, `content` text character set utf8 NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=gbk AUTO_INCREMENT=4 ; -- -- 轉存表中的數據 `article` -- INSERT INTO `article` (`id`, `title`, `content`) VALUES (1, '測試001', '內容001'), (2, '測試002', '內容002'), (3, '測試003', '內容003');
將數據庫db_copy_old中的表article中數據導入數據庫db_copy_new中的表article_new中實現數據庫表之間的複製功能數據庫