Monday, 10 September 2007

What is the difference between UNION and UNIONALL commands in SQLServer?

The UNION command is used to select the related data from two different tables, while using the UNION command all the selected columns have to to be of the same data type.

Ex :
Select EmployeeName from Employees
union
Select EmployeeName from Department

This Query will display only the distinct Employee names in Employees and Department Tables.

The UNION ALL command is similar to UNION command, but it displays all the values in the both the tables.

Ex :
Select EmployeeName from Employees
union all
Select EmployeeName from Department

This Query will display all the Employee names in Employees and Department Tables.

Labels: ,


Bookmark this Blog in your Favorites

1 Comments:

Blogger onlineit said...

The Pega Software Course teaches you to design, develop, and deploy business process automation solutions. Gain hands-on skills in low-code development to boost efficiency and career prospects.

12 August 2025 at 06:05  

Post a Comment

Subscribe to Post Comments [Atom]

<< Home