0

「タイプ」に関して4つのテーブルからデータを取得しようとしています。タイプはコメント、カバー写真の変更、友達リクエストの受け入れなどですが、問題は、すべてのタイプとすべてのタイムスタンプを繰り返すことで、作成したクエリが機能しないことです。私が作ったクエリは

SELECT c.up_date, c.user_id, c.id, f.id,
       f.up_date, f.friend1, f.friend2, f.status,
       s.postdate, s.status, s.id, s.display_name, s.userid, s.userid1, s.type,
       c.type, f.type
FROM cover_pic c, wp_userstatus s, wp_friends f
WHERE s.userid = f.friend1
AND s.userid = c.user_id
AND f.status =3
AND c.user_id =4
ORDER BY s.postdate
LIMIT 0 , 30

タイムスタンプとタイプに関して正しいクエリを手伝ってくれる人はいますか

これが私に与えた結果です

ここに画像の説明を入力

私が欲しいもの

タイムスタンプ userid_id id display_name タイプ

233232323 1 1 paramveer コメント

1212121212 1 2 paramveer カバー写真

4

1 に答える 1

1

結合の が必要な場合がunionあります

(select distinct s.postdate as postdate, s.userid, c.id, c.type
 from wp_userstatus s
 join cover_pic c on s.userid = c.user_id)
union
(select distinct s.postdate, s.userid, f.id, f.type
 from wp_userstatus s
 join wp_friends f on s.userid = f.friend1)
order by postdate
limit 30

言うのは本当に難しいです。

于 2012-11-17T15:23:44.173 に答える