It doesn’t seem to follow the ANSI SQL standard of…
CREATE TABLE Persons (
ID int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Age int,
CONSTRAINT PK_Person PRIMARY KEY (ID,LastName)
);
Hi @MarkF,
Just wanted to let you know that support for named PK constraints has now been implemented and you can try it out in our latest nightly builds.