25 lines
491 B
MySQL
25 lines
491 B
MySQL
|
/* 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
|
||
|
|