25 lines
491 B
MySQL
Raw Normal View History

2023-01-03 07:40:27 +01:00
/* Exemple sélectionner auteurs qui ont écris un articles sur le theme du covid
+++
| id | theme |
+++
| 1 | Mondial |
| 2 | Covid |
+++
*/
SELECT
a.*
FROM
auteurs au
JOIN
auteurs.articles aa ON au.id = aa.id_auteur
JOIN
articles art ON aa.id_article = art.id
JOIN
themes t ON art.id_theme = t.id
WHERE
t.id = 2