DATEADD « Date Timezone « SQL Server / T-SQL

SQL Server / T-SQL
1. Aggregate Functions
2. Analytical Functions
3. Constraints
4. Cursor
5. Data Set
6. Data Type
7. Database
8. Date Timezone
9. Index
10. Insert Delete Update
11. Math Functions
12. Select Query
13. Sequence
14. Store Procedure Function
15. String Functions
16. Subquery
17. System
18. Table
19. Table Joins
20. Transact SQL
21. Transaction
22. Trigger
23. View
24. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL Server / T-SQL » Date Timezone » DATEADD 
1. DATEADD: add or subtract a number of days, months, or years from a specific date
2. SELECT DATEADD(yy,12,"24 March 1964"): Add 12 years to 24th March 1964
3. SELECT DATEADD(m,12,"24 March 1964"): Add 12 months to 24th March 1964
4. SELECT DATEADD(wk,12,"24 March 1964"): Add 12 weeks to 24th March 1964
5. SELECT DATEADD(hh,12,"24 March 1964"): Add 12 hours to 24th March 1964
6. Add 12 minutes to 24th March 1964
7. DATEADD(Day, 90, '4-29-1988'): adds a specific number of date unit intervals to a date/time value
8. DATEADD(year, 18, '4-29-1988 10:30 AM'): 18 years later
9. DATEADD(yy, -18, '4-29-1988 10:30 AM'): 18 years before
10. DATEADD(second, 9000, '4-29-1988 10:30 AM'): 9,000 seconds after
11. DATEADD(mi, -9000000, '4-29-1988 10:30 AM'): 9,000,000 milliseconds before
12. SELECT DATEADD(dayofyear, 18, '4-29-1988 10:30 AM')
13. SELECT DATEADD(quarter, 18, '4-29-1988 10:30 AM')
14. Combine the CONVERT()and the DATEADD() functions to format a return date value nine months before September 8, 1989
15. SELECT DATEADD(mi, -30, '2005-09-01 23:30:00.000')
16. select DATEADD(month, -1, '2002-09-30 11:35:00')
17. DATEADD: add days to a date
18. Combine DateADD and DateDIFF to get the last date of a month
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.