Mysql
 sql >> Database >  >> RDS >> Mysql

Data e ora in una riga della tabella MySQL

Devi aggiungere una colonna TIMESTAMP come questa:

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))

Ciò creerà una colonna CreatedDateTime che contiene l'ora (del server) in cui è stata creata la riga.

Puoi fare l'inserimento come:

INSERT INTO `$find` (site, actions1, actions2) VALUES ('$site', 1, 0)

Per ulteriori riferimenti, vedere qui