内容摘要:复制createtableCategory ( cateIdint(5)notnullAUTO_INCREMENT, chiNa

复制create table Category ( cateId int(5) not null AUTO_INCREMENT,字段
chiName varchar(80), primary key (cateId) ); drop table if exists OpenRecord; create table OpenRecord ( opreId int(5) not null AUTO_INCREMENT, cateIds varchar(80), primary key (opreId) ); 1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.