1CURRENT_TIMESTAMP
2
3You can use two timestamp in one table. For default, use DEFAULT field first
4and then the rest timestamp fields.
5
6Below query should work.
7
8CREATE TABLE myTable
9(
10 id INT,
11 date_registered TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
12 date_validated TIMESTAMP
13);