Is there a value or command like DATETIME that I can use in a manual query to insert the current date and time?
INSERT INTO servers ( server_name, online_
İf you make change default value to CURRENT_TIMESTAMP it is more effiency,
CURRENT_TIMESTAMP
ALTER TABLE servers MODIFY COLUMN network_shares datetime NOT NULL DEFAULT CURRENT_TIMESTAMP;