Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Criar campo com padrão como tempo de época


Você pode querer usar o UNIX_TIMESTAMP() função em seu SELECT declarações, como no exemplo a seguir:
CREATE TABLE test_tb (`timestamp` TIMESTAMP DEFAULT NOW());
INSERT INTO test_tb VALUES (DEFAULT);

SELECT UNIX_TIMESTAMP(`timestamp`) epoch, `timestamp` FROM test_tb;
+------------+---------------------+
| epoch      | timestamp           |
+------------+---------------------+
| 1281834891 | 2010-08-15 03:14:51 |
+------------+---------------------+
1 row in set (0.00 sec)