--
-- 数据库: `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');