I have this table
CREATE TABLE IF NOT EXISTS `links` (
`link_id` int(20) NOT NULL AUTO_INCREMENT,
`item1_id` int(20) NOT NULL,
`item2_id` int(20) NOT NULL,
PRIMARY KEY (`link_id`),
UNIQUE KEY `item_id` (`item1_id`,`item2_id`)
) ENGINE=InnoDB;
How can I constrain it so that the item_id
can only appear once in item1_id
OR item2_id
?
Since I want a item to be only linked to one other item..
This means you don't need a link table. You simply need a
linkedItemId
column in your Item table with a unique constraint on it. As soon as Item2 is linked to Item1 (Item1ID is in linkedItemId for Item2 row), then nothing else can link to Item1.Also, link table do not need their own surrogate keys
Edit, note that MySQL allows multiple NULLs in a unique index (unlike, say, SQL Server, where you'd use a filtered unique index to ignore NULLs)
From MySQL 5.5 CREATE INDEX