In PostgreSQL I want to concat the current_timestamp
with an interval
as follows:
select current_timestamp + interval 2||' days'
But when I do, I get an error:
[Err] ERROR: syntax error at or near "2"
LINE 1: select current_timestamp + interval 2||' days'
But if I do it like this, it works correctly:
select current_timestamp + interval '2 days'
Why does one work, but not the other?
With reference to the following page http://www.postgresql.org/docs/8.0/static/functions-datetime.html