How would I add an additional day to this?
,Cast([real_dd] as Date) Delivery_Date
How would I add an additional day to this?
,Cast([real_dd] as Date) Delivery_Date
You would use dateadd()
:
select dateadd(day, 1, cast(read_dd as date)) as delivery_date