Hey I have tried to show 24 hours a Day intervals hourly like:
00,01,02,03,04,05 ....23.
Used Birt Jdbc Connection with Data Set :
Query :
select count(*) task_num , to_char(end_time,'hh24') dt from t_student where end_time>='2015-09-28 00:00' and end_time<'2015-09-28 23:00 group by to_char(end_time,'hh24')
result like that
09,11,14
but If data not available I need to add like symbol--
ornull
displayed.Expected result like to Show Eclipse Birt Table : here task_num column values are
3,6.
dt_00 dt_01 dt_02 dt_03 dt_04 dt_05 dt_06 dt_06....dt_23 total
3 -- 6 -- -- -- -- -- -- 9
Note :I referred below link but still i could not solve it