あるテーブルから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
ありがとう