Hi,
I have a table order_request. I want to find exact age of a request in Days, Hours and Minutes based on creation_date and SYSDATE. For example if it is 4 Days, 6 Hours and 30 Mins old from sysdate. I want to display like 04:06:30.
order_request (request_id number primary key, request_type varchar2(50), created_on DATE, created_by varchar2(50), update_by varchar2(50), update_on DATE);
Please advise on this.