About 71,800 results
Open links in new tab
  1. DATEADD (Transact-SQL) - SQL Server | Microsoft Learn

    DATEADD doesn't accept a date argument incremented to a value outside the range of its data type. In the following statements, the number value added to the date value exceeds the range of the date …

  2. SQL Server DATEADD () Function - W3Schools

    Aug 25, 2017 · Definition and Usage The DATEADD () function adds a time/date interval to a date and then returns the date. Syntax DATEADD (interval, number, date)

  3. Add and Subtract Dates using DATEADD in SQL Server

    Jan 2, 2025 · Adding and subtracting dates is often needed to compare time frames and in this article we look at how to do this with DATEADD in SQL Server.

  4. SQL Server: DATEADD Function - TechOnTheNet

    If you specify a positive value for the number parameter, the DATEADD function will add the interval to the date. If you specify a negative value for the number parameter, the DATEADD function will …

  5. SQL Server DATEADD () Function - TutorialsTeacher.com

    The following DATEADD() function is used with the HireDate column of the Employee table to return the JoinDate. Two weeks is added to the HireDate column to return JoinDate.

  6. SQL Server DATEADD: The Complete Guide - DbVisualizer

    Jun 10, 2024 · Learn to master the SQL Server DATEADD function with our comprehensive guide. Explore syntax, practical examples, and best practices for manipulating dates efficiently in your …

  7. Mastering the DATEADD Function in SQL: A Comprehensive Guide

    May 25, 2025 · In this blog, we’ll explore what DATEADD is, how it works, when to use it, and how it compares to related functions like DATEDIFF or interval operations. With detailed examples and …

  8. SQL DATEADD () Function: Syntax, Usage, and Examples

    Learn how to use SQL DATEADD to add or subtract days, months, or years from dates for reporting, scheduling, and logic.

  9. What is the SQL DATEADD Function? - dbt Labs

    5 days ago · This article will go over how the DATEADD function works, the nuances of using it across the major cloud warehouses, and how to standardize the syntax variances using dbt macro.

  10. SQL - DATEADD Function - Online Tutorials Library

    The SQL DATEADD () function is a built-in function which adds a specified number (a signed integer) of intervals to a given date or time, and returns a modified date/time value.