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 以 UTC 存储时间戳,然后将其转换为服务器时区。
无论如何我可以输出原始UTC时间的时间戳,而不是让它自动转换为服务器的本地时间?
我想这样做而不必弄乱mysql的时区设置,因为我的软件将在共享主机中使用,我不知道我是否可以控制这些设置。
看
https://stackoverflow.com/a/12290486/110933
SELECT UNIX_TIMESTAMP(<your_datetime_col>)...