建库_建表_加约束 http://zys08.iteye.com/blog/1024405//创建联合主键alter table aa add primary key (sId,cId);//添加字段alter table 表名 add 列名 varchar(40);//创建序列create sequence t;使用序列 insert into 表名 value (t.nextval,..);