1
I wonder if it is possible to reference foreign keys (FK) from different tables to the same primary key (PK). Below is a piece of the SQL command
CREATE TABLE Run(
Project_Code INT FOREIGN KEY REFERENCES Projects(Project_Code),
)
CREATE TABLE Sen(
Project_Code INT FOREIGN KEY REFERENCES Projects(Project_Code),
)