×

Good News Everybody!

The new search engine is LIVE!

Please report any problems to david (at) midrange.com.




Try removing the first ORDER BY so you only have one after all the code.

Yours truly,

Glenn Gundermann
Email: glenn.gundermann@xxxxxxxxx
Cell: (416) 317-3144


On 4 November 2014 15:50, Stone, Joel <Joel.Stone@xxxxxxxxxx> wrote:
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 thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2026 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.