Hi All,
In Database there are two ways to give Alias name-
by using "as" keyword and without using "as" keyword.
What is the difference between them?
Ex: Say,
1. Select emp_name as EmployeName, emp_dept as EmployeDepartment
From employtable
2. Select emp_name EmployeName, emp_dept EmployeDepartment
From employtable