Loading lesson path
Concept visual
Start at both ends
❮ SQL Keywords
command is used to create a constraint after a table is already created. The following SQL adds a constraint named "PK_Person" that is a PRIMARY KEY constraint on multiple columns (ID and LastName):
ADD CONSTRAINT PK_Person PRIMARY KEY (ID,LastName);❮ SQL Keywords