我正在尝试从一个表中检索 post_id、post_year、post_desc、post_title、post_date 和从 post_id 相等且 is_thumb 为 1 的另一表中检索 img_filename(我已选择该图像作为帖子缩略图)
这是我没有运气的情况:
SELECT post_id, post_year, post_desc, post_title, post_date,
FROM mjbox_posts
JOIN mjbox_images
USING (img_is_thumb)
WHERE img_is_thumb = 1
AND mjbox_images.post_id = mjbox_posts.post_id
谢谢