Skip to the content.
< PREVIOUS   NEXT >

ALIASES

For giving temporary name to table, columns in a table we use SQL Aliases. Makes columns name more readable and only exists for the duration of that query.

We use AS Keyword to create Aliases.

SYNTAX


EXAMPLE

Suppose there is a Table name as “HrEmployee” having Age, Attrition, BusinessTravel, DailyRate, Department, DistanceFromHome, Education, EducationField columns, EmployeeNumber, etc as Columns.



USE OF ALIASES


< PREVIOUS   NEXT >

HOME