sql where today date code example
Example 1: 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 2: sql display today's date
SELECT getdate()