检查并比较 SQL 服务器表中的列值

本文关键字:服务器 比较 SQL 检查 | 更新日期: 2023-09-27 18:33:52

我有这个表 (Prefrences_Table)

--------------------------
|student | Preferences |
--------------------------
Stud A   |  Stud B  
Stud A   |  Stud C
Stud B   |  Stud E
Stud B   |  Stud A
Stud C   |  Stud F
Stud F   |  Stud B
--------------------------
如果"螺柱 A"在他的首选项列表中添加了"螺柱 B",我想检查"螺柱

B"是否也在他的首选项中添加了"螺柱 A",这样我就可以将它们都添加到一个组中。如何使用 SQL 或 C# 完成此操作?

检查并比较 SQL 服务器表中的列值

自加入在这里应该可以正常工作。附加谓词仅返回匹配的第一个实例以避免重复。

select t.student, t1.student
from 
  Prefrences_Table t
  inner join Prefrences_Table t1
    on t.student = t1.preferences
       and t.preferences = t1.student
       and t.student < t1.student
这可能会

让你回答你的问题,如果两个学生都在首选项中添加另一个,则字段互助将是一个,否则为零

SELECT T1.student, T2.Preferences, 
(SELECT COUNT(*) FROM Prefrences_Table T2 WHERE T2.Preferences = T1.student AND T2.student = T1.Preferences) AS mutual
FROM Prefrences_Table T1

另一种选择如下:

SELECT * FROM 
(
  SELECT PM.student, PM.Preferences,
  (SELECT COUNT(student) FROM Prefrences_Table AS PI WHERE PI.Preferences = PM.student
  AND PI.student = PM.Preferences) AS CheckCross
  FROM Prefrences_Table AS PM
) AS PD
WHERE PD.CheckCross > 0

你有一些SQL答案,这里有一个在c#/linq中。

var list = new List<Prefrences_Table>();
var results = (from t in list
               join t1 in list on t.student equals t1.preferences
               where
                   t.student == t1.preferences &&
                   t.preferences == t1.student &&
                   string.CompareOrdinal(t.student, t1.student) < 0
               select new {t.student, t1.student}
              );