0
(click on this box to dismiss)
How do I drop a UNIQUE index ?
I ran the following commands:
CREATE TABLE "ITEMS" ("N" integer, "A" integer);
CREATE UNIQUE INDEX "test_index" ON "ITEMS" ("N");
ALTER TABLE "ITEMS" DROP INDEX "
test_index";
and I got the error:
Error description:
Index "test_index" does not exist.
How can I remove this unique index ?
1
Answer
asked 7 months ago
viewed 355 times