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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
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