Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
All,
I have 2 condition mentioned below :
List= 123 Year >=2016
List= 456 Year >=2008
I need to include in where clause How it can be done please advise.
Regards
RK
Is List a Field or a data source?
its Data Source(QVD).
I mean to say i am looking like
if List= 123 then Year >=2016
and if List= 456 then Year >=2008.
in where clause
May be this
Where (List= 123 and Year >= 2016) or (List = 456 and Year >= 2008)
hi,
try this:
Where (List= 123 and Year >= 2016) or/and (List = 456 and Year >= 2008)