SELECT CAST( GETDATE() AS Date ) ;
select cast(getdate() as date)
GETDATE()
SELECT getdate(); -- Get Current date in SQL Server
INSERT INTO my_table (last_updated) VALUES(NOW());
INSERT INTO my_table (last_updated) VALUES(sysdate); -- Oracle
INSERT INTO my_table (last_updated) VALUES(getdate()); -- SQL Server
Add GETDATE() in sql query where you want to pass current timestamp.
Example
Return the current database system date and time:
SELECT GETDATE();
SELECT CURDATE();
SELECT CURRENT_DATE from dual;