|
I have to make one change to what was done previously. If there are no
'001' rows for the order
then we only want the earliest code.
But this union here is giving an error: SQL0104 - Token LIMIT was not
valid. Valid tokens: ) FETCH ORDER UNION EXCEPT.
CREATE VIEW rklib.clspaytp AS
Select *
from rklib.clspaytpp
where ottrnc='001'
union
select *
from
(
select *
from rklib.clspaytpp
where ottrnc != '001'
limit 1
) x
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 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.