About 6,650 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. 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

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

  5. DATEADD Function in SQL Server

    Jan 18, 2024 · The DATEADD function in SQL Server adds the date and time unit to the specified date and returns the new datetime value. In other words, if you have a datetime value and you …

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

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

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

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

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