Using Two Timestamp Columns in One Table MySQL
On Technology
Using Two Timestamp Columns in One TableAccording to http://dev.mysql.com/doc/refman/5.1/en/timestamp-initialization.html
CREATE TABLE t1 ( ts1 TIMESTAMP DEFAULT 0, ts2 TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP);
Please left me a comment if you have any question. :) Thanks. :)INSERT INTO t1(ts1) VALUES (NOW());
No Comment to " Using Two Timestamp Columns in One Table MySQL "
Post a Comment