SQL pergi bergabung dengan alias

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