gpt4 book ai didi

php - 如何在mysql中的select语句中过滤结果

转载 作者:行者123 更新时间:2023-11-30 23:14:51 24 4
gpt4 key购买 nike

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

 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)。

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

从 username!=$authenticated_user 和 confirmation='0' 的联系人中选择联系人

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

但随后也退出了

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

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

感谢任何帮助。

最佳答案

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) 连接到他自己的用户。)

关于php - 如何在mysql中的select语句中过滤结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18395831/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com