似乎有类似的问题,但并不完全。我试着沿着这条路走(compare data sets and return best match),但发现自己被难住了。
我需要在布景上找到最合适的布景。假设我们有包含值(1,4,29,44,378,379)的搜索对象。我希望找到其他具有类似值的对象,并在理想情况下找到与此最匹配的对象。会有大量其他对象,因此性能是一个很大的问题。
我目前在php和mysql中工作,但如果这意味着更好的性能,我愿意改变它。
谢谢你的帮助。

最佳答案

我突然想到:
假设您有一个唯一对表(a,b):

CREATE table t1 (a INT, b INT, PRIMARY KEY (a, b));

现在你可以用:
INSERT INTO t1
VALUES (1,1), (1,2),               -- item to compare with
       (2,1), (2,3),               -- has one common prop with 1
       (3,1), (3,2),               -- has the same props as 1
       (4,1), (4,2), (4,3), (4,4); -- has 2 same props with 1

以下查询将根据相似性对其他项进行排序:
SELECT t1.a,
    COUNT(t2.a) as same_props_count,
    ABS(COUNT(t2.a) - COUNT(*)) as diff_count
FROM t1
LEFT JOIN t1 as t2 ON t1.b = t2.b and t2.a = 1
WHERE t1.a <> 1
GROUP BY t1.a
ORDER BY same_props_count DESC, diff_count;


a, same_props_count, diff_count
3, 2,                0
4, 2,                2
2, 1,                1

09-30 17:10
查看更多