I am trying to create a table and I am experiencing some trouble.
I have two tables called Pay and Owed
So I have a table Pay with the following primary key
CONSTRAINT pk_columns PRIMARY KEY (nameofClient, amounttoPay);
And Owed table with the foreign Key:
CONSTRAINT en_submission2 FOREIGN KEY (nameofClient, amounttoPay) REFERENCES Pay (nameofClient, amounttoPay);
So in essence what I am trying to ask is how to I add a foreign key to a table from another table whose primary key is composite? Is my syntax wrong? What do I need to change?
Thanks