sql query to get current date code example
Example 1: sql current date
Add GETDATE() in sql query where you want to pass current timestamp.
Example
Return the current database system date and time:
SELECT GETDATE();
Example 2: how to to get current date in sql
SELECT CURRENT_DATE from dual;
Example 3: sql display today's date
SELECT getdate()