AdBlock Detected!
Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.
SQL GETDATE Function |
|
SQL > SQL Date Functions >
Getdate Function
The GETDATE function is used to retrieve the current database system time in SQL Server. A common use of GETDATE is to get today's date. GETDATE() returns the current SQL Server database system date and time with no arguments required. It is most commonly used to timestamp rows during INSERT operations or as a DEFAULT column value.
SyntaxThe syntax for the GETDATE function is, GETDATE does not require any argument. ExampleThe SQL statement, produces the following result when run on March 15, 2000, at 00:05:02.123 AM. '2000-03-15 00:05:02.123'
GETDATE function is most useful when we need to record the time a particular transaction happens. In SQL Server, we simply insert the value of the GETDATE( ) function into the table to achieve this. We can also set the default value of a column to be GETDATE( ) to achieve the same purpose. The Oracle and MySQL equivalent of GETDATE is SYSDATE. List of SQL Date Functions
Frequently Asked QuestionsWhat does the SQL GETDATE function return?GETDATE() returns the current database system date and time in SQL Server as a datetime value — including year, month, day, hours, minutes, seconds, and milliseconds (e.g., Does GETDATE require any arguments?No. GETDATE() takes no arguments. You call it simply as What is the Oracle and MySQL equivalent of GETDATE?In Oracle and MySQL, the equivalent function is SYSDATE, which also returns the current database system date and time. How is GETDATE commonly used in practice?GETDATE is commonly used to timestamp transactions — either by inserting |
Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.