×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
I have create two SQL selects, and both of them work well when run by themselves.
When I combine them with UNION in between, I receive the error
"Keyword UNION not expected. Valid tokens: <END-OF-STATEMENT>."
Is it possible to use the UNION to create a query of two tables when one of the tables is a common table expression as shown below?
Thanks!
with roleTable
(IDMSUSR, role, IDMSSEC )
as (
select b.IDMSUSR , b.IDMSSEC , a.IDMSSEC
from jstone/FIDMSUSRXR a,
jstone/FIDMSUSRXR b
where
a.IDMSUSR = b.IDMSSEC )
select D.UPACCD ,
D.UPGRPF ,
D.UPTEXT ,
C.CMISFUNC ,
D.UPUPRF ,
C.IDMSSEC
from roleTable a,
SECFUNC c,
GM400USR d
where
A.IDMSUSR = D.UPUPRF
and A.IDMSSEC = C.IDMSSEC
order by D.UPACCD,D.UPGRPF,D.UPTEXT,C.CMISFUNC
union <============= how can I get this UNION to function?
select D.UPACCD ,
D.UPGRPF ,
D.UPTEXT ,
C.CMISFUNC ,
D.UPUPRF ,
C.IDMSSEC
from jstone/FIDMSUSRXR a,
SECFUNC c,
GM400USR d
where
A.IDMSUSR = D.UPUPRF
and A.IDMSSEC = C.IDMSSEC
order by D.UPACCD,D.UPGRPF,D.UPTEXT,C.CMISFUNC
______________________________________________________________________
This outbound email has been scanned for all viruses by the MessageLabs Skyscan service.
For more information please visit
http://www.symanteccloud.com
______________________________________________________________________
As an Amazon Associate we earn from qualifying purchases.