English 中文(简体)
如何选择在匹配表格中匹配给定 ID 的用户
原标题:How to select users that match each other in matches table for a given id

只有当 id_user_a 和 id_user_b 与给定用户id 匹配时才需要选择用户 。

users                  // SQL Statements: http://pastebin.com/w34qQv0g
id username
1  user1
2  user2
3  user3
4  user4

matches
id_user_a id_user_b
1         2
2         1
1         4
4         1

如上文所示,对于给定的用户 ID 1, 匹配表格中双向匹配的 id s id 是 id=2 和 id=4。 因为第一个匹配为 II 和 反之 (1-2 和 2-1 * 1-4 和 4-1) 。

对于给定的 ID 4, 只需要一个双向匹配的id(1-4 和 4-1), 然后只有双向匹配的 id=1 和 id 4 。 我想为给定的 id 选择双向匹配的 id s。 这个概念相当清楚, 不是吗? 但是, 在选择的语句中我怎么能做到这一点呢? 有人能帮我吗? 谢谢。

最佳回答

日期 4 :

SELECT
distinct m1.id_user_b
FROM 
MATCHES M1
JOIN MATCHES M2 ON M1.ID_USER_A = M2.ID_USER_B AND M2.ID_USER_A = M1.ID_USER_B
WHERE M1.ID_USER_A = 4

将4改为参数。

问题回答

暂无回答




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签