Create PK with descending column order
57351Mar 21 2003 — edited Mar 24 2003I'm trying to create a PK (constraint and index) on a table using the following:
ALTER TABLE TEST_TABLE ADD CONSTRAINT TEST_TABLE_PK
PRIMARY KEY (COLA, COLB DESC) USING INDEX...
and I getting an error. It seems that I cannot force a descending order on colb. Comments, please...