我想在 post_type 为 1 时使用 join,我使用 case 进行 join,但我的 sql 命令不正确。请帮我。
mysql:
SELECT SQL_CALC_FOUND_ROWS
i. * ,
c.title AS category_name,
s.title AS status_title,
i.thumb_image,
CONCAT( u.name, ' ', u.family ) AS author
FROM contents i
CASE WHEN post_type = 1 then
JOIN categories c ON c.id = i.category
end
JOIN users u ON u.id = i.posted_by
JOIN status_topics s ON s.id = i.t_status
WHERE i.id = 2