mytecdb.com

unix时间戳与日期在线转换

在线工具,输入有效的时间戳或者日期,进行时间戳与日期的相互转换



数据库获取时间戳(timestamp)及日期(datetime)的方法。

数据库获取时间戳获取日期
MySQLselect unix_timestamp();select now();
PostgreSQLselect floor(extract(epoch from now()));select now()::timestamp(0) without time zone;