In my DB design, I need a table with recursive foreign key relation i.e. the foreign key refers to the same table. When I try it with one column it works fine, but when I use two columns it gives an error. Below is the sample code and the resulting error. Your help will be highly appreciated.
CREATE TABLE categories (
categoryID integer ,
parentID integer ,
setID integer REFERENCES categories(categoryID,parentID),
name char(255) NOT NULL,
PRIMARY KEY(categoryID,parentID)
);
ERROR: number of referencing and referenced columns for foreign key disagree
When I use
setID integer REFERENCES categories(categoryID) and
PRIMARY KEY(categoryID)
then it gives no error, but that's not what I want.