About 50,500 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. What is the SQL DATEADD Function? - dbt Labs

    5 days ago · 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.

  6. SQL Server: DATEADD Function - TechOnTheNet

    This SQL Server tutorial explains how to use the DATEADD function in SQL Server (Transact-SQL) with syntax and examples. In SQL Server (Transact-SQL), the DATEADD function returns a date after …

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

  8. DATEADD – SQL Tutorial

    Jan 1, 2022 · The SQL DATEADD function is used to add a specified number of intervals to a given date, and returns a new date. The function is commonly used in SQL Server and other relational …

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

    May 25, 2025 · The DATEADD function in SQL is a powerful tool for manipulating dates and times, allowing you to add or subtract a specified interval to a date, such as days, months, or hours.

  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.