What do we mean by Alias in Sql Server?

 Posted by vishalneeraj-24503 on 12/5/2014 | Category: Sql Server Interview questions | Views: 1831 | Points: 40
Answer:

Alias in Sql Server plays an important roles,as it can be used for showing display names and also used to create a temporary name for columns or tables.
Sometimes we need to assign column name to some different names to display as a header then we give aliases to any columns.It is used with both table as well as column names.
For Example:-
Select col1 as alias1,col2 as alias2 from Table_name;

Suppose,we have a First name,Middle name and Last name in the table,and we want to show only Full name as column name,then we can assign alias.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response