insert timestamp in mysql code example

Example 1: sql insert timestamp

INSERT INTO TABLE_NAME (TIMESTAMP_VALUE) VALUES (TO_TIMESTAMP('2014-07-02 06:14:00.742000000', 'YYYY-MM-DD HH24:MI:SS.FF'));

Example 2: php mysql insert timestamp now

$update_query = "UPDATE db.tablename SET insert_time=now() WHERE username='" .$somename . "'";

Example 3: add current timestamp in mysql

INSERT INTO servers (server_name, online_status, exchange, disk_space,
network_shares,date_time) VALUES('m1','ONLINE','ONLINE','100GB','ONLINE',now() )

#Replace date_time with the column name you want to use to insert the time.

Tags:

Php Example