OK, so that was working, and those are the only two fields I want to union on, which is fine. But now I also want to add the address fields to the query result, without doing a union on those additional fields. Some addresses aren't entered quite right, and this will then create duplicates even though the query doesn't see them as such - does that make sense?
So, for instance, when I do: SELECT FirstName1 AS FirstName, Surname1 AS LastName FROM tblMain WHERE foundation = Yes UNION SELECT FirstName, LastName FROM tblCentennialMembers; I get the result set I want. But if I do SELECT FirstName1 AS FirstName, Surname1 AS LastName. Add1, Add2, City, Country FROM tblMain WHERE foundation = Yes UNION SELECT FirstName, LastName, Address1, Address2, City, Country FROM tblCentennialMembers; It returns almost everything including the duplicates since add1 doesn't always match address1, even though the first and last names match. So, how to get the extra fields into the original result set while only doing a union on first and last names? Mark ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:300043 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

