UNION Function

OLE DB Programmer's Reference

This section explains how the UNION function handles duplicates.

Removing Duplicates

Consider UNION(S1, S2) where:

S1 = {Kansas, Buffalo, Topeka, USA, Canada}

S2 = {Kansas, Topeka, Wichita, Canada}

As shown in the section "Literal Sets," create two tables—S1 and S2—that contain the fully qualified member names in the sets S1 and S2, respectively.

The following query does the union:

SELECT Name, Newrank AS Rank FROM          (((SELECT Name, "1" AS Src, Rank FROM S1          UNION [ALL]          SELECT Name, "2" AS Src, Rank FROM S2)       RANKTOP 1 ROWS RANKORDER BY Src, Rank RANKGROUP BY Name)    RANK ROWS AS NewRank RANKORDER BY Src, Rank) ORDER BY Rank

In English, the query does the following:

  1. Makes a union of S1 and S2, with the Src column tagging which set a row came from.
  2. The RankTop operation groups duplicates into separate groups by using the GROUP BY clause, orders each group by Src and Rank, and then picks up the first one. This ensures that duplicates are eliminated from the tail.
  3. The Rank operation orders the filtered rows by Src and Rank and assigns a new rank to each row so that input ordering is preserved.

Retaining Duplicates

Consider UNION(S1, S2, [ALL]). As in the preceding section, create the tables S1 and S2. Then use the following query:

SELECT Name, Newrank AS Rank FROM       ((SELECT Name, "1" AS Src, Rank FROM S1       UNION [ALL]       SELECT Name, "2" AS Src, Rank FROM S2)    RANK ROWS AS NewRank RANKORDER BY Src, Rank) ORDER BY Rank

This is simpler because you need not remove duplicates. After the union, the Rank operation generates a rank value for each of the rows of the table joined by union. The outer SELECT emits this table, ordering it by the NewRank (renamed as Rank) column.

Generalizing for Sets with Arbitrary Dimensionality

Each tuple has more than one element for these sets. Replace the Name column in the select list of each SELECT statement above with a list of columns (which is equivalent to the number of dimensions in the input sets).

1998-2001 Microsoft Corporation. All rights reserved.



Microsoft Ole Db 2.0 Programmer's Reference and Data Access SDK
Microsoft OLE DB 2.0 Programmers Reference and Data Access SDK (Microsoft Professional Editions)
ISBN: 0735605904
EAN: 2147483647
Year: 1998
Pages: 1083

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net