sql today's date code example
Example 1: get current date sql
SELECT getdate(); -- Get Current date in SQL Server
Example 2: current date sql
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
Example 3: mysql current date
SELECT NOW();
It returns current date and time.
Example 4: 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 5: sql display today's date
SELECT getdate()