GETDATE function in SQL Server
GETDATE function in SQL Server returns the current date of the system.
This article will show you in detail how to use datetime GETDATE () function in SQL Server with specific syntax and examples to better visualize and capture functions.
Describe
GETDATE function in SQL Server returns the current date of the system.
Syntax
To use GETDATE function in SQL Server, we use the following syntax:
GETDATE() There are no parameters and arguments in the statement.
Note :
- GETDATE function returns the system date and time in the format ' yyyy-mm-dd hh: mi: ss.mmm '.
- See more CURRENT_TIMESTAMP functions.
- GETDATE can be used in later versions of SQL Server: SQL Server 2017, SQL Server 2016, SQL Server 2014, SQL Server 2012, SQL Server 2008 R2, SQL Server 2008, and SQL Server 2005.
For example
See and explore some examples of GETDATE functions in SQL Server.
SELECT GETDATE();
Result: '2019-02-25 18:11:00.160'
Previous lesson: DAY function in SQL Server
Next lesson: GETUTCDATE function in SQL Server
Discover more
mssql function sql server math functionShare by
Lesley Montoya
Update 25 May 2019
You should read it
- MAX function in SQL Server
- SUM function in SQL Server
- ABS function in SQL Server
- AVG function in SQL Server
- ROUND function in SQL Server
- The Quiet Details That Make a Sports Betting Platform Feel Reliable
- Instructions on creating toy set images with ChatGPT AI
- How are AI agents changing the journalism industry?
- GETUTCDATE function in SQL Server
- MONTH function in SQL Server
- SQL Server YEAR function