If I want to add 5 days to a date, I can do it using the INTERVAL
function:
select create_ts + interval '5 days' from abc_company;
However, my table has a field called num_of_days
and I want to add it to my create_ts. Something like this:
select create_ts + interval num_of_days || ' days' from abc_company;
This does not work. How can I accomplish this in postgresql?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…