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_
You can use NOW():
NOW()
INSERT INTO servers (server_name, online_status, exchange, disk_space, network_shares, c_time) VALUES('m1', 'ONLINE', 'exchange', 'disk_space', 'network_shares', NOW())