SQL à droite Rejoignez avec As Alias

SELECT C.cat_name, P.prod_title
FROM Category AS C
RIGHT JOIN Products AS P
ON C.cat_id= P.cat_id;
SAMER SAEID