Bạn cần thêm một cột TIMESTAMP như sau:
CREATE TABLE `$table` (
id INT(11) NOT NULL auto_increment,
site VARCHAR(1000) NOT NULL,
actions1 BIGINT(9) NOT NULL,
actions2 BIGINT(9) NOT NULL,
CreatedDateTime TIMESTAMP DEFAULT CURRENT_TIMESTAMP
PRIMARY KEY(id), UNIQUE (site))
Điều đó sẽ tạo một cột CreatedDateTime chứa thời gian (máy chủ) hàng được tạo.
Bạn có thể thực hiện chèn bằng:
INSERT INTO `$find` (site, actions1, actions2) VALUES ('$site', 1, 0)
Để tham khảo thêm, hãy xem tại đây