How do I add a dynamic (column based) number of days to NOW?
SELECT NOW() + INTERVAL a.number_of_days "DAYS" AS "The Future Date"
FROM a;
Where a.number_of_days is an integer?
|
How do I add a dynamic (column based) number of days to NOW?
Where |
||||
|
|
|
I usually multiply the number by
|
|||
|
|
|
I know this is a year old, but if you need to use a column to specify the actual interval (e.g. 'days', 'months', then it is worth knowing that you can also CAST your string to an Interval, giving:
So the the original question would become:
|
|||
|
|