If you only want to have a single row the syntax is : FETCH FIRST ROW ONLY
(not LIMIT).
Just an advice:
1. If you search for solutions in the internet make sure you find an DB2
example (and not an example from MYSQL, SQLSERVER etc.). Even though there
is an SQL standard there may be different dialects and some of the database
manufacturer say, but we are already covering the functionality (with a
different syntax) why we should reinvent the wheel? (LIMIT is not Standard,
while FETCH FIRST x ROWS ONLY is.
2. Double check the syntax in the SQL Reference:
http://www-01.ibm.com/support/knowledgecenter/ssw_ibm_i_72/db2/rbafzpdf.pdf?
lang=en
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them
and keeping them!"
-----Ursprüngliche Nachricht-----
Von: MIDRANGE-L [mailto:midrange-l-bounces@xxxxxxxxxxxx] Im Auftrag von
Hoteltravelfundotcom
Gesendet: Friday, 22.5 2015 00:58
An: Midrange Systems Technical Discussion
Betreff: Exception in this sql
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
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe, unsubscribe,
or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please take a
moment to review the archives at
http://archive.midrange.com/midrange-l.
As an Amazon Associate we earn from qualifying purchases.