I have a column days, which will have the days from 1,2,3,...........365,433,892,1200,1600 ...
I want to write a query to show the days range .. 0-30 31-60 61-90 91-180 181-365 1-2 years
2years All
Can anyone please help me on his
|
I have a column days, which will have the days from 1,2,3,...........365,433,892,1200,1600 ... I want to write a query to show the days range .. 0-30 31-60 61-90 91-180 181-365 1-2 years
Can anyone please help me on his |
|||
|
|
You can hardcode it in the report logic ( case when days between 0 and 30 then days_range = '0-30' when days between 31 and 60 then ...) but the better solution would be to set up a reference table that stores your ranges and their label. Something like a table with the columns RANGE_LABEL, RANGE_FROM, RANGE_THROUGH and then do something like
|
|||
|
|