RevelationUK
Technical User
In Sql, how do I add exactly 1 month to a date in the format mm/dd/yyyy ?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select convert(varchar(10), dateadd(mm, 1, getdate()), 101)