I have two queries that I'm UNIONing together such that I already know there will be no duplicate elements between the two queries. Therefore, UNION and UNION ALL will produce the same results.
Which one should I use?
|
I have two queries that I'm Which one should I use? |
||||
|
|
|
You should use the one that matches the intent of what you are looking for. If you want to ensure that there are no duplicates use That said, |
|||||||||||||
|
|
I see that you've tagged this question PERFORMANCE, so I assume that's your primary consideration.
Unless you need SQL to perform the duplicate checking for you, always use |
|||||||
|
|
I would use So, just to provide extra information to DB server, in order for its query planner a better choice (probably), use Having said that, if your DB server's query planner is smart enough to infer that information from the Either case, it strongly depends on the DB server you are using. |
|||
|
|
|
According to http://blog.sqlauthority.com/2007/03/10/sql-server-union-vs-union-all-which-is-better-for-performance/ at least for performance it is better to use UNION ALL, since it does not actively distinct duplicates and as such is faster |
|||
|
|
|
Since there will be no duplicates from the two use UNION ALL. You don't need to check for duplicates and UNION ALL will preform the task more efficiently. |
|||
|
|