SQL Dalam Bergabung dengan As Alias

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