标签: mysql mariadb unix-timestamp
在MariaDB 10中,我希望使用基于UserManager<T>列的unixtime填充slug列,其格式为created_at
UserManager<T>
slug
created_at
以下是我根据this回答提出的查询:
2017-09-07 02:39:18
但是所有列的结果都是UPDATE joke SET slug = UNIX_TIMESTAMP(STR_TO_DATE(created_at, '%Y %m %d %h:%i:%s')); 。我该如何解决?
UPDATE joke SET slug = UNIX_TIMESTAMP(STR_TO_DATE(created_at, '%Y %m %d %h:%i:%s'));