1.增加主键
// PL/SQL //公式:alter table 表名 add primary key(主键字段1,主键字段2...); alter table table_test add primary key (id);