我有3张桌子:
Users: _id_, username
Movies: _id_, title
Friends: _#id1, #id2_, accepted
我和InnoDB在一起,一切都是这样的。但是,即使朋友的主键是(users.id,users.id),MySQL也会接受这样的2行:
1) (1, 2)
2) (2, 1)
有没有办法将这两行视为MySQL的重复键?
谢谢你的帮助。
答案 0 :(得分:1)
我想不出让MySQL独自解决这个问题的任何方法。我会使用GREATEST(http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html#function_greatest)和LEAST(http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html#function_least)对此表进行任何插入/更新:
INSERT INTO friends (LEAST(_#id1, _#id2), GREATEST(_#id1, _#id2));
所以你永远不会得到(2,1)并且总是有(1,2)。