COGNOiSe.com - The IBM Cognos Community

Legacy Business Intelligence => COGNOS ReportNet => Report Studio => Topic started by: vkraju on 24 Sep 2008 10:54:31 AM

Title: need help with date interval sql
Post by: vkraju on 24 Sep 2008 10:54:31 AM
Hi all i have a problem in writing a if statement
example is:

If code = '1'
then
(date1-date2)
else
if code='2'
then
(date2-date3)
else
(' ')

cognos is giving an error.
how do i write the sql for this kind of time interval using a code.

thanks
Kris
Title: Re: need help with date interval sql
Post by: Suraj on 10 Nov 2008 09:29:09 AM
what are you trying to filter? ???

May be this is what you need:
If code = '1'
then
([date column] between date1 and date2)
else
if code='2'
then
([date column] between date2 and date3)
else
(' ')