Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Recuperando tags com base no ID da postagem


Junção implícita:
SELECT title, clean_title, body, published, name, slug
FROM posts, posts_tags, tags
WHERE posts.p_id=posts_tags.p_id AND posts_tags.t_id=tags.t_id
ORDER BY published DESC

Junção explícita:
SELECT title, clean_title, body, published, name, slug
FROM posts
LEFT JOIN posts_tags ON posts.p_id=posts_tags.p_id
LEFT JOIN tags ON posts_tags.t_id=tags.t_id
ORDER BY published DESC

É revigorante ver um esquema de banco de dados normalizado e correto pela primeira vez.