1

我一直在努力建立一个小型网站,供用户登录和发布消息。我正在设置一个存储联系人的表格(以便用户可以在板上查看和发送消息)。我几乎完成了配置,但遇到了障碍。

 When a user registers for the first time, an entry is created in each of two tables; users and contacts.  The users table stores username and password stuff, the contacts table stores a directory of people on the system and whether they've been added to other people's contact lists.  The tables look like this;

mysql> select userid, firstname, lastname, username from users;
+--------+-----------+----------+----------+
| userid | firstname | lastname | username |
+--------+-----------+----------+----------+
|     63 | Chris     | Smith    | csmith   |
|     64 | Susan     | Smith    | ssmith   |
|     65 | Roger     | Smith    | rsmith   |
|     66 | Diane     | Smith    | dsmith   |
+--------+-----------+----------+----------+
4 rows in set (0.00 sec)

mysql> select * from contacts;
+----------+---------+-----------+
| username | contact | confirmed |
+----------+---------+-----------+
| csmith   | csmith  | 0         |
| ssmith   | ssmith  | 0         |
| rsmith   | rsmith  | 0         |
| dsmith   | dsmith  | 0         |
| csmith   | dsmith  | 2         |
| dsmith   | csmith  | 2         |
| dsmith   | ssmith  | 1         |
| dsmith   | rsmith  | 1         |
+----------+---------+-----------+
8 rows in set (0.00 sec)

用户能够进行身份验证,他们能够毫无问题地相互添加和删除。“已确认”列存储联系人的状态。0 用于指示在注册时为用户建立的联系人中的初始条目。1 表示是否已从用户名向联系人发送了邀请但尚未确认。2 表示已确认联系。通过对站点的不同部分进行选择查询,我可以显示用户的联系人列表或仅显示系统上他们可能添加但尚未添加的人员列表。除了不请自来的联系人的目录列表之外,几乎一切都正常。

联系人的初始列表应该由确认状态为 0 的用户的选择查询输出组成,它应该省略用户自己的条目(因此,他们不应该添加自己,比如说),以及(令人烦恼的部分我),它还应该省略任何使用他们自己的用户名确认为 1(已发送邀请)或 2(已联系确认)的人。

因此,csmith 应该在他的用户 ssmith 和 rsmith 目录中看到,但不应该看到 dsmith,因为 dsmith 已经添加到他的联系人中(在第 5 个联系人条目中确认 2)。

因此,考虑到这些规则,我一直很难想出一种方法来为目录查找编写查询。我怎样才能创建一个规则;

select contact from contacts where username!=$authenticated_user and confirmation='0'

这将给我系统上的用户列表,除了我自己的,还没有被邀请的人。

但随后也拔出

select contact from contacts where username=$authenticated_user and confirmation='1' and confirmation='2'

从输出中,以便不再显示已邀请和/或添加的用户列表?

任何帮助表示赞赏。

4

1 回答 1

0
SELECT DISTINCT `contact`
FROM test.test
WHERE `contact` 
NOT IN 
    (SELECT `contact` 
    FROM test.test
    WHERE `username` = "csmith");

任何相互友谊的条目都以 (a -> b) 和 (b -> a) 的格式给出,所有邀请都以 (a -> b) 的格式给出,简化了测试 - 我们只需要寻找任何用户在联系人条目中没有 $username (p.ex. "csmith") 作为用户名。

(这也排除了默认情况下通过 (a,a,0) 连接到自己的用户。)

于 2013-08-23T07:04:14.343 回答