PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

DATEADD-Äquivalent in PostgreSQL

So geht's:

select start_date + (duration_in_hours * interval '1 hour') from your_table

Siehe diese Beispiel-SQL-Fiddle