I have a fairly complicated process, where I have to build up a query from 
several different sources.  I have got it all working, except the last step 
where I have to add the latest record to the end of the newest record.  I am 
trying to do this with a union in a query-of-a-query query block.  I am getting 
the following error.

Query Of Queries runtime error.
All resulting columns of queries in a SELECT statement containing a UNION 
operator must have corresponding types. 
Columns with index number equal "3" have different types (OTHER, VARCHAR).

Here is the code.
<cfquery dbtype="query" name="Data">
        SELECT
                *
        FROM
                Data
        
        UNION
                
        SELECT
                *
        FROM
                CurData
</cfquery>

I have debugged the process so I know that I have all the same columns in both 
querries.  Is there an easy fix to this, or is it better if I just start using 
the query functions to add data to the final query object.


--------------
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:190845
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to