Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

AS

The keyword AS is used to assign an alias to the column or a table. It is inserted between the column name and the
column alias or between the table name and the table alias.

SELECT column_name" AS "column_alias"


Syntax FROM "table_name“;

Start-Tech Academy
AS
The keyword AS is used to assign an alias to the column or a table. It is inserted between the column name and the
column alias or between the table name and the table alias.

SELECT Cust_id AS “Serial number”, Customer_name as name, Age as


Example Customer_age
FROM Customer ;

Start-Tech Academy

You might also like