Thursday, May 19, 2022

Union and Union All

 

The Union All operator gives all the records from both tables including the duplicates.

A UNION command does a SELECT DISTINCT on the final results set




No comments:

Post a Comment

Stored Procedure

  What is a Stored Procedure ? A stored procedure is a prepared SQL code that you can save, so the code can be reused over and over again. S...