Mysql
 sql >> Base de données >  >> RDS >> Mysql

Récupération des balises en fonction de l'ID de publication

Jointure implicite :

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

Jointure explicite :

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

C'est rafraîchissant de voir un schéma de base de données correct et normalisé pour une fois.