for example:
create table TBL_A ( FIELD_A1 number not null,
FIELD_A2 varchar2(50),
FIELD_A3 date,
FIELD_A4 number(5,2) default 0,
FIELD_A5 varchar2(10) not null
);
create unique index XPKTBL_A on TBL_A (FIELD_A1);
drop table TBL_A;
What is the syntax to drop index in oracle?
drop index XPKTBL_A --- is this correct?