Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment obtenez-vous l'UTC d'un champ datetime?

Essayez UNIX_TIMESTAMP() fonction insérée :

SELECT
  UNIX_TIMESTAMP(c.login_datetime) as `start`
FROM
  tbl_employees_login AS c ;

Attention :