1 create table if not exists `dy` ( 2 `id` int(11) unsigned not null auto_increment, 3 `danwei` varchar(30) not null, 4 `fuze` varchar(30) not null, 5 primary key (`id`) 6 ) engine=myisam default charset=gbk auto_increment=7 ; 7 8 -- 9 -- 转存表中的数据 `dy`10 --11 12 insert into `dy` (`id`, `danwei`, `fuze`) values13 (1, 'a', '小张'),14 (2, 'a', '小孙'),15 (3, 'b', '小王'),16 (4, 'c', '小李'),17 (5, 'a', '小红'),18 (6, 'b', '小赵');
功能实现预览:
