I have table:
CREATE TABLE B(
...
date1 TIMESTAMP(6),
date2 TIMESTAMP(6),
...);
and I want to get hours between two timestamps. So I run query:
SELECT (date1 - date2)*24 from B;
Result looks like this: +000000024 00:00:00.000000 but I want something like 24:00. How I can format the query? Thanks