Apparently, PostgreSQL doesn\'t have DATEADD, because you can just use the + or - operators.
DATEADD
+
-
I need to add a number of hours t
Since you want to add hours, it should rather be:
SELECT date_field + interval '1h' * start_time
start_time can be any numerical value.
start_time