Answers for "is there anyway to insert current date into mysql table"

SQL
2

insert current date in mysql

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
Posted by: Guest on April-05-2021
0

adding current date time in mysql query

2021-12-03 09:49:17
Posted by: Guest on November-08-2020

Code answers related to "is there anyway to insert current date into mysql table"

Code answers related to "SQL"

Browse Popular Code Answers by Language