Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个datetimeDATETIME 格式的 mysql 列。
datetime
有没有办法SELECT在纪元秒内访问这个专栏?如果不是,将日期时间格式转换为纪元秒的最佳方法是什么?什么类型的字段最能捕捉到这一点?
SELECT
使用 MySQL 的UNIX_TIMESTAMP函数
UNIX_TIMESTAMP
您可以使用 :
SELECT UNIX_TIMESTAMP(yourfield) FROM yourtable;
对于 UPDATE,反函数是: FROM_UNIXTIME(...)