How do I in SQL Server 2005 use the DateAdd function to add a day to a date
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Use the following function:
SELECT DATEADD(dd, 1, GETDATE()) will return a current date + 1 day |
|||||
|
|
|
||||
|
|
|
|||
|
|
|
||||
|
|
|
Msdn provides lot of samples here. easy to understand. http://msdn.microsoft.com/en-us/library/ms186819(v=sql.110).aspx |
|||
|
|
protected by lc. Jan 3 at 17:10
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.