Link to home
Start Free TrialLog in
Avatar of Todd_Anderson
Todd_Anderson

asked on

How can I get only distinct results for multiple unions that are built programatically?

VBA, Access 2003

I have six queries that may potentially be built programatically into one query where they are unioned together.  The end result shows up to the user in a list box.  I am having problems with duplicate items showing up.  This is occuring because at times two or more of the queries are selecting the same rows.  Usually I expect a union of two tables only to include distinct results but that does not seem to be the case when there are more than two.

Anyone have any ideas on how to solve this?  I'm thinkig putting the results into a temporary table and then doing a SELECT with DISTINCT as the row source for my list box.  That sounds like it could be slow though and this application updates the searches on every key press so I don't want to add anything more than I have to.

Thanks,

Todd
ASKER CERTIFIED SOLUTION
Avatar of Quetzal
Quetzal

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Are you using UNION ALL by any chance? UNION ALL usually returns duplicates, but UNION shouldn't..
Avatar of Todd_Anderson
Todd_Anderson

ASKER

I was thinking about something like this but it gets really complicated when you have six queries which are built up programatically and may or may not be included altogether.  Tryng to programatically build all the parenthesis correctly is a big mess.
No, I am using just union.
Quetzal,

I am seeing what you are saying better now.  I may be able to do this.  Let me try and I'll get right back to you.
Here is my technique.  Create the Union query in Access, let's call it Query1.  Create the Select Distinct query using Query1 as the table, call it Query2.  In design mode for Query2, right-click Query1 table and select Properties, change name to X.  In design mode for Query2, switch to SQL View.  You will see SELECT ColA from Query1 AS X.  Open Query1, switch to SQL View and copy the SQL Query, except for the trailing semi-colon.  In the SQL View of Query2, replace Query1 with () and insert the copied SQL text from Query 1.  Verify that the query works.  Copy the SQL text to your program.

It is possible to build extremely complex queries in this fashion.
Clarification. Insert the SQL text from Query1 between the left and right paren.
Quetzal,

Works great!  I just surrounded my final query with

    SELECT DISTINCT * FROM (    my built up query here    )

Todd
Here is a somewhat more complex example.  I am constructing a query on the fly based on information in a form that is modified by the user.  You will note that I am composing a fairly complex SQL statement in pieces.  In my SQL string constants, you will see %name% and that is how and where I am subsituting the various pieces that I am building on the fly.  I composed this code using the technique I described above.

I apologize in advance if I overwhelm you with this example.  I just wanted to show you how complex a statement you can create with this method.
SQLConstruct.txt
Quetzal,

Thanks for the example.  I looked it over breifly and I see several things that look interesting that I will work through.

Thanks for the help,

Todd