我有两个表,第一个是帖子,其中有post_by
和post coloumns
,第二个是connectionstbl
,其中有memberid
并与之相关联,其中{{1是已登录的用户,而member
是朋友
如何在connectedWith
查询如下:
post_by=the connectedwith
执行查询不输出任何内容。
答案 0 :(得分:0)
您在social_posts_post和connectionstbl.connectedwith之间缺少逗号。我猜你的error_reporting或display_errors配置参数设置为不显示错误,否则你会看到警告。
答案 1 :(得分:0)
你应该使用join:
SELECT
p.posted_by, p.post AS social_posts_post, c.connectedwith
FROM social_posts p
JOIN connectionstbl c ON p.posted_by = c.connectedwith
ORDER BY p.p_id DESC