.NET and SQL Server interview questions - Can two different columns be merged into single column? Show practically?
Shivprasad Koirala
Answer: let's us assume that we have the following table of Employee.
select Emp_Name,Emp_Salary_2010 as Salary from Employeeunion select Emp_Name,Emp_Salary_2011 as Salary from Employee