sql >> Base de Datos >  >> RDS >> Mysql

Crear campo con valor predeterminado como tiempo de época

Es posible que desee utilizar UNIX_TIMESTAMP() función en su SELECT declaraciones, como en el siguiente ejemplo:

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)