What in SQL SERVER is
constraint fk_name
foreign key references tabla(campo)
What in SQL SERVER is
constraint fk_name
foreign key references tabla(campo)
Declared
CONSTRAINT fk_tabla1_tabla2 FOREIGN KEY(columnaFK) REFERENCES tablaDestino(PKtabla);
You still need to use CONSTRAINT
AND ONE name for the relationship
Afterwards, in the DELETE
and the UPDATE
you can determine which rules apply for the records that are linked between the main table and the dependent table
To indicate what happens with the dependent values