|
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
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.