add two days to current date in sql when creating tables

Solutions on MaxInterview for add two days to current date in sql when creating tables by the best coders in the world

showing results for - "add two days to current date in sql when creating tables"
Paolo
26 Mar 2017
1CREATE TABLE YourTableName
2(
3Subscriber INT PRIMARY KEY,
4IssueDate DATETIME,
5ExpireDate AS DATEADD(DAY, 30, IssueDate)
6)
7
similar questions