sql datetime now 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: sql datetime now
SELECT GETDATE();
Example 3: sql DATE = GETDATE()
CAST(GETDATE() AS DATE)
Example 4: sql display today's date
SELECT getdate()
Example 5: how to to get current date and time in sql
SELECT CURRENT_DATE from dual;