The date in the database is in Unix time format,
and I need to group by that field for the whole day. and
display the result in a readable date format.
I am not sure how to do this.
and I need to group by that field for the whole day. and
display the result in a readable date format.
I am not sure how to do this.
Code:
select create_time as 'Date Open',count(*) as 'tcktOpen' from HPD_HelpDesk where Assigned_To_Group_ = 'System Help Desk' and status < 4 and Create_time >= 1101859200 group by create_time