AS keyword to specify an alias
SELECT productID, productName AS name, listPrice AS price
FROM products
WHERE listPrice < 450
ORDER BY listPrice;
AS keyword
SELECT productID, productName name, listPrice price
FROM products
WHERE listPrice < 450
ORDER BY listPrice;
SELECT productID AS "ID", productName AS "Product Name", listPrice AS "Price"
FROM products
WHERE listPrice < 450
ORDER BY listPrice;
AS keyword as shown in the first example above. Although the AS keyword is optional, it enhances readability.