gpt4 book ai didi

c# - 如何在 MySQL 中执行此操作

转载 作者:行者123 更新时间:2023-11-29 09:17:26 24 4
gpt4 key购买 nike

我需要一个有两列的表格:

第一列有一个 ID第二列有一个 ID。

就像两个人是 friend ,然后第一个的ID在第一个中,第二个的ID在第二个中但是

如果我需要检查第一个用户的 friend ,那么我需要按两个条件进行检查

check the friend by first column 

check the friend by second column

创建此结构的最佳方法是什么。

最佳答案

您可以创建包含以下列的 friend 表:

   UserId   int
FriendId int

只需一次操作即可检查用户是否有好友:

 SELECT Count(*)
FROM Friends
WHERE (UserId = @YourUserId or FriendId = @YourUserId)

关于c# - 如何在 MySQL 中执行此操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3650104/

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