Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有一个名为的表Users,其中包含一个简单的 ID 作为主键。我们将如何实现一个表来描述用户朋友?关联表将是我们当前的方法,但是让两个外键都指向同一个主键对我来说似乎有点奇怪。
Users
关于如何实现这一点的任何建议?
这里没什么奇怪的,应该是这样的:
create table Friends ( userId INT references Users(ID), friendId INT references Users(ID) )