Possible Duplicate:
Results order with union query
I'm using SQL Server 2008.
I have 2 selects joined using UNION. The second select adds one row. I want this row always show on the bottom. How can I do this?
I'm using SQL Server 2008. I have 2 selects joined using |
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You can include another column in each part of the union query and use that to sort on:-
This will put the rows from the second select statement after the first one, within which they will be in order of col1. Note that as you are sorting outside of the inner query the only reason for using union rather than union all is if you want to eliminate duplicates. The duplicates in this case must come from within either of the queries rather than being common to both, because the sortorder column makes them distinct between the two queries. So you probably will want to use union all. |
|||||||||
|
UNIONwithoutALLremoves duplicates that means there is a high probability that SQL Server will first sort the data internally for processing. As a trivial and artificial example, this returns 1 before 2 for me:select 2 union select 1 union select 1– Pondlife Dec 14 '12 at 20:21