About 51,100 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 …

  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

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

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

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

  9. SQL DATEADD () Function - Tutorial Kart

    The SQL DATEADD() function is used to add a specific time interval to a date value. This function is commonly used to manipulate dates by adding days, months, years, hours, or other time units.

  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 …