About 805,000 results
Open links in new tab
  1. SQL Server GETDATE () Function - W3Schools

    The GETDATE () function returns the current database system date and time, in a 'YYYY-MM-DD hh:mm:ss.mmm' format. Tip: Also look at the CURRENT_TIMESTAMP function.

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

    Apr 30, 2007 · Transact-SQL reference for the GETDATE function, which returns the current database system time as a datetime value.

  3. SQL Server GETDATE () function and its use cases

    This article will describe SQL Server GETDATE () function and compare it with other date-time functions available in SQL Server.

  4. SQL GETDATE Function Use and Examples - SQL Server Tips

    Apr 28, 2025 · Learn about the SQL Server GETDATE () function and how this can be used to get the current date and time to use in T-SQL coding.

  5. SQL Server GETDATE Function Explained with Real-World Examples

    Feb 27, 2025 · Learn how to use the SQL Server GETDATE function to retrieve the current date and time. Includes syntax, use cases, performance tips, and examples in dbForge Studio for …

  6. How to use GETDATE Function in SQL Server

    Nov 28, 2023 · This SQL Server tutorial explains step by step how to use the GETDATE function in SQL Server to retrieve the current date and time of the compute system.

  7. SQL Server: GETDATE function - TechOnTheNet

    This SQL Server tutorial explains how to use the GETDATE function in SQL Server (Transact-SQL) with syntax and examples. In SQL Server (Transact-SQL), the GETDATE function …

  8. SQL Server GETDATE () Function - GeeksforGeeks

    Jun 15, 2024 · In SQL Server, GETDATE () can be used as a default value for a column to automatically set the current date and time when a new row is inserted. This is particularly …

  9. GETDATESQL Tutorial

    The SQL GETDATE function is a built-in date and time function in SQL Server that returns the current date and time of the system. It is a non-deterministic function, meaning that it returns a …

  10. SQL Date Functions and GETDATE Explained with Syntax Examples

    Dec 27, 2024 · The simplest way to get the current date and time into your SQL query is using GETDATE(). Outputs: Think of GETDATE() as calling the clock on your database server. It …