Subject Re: [firebird-support] Re: rebuild primary key index?
Author Ivan Prenosil
> but does it mean that i can't change the 'sort order' of the primary key index?

This is example from FB1.5 documentation:

CREATE TABLE ATEST (
ID BIGINT NOT NULL,
DATA VARCHAR(10),
CONSTRAINT PK_ATEST PRIMARY KEY(ID) USING DESC INDEX IDX_PK_ATEST;