About 921,000 results
Open links in new tab
  1. Get dates from a week number in T-SQL - Stack Overflow

    This will display 01/01/2009 and 01/03/2009 for the 1st week, and display 03/01/2009 and 03/07/2009 for the 10th week. I think this would be what you want exactly.

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

    DATEADD doesn't accept a date argument incremented to a value outside the range of its data type. In the following statements, the number value added to the date value exceeds the range …

  3. Add and Subtract Dates using DATEADD in SQL Server

    Jan 2, 2025 · Learn more about the date and time data types available in SQL Server 2008 and later. Adding and subtracting dates is often needed to compare time frames and in this article …

  4. How to get week number from date in SQL Server

    Jun 18, 2025 · In this comprehensive guide, I’ll walk you through multiple methods to get week numbers from dates in SQL Server, explain the nuances of different week numbering systems, …

  5. sql server - DATEADD Only weekdays - Stack Overflow

    Jan 6, 2021 · I am trying to produce a report that will pull a date already in a table somewhere and then show this date with 16 working days added on, below is the code I currently have; …

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

  7. SQL Convert Week Number to Date (dd/MM) - Stack Overflow

    May 27, 2016 · I am trying to convert the week number (for example: 21) in SQL-Server to the date (from the Monday of that week) in dd/MM format. I have searched online but cannot seem …

  8. SQL Server DATEADD: The Complete Guide - DbVisualizer

    Jun 10, 2024 · Explore syntax, practical examples, and best practices of the SQL Server DATEADD function for manipulating dates efficiently. The SQL Server DATEADD function …

  9. Using the DATEADD Function in SQL Server - Axial SQL

    Dec 21, 2024 · In this tutorial, we will explore the Microsoft SQL Server DATEADD function and how it can be used to add and subtract from date and time data types. The DATEADD function …

  10. SQL DATEADD Function Use and Examples - SQL Server Tips

    Jan 7, 2022 · In this section we will at different examples of how to use the SQL Server DATEADD function to add days or time to an existing date.