I'm confused.
It seems that you are after those rows from myfile where they exist in an empty result set? I don't get it.
There is no way that field2 can exist in a null result set, because a NULL result set is, well, null.
A little more definition of your goals would help.
Steve Needles
-----Original Message-----
From: MIDRANGE-L [mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of John Yeung
Sent: Friday, August 04, 2017 1:46 PM
To: Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxx>
Subject: Idiomatic SQL empty set?
Is there an idiomatic, or at least common, expression that returns the empty set in DB2 for i? (Or is that Db2 for i now?)
For example, maybe something like
select * from sysibm.sysdummy1 where 1 > 2
In particular, I'm interested in an expression that can be used with IN, as in
select myfield1 from mylib.myfile where myfield2 in (emptyset)
I was really hoping that it would simply be (), but that doesn't work.
So for now, the larger statement looks like
select myfield1 from mylib.myfile
where myfield2 in (select * from sysibm.sysdummy1 where 1 > 2)
Surely there's something better?
(In case you haven't guessed, the set of desired values for myfield2 is dynamically generated and won't always be empty.)
John Y.
--
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.
Please contact support@xxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
http://amzn.to/2dEadiD
CONFIDENTIAL: The information contained in this email communication is confidential information intended only for the use of the addressee. Unauthorized use, disclosure or copying of this communication is strictly prohibited and may be unlawful. If you have received this communication in error, please notify us immediately by return email and destroy all copies of this communication, including all attachments.
As an Amazon Associate we earn from qualifying purchases.