Since you want to add hours, it should rather be:
SELECT date_field + interval '1 hour' * start_time
start_time can be any numerical value.
'1 hour' can be shortened to '1h'.
interval can be multiplied by a scalar.
Since you want to add hours, it should rather be:
SELECT date_field + interval '1 hour' * start_time
start_time can be any numerical value.
'1 hour' can be shortened to '1h'.
interval can be multiplied by a scalar.