创建表前检查是否存在,并删除
--检查是否存在此表,存在则删除 declare num number; begin select count(1) into num from user_tables where table_name = upper('表名'); if num > 0 then execute immediate 'drop table 表名'; end if; end; / --创建表 create table UPDATE_WMS_T_YEAR_BILL(cust_code VARCHAR2(50), redeem_income NUMBER); --创建索引 create index CUST_CODE_INDEX on UPDATE_WMS_T_YEAR_BILL(CUST_CODE);