将“朋友”与帐户持有人个人资料相关联

时间:2010-07-09 15:55:50

标签: sql friend

我正在设计一个帐户持有人有“朋友”的应用程序。我如何将这些朋友与原始帐户持有人联系起来?一个有效的SQL表是否会像:

AccountHolderID (varChar 20)
FriendsID (nText)

1 个答案:

答案 0 :(得分:0)

我们实施类似的东西 - 使用桌子来容纳朋友......我们只是简单地将其分解为朋友的表......

AccountHolderId( type)
FriendAccountHolderId ( type)
Created(datetime)  // useful for tracking when the friend was added

两个Id字段都链接回Accounts / Users表。