DATEADD equivalent in PostgreSQL [duplicate]

2019-02-22 06:15发布

This question already has an answer here:

Is there an equivalent to this T-SQL command in PostgreSQL?

select dateadd(hh,duration_in_hours,start_date) as end_date

I have found only interval keyword with subsequent string, but this terrible construction returns syntax error:

select start_date + interval cast(duration_in_hours as varchar) || ' hours'

It allows only string constant after "interval " keyword. I am sure there must be some similar function in pgsql, but I cannot find it.

1条回答
何必那么认真
2楼-- · 2019-02-22 06:39

You can do it like this:

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

See this sample SQL Fiddle

查看更多
登录 后发表回答