0

我正在尝试从四个表中获取有关“类型”的数据。类型可以是评论、封面图片更改、朋友请求接受等,但问题是我所做的查询无法通过重复所有类型和时间戳来工作。我提出的查询是

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 参数评论

1212121212 1 2 参数封面图片

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 回答