Heim  >  Artikel  >  Backend-Entwicklung  >  php mysql数据库复制的实现代码

php mysql数据库复制的实现代码

WBOY
WBOYOriginal
2016-07-25 08:55:421497Durchsuche
  1. --
  2. -- 数据库: `db_copy_old`
  3. --
  4. --
  5. -- 表的结构 `article`
  6. --
  7. CREATE TABLE IF NOT EXISTS `article` (
  8. `id` int(20) NOT NULL auto_increment,
  9. `title` text character set utf8 NOT NULL,
  10. `content` text character set utf8 NOT NULL,
  11. PRIMARY KEY (`id`)
  12. ) ENGINE=InnoDB DEFAULT CHARSET=gbk AUTO_INCREMENT=4 ;
  13. --
  14. -- 转存表中的数据 `article`
  15. --
  16. INSERT INTO `article` (`id`, `title`, `content`) VALUES
  17. (1, '测试001', '内容001'),
  18. (2, '测试002', '内容002'),
  19. (3, '测试003', '内容003');
复制代码

2,将数据库db_copy_old中的表article中数据导入数据库db_copy_new中的表article_new中,以实现数据库表之间的复制:

  1. CREATE TABLE article_new LIKE db_copy_old.article;
  2. INSERT article_new SELECT * FROM db_copy_old.article;
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn