sql >> Database >  >> RDS >> Mysql

Tijd- en datumstempel in een MySQL-tabelrij

U moet een TIMESTAMP-kolom als volgt toevoegen:

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

Dat maakt een kolom CreatedDateTime die de (server)tijd bevat waarop de rij is gemaakt.

U kunt het invoegen doen als:

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

Zie hier voor meer informatie.




  1. Hoe 'ON DELETE CASCADE' toe te voegen in de ALTER TABLE-instructie

  2. MySQL-concepten:sessie versus verbinding

  3. Is er een postgres CLOSEST-operator?

  4. Winnaarskiezer van PHP Lottery Ticket