标签:style http ar color os sp java on 数据
创建数据库,创建表。
如果想要从一个表中创建相同数据结构的表:
create table newtbname select * from tab where 0;
这个新表和原表数据结构相同但是没有设置主键自动增长
alter table modify id integer primary key auto_increment
这样就保证了数据库中主键id自动增长
标签:style http ar color os sp java on 数据
原文地址:http://my.oschina.net/liting/blog/355268