1、复制表结构与数据
create table NEW_EMP as select * from EMP
2、创建索引
普通索引:create index emp_index on emp(empno,ename,mgr)
唯一索引:create unique index emp_index on emp(empno,ename,mgr)
SQL语句
原文:https://www.cnblogs.com/hongwei2085/p/10776690.html