-
- --
- -- 数据库: `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');
复制代码
2,将数据库db_copy_old中的表article中数据导入数据库db_copy_new中的表article_new中,以实现数据库表之间的复制:
-
- CREATE TABLE article_new LIKE db_copy_old.article;
- INSERT article_new SELECT * FROM db_copy_old.article;
复制代码
|