1
我被困在爲我的網站製作共同朋友代碼的一點。我已經閱讀了一些帖子,但沒有幫助。共同的朋友Mysql查詢
這裏是我的MySQL查詢:
select *
from friend_list
where uid='7'
and status=1
and friend_id !='3'
union
select *
from friend_list
where uid='3'
and status=1
and friend_id !='7'
這顯示登錄用戶的所有朋友和我訪問配置文件的朋友。 輸出是這樣的----
id uid friend_id status
36 7 4 1
39 7 5 1
40 7 8 1
1 3 4 1
從這個表我想freind_id 4只因爲這是相互的
。
而不是'SELECT *',你可能只想'SELECT f.friend_id'將數據拉入你的應用程序。 –
你好,感謝您的幫助。你的查詢幫了我很多。感謝它像一個魅力工作。我從5個小時就陷入了這個問題。謝謝 –