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

    If the value for date is a string literal date, DATEADD returns a datetime value. If another valid input data type is supplied for date, DATEADD returns the same data type.

  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. SQL DATEADD Function Use and Examples - SQL Server Tips

    Jan 7, 2022 · The DATEADD function returns a date with the addition of a specified part of the date. For example, if you add one year to the current date, it will return the date provided plus 1 year.

  4. SQL DATEADD Function

    This tutorial shows you how to use the SQL DATEADD function to add an interval to a date or subtract an interval from a date.

  5. SQL Server: DATEADD Function - TechOnTheNet

    In SQL Server (Transact-SQL), the DATEADD function returns a date after which a certain time/date interval has been added.

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

    In SQL Server, the DATEADD () function adds a number to a datepart and returns the modified datetime value.

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

    Mar 5, 2026 · The DATEADD function in SQL adds a time/date interval to a date and then returns the date. This allows you to add or subtract a certain period of time from a given start date.

  8. DATEADD SQL function introduction and overview

    This article explores the DATEADD SQL function and its usage scenarios with various examples.

  9. SQL Server DATEADD: The Complete Guide - DbVisualizer

    Jun 10, 2024 · The DATEADD function in SQL Server is used to add or subtract specified units (such as days, months, years) to a given date, providing the resulting date or time.

  10. 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.