Answered
Merge two query results
Is it possible to merge 2 query results?
I have a function that returns a querey result.
< CFSET temp = query1>
<CFSET FNCTransfers = temp>
Now I want to change the query to return a merged query result
< CFSET temp = query1>
<CFSET temp2 = query2>
Is it possible to merge the two results?
Some thing like this (I know that it cannot be done like this)
<CFSET FNCTransfers = temp1 & temp2>
Maby it should be a union and query of query?
I have a function that returns a querey result.
< CFSET temp = query1>
<CFSET FNCTransfers = temp>
Now I want to change the query to return a merged query result
< CFSET temp = query1>
<CFSET temp2 = query2>
Is it possible to merge the two results?
Some thing like this (I know that it cannot be done like this)
<CFSET FNCTransfers = temp1 & temp2>
Maby it should be a union and query of query?
