我目前有一个样本表如下:
Country | Sessions US 1000 UK 500 US 2000 BR 7000 CA 3000
我正在寻求帮助的MySQL查询是获取如下输出,显示彼此在“1000”内的国家/地区名称对
示例输出:
Country_A | Country_B US UK UK US US CA CA US
感谢您的帮助!
答案 0 :(得分:1)
SELECT a.Country AS Country_A
, b.Country AS Country_B
FROM my_table a
JOIN my_table b ON ABS(a.Sessions - b.Sessions) <= 1000
AND a.Country <> b.Country;