...
Prefixo PK + Nome da tabela.
Exemplo:
CREATE TABLE Cliente( identificador INT NOT NULL CONSTRAINT PK_
...
Cliente PRIMARY KEY);
🗝️ Foreign Key
A constraint Foreign Key será nomeada conforme:
...
...
Prefixo PK + Nome da tabela.
Exemplo:
CREATE TABLE Cliente( identificador INT NOT NULL CONSTRAINT PK_
...
Cliente PRIMARY KEY);
A constraint Foreign Key será nomeada conforme:
...