About 38,600 results
Open links in new tab
  1. 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)

  2. DATEADD (Transact-SQL) - SQL Server | Microsoft Learn

    This function adds a number (a signed bigint) to a datepart of an input date, and returns a modified date/time value. For example, you can use this function to find the date that is 7,000 …

  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 …

  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

    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 …

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

    Dec 3, 2025 · 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.

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

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

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

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

  10. DATEADD SQL Function to Add and Subtract Dates and Times

    Apr 26, 2022 · The DATEADD function is used to manipulate SQL date and time values based on some specified parameters. We can add or subtract a numeric value to a specified date-time …