This example demonstrates a named unique secondary index.
CREATE UNIQUE INDEX ident (name, ssn) ON employee;
This definition allows the named index to be dropped by using its name:
DROP INDEX ident ON employee;
This example demonstrates a named unique secondary index.
CREATE UNIQUE INDEX ident (name, ssn) ON employee;
This definition allows the named index to be dropped by using its name:
DROP INDEX ident ON employee;