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.
我的 mysql 数据库中存储了以下字符串格式,
starttime 8:00 31-5-2012
我想将其转换为整数以与另一个整数(如 1338447620)进行比较
任何人都可以帮助我,任何帮助将不胜感激!
如果您可以将其存储为 mysql-datetime,您只需使用
select unix_timestamp(starttime);
Datetime 有很多专业的,你可以用它来排序和计算。只需使用 date_format 阅读它,即可获得本地时间格式。所以我建议:将其转换为数据库中的日期时间。