如何使用 SQL 更改 mysql 服务器日期
我需要通过 sql 更改服务器日期。
最好通过我的申请(CL也不错)。
如何使用 SQL 更改 mysql 服务器日期?
为什么: 我们测试了一个持续数周的场景。为了测试它,我们需要将服务器日期提前到那个时间。
I need to change the server date via sql.
Preferably through my application (CL is also good).
How do I change the mysql server date using SQL?
Why:
We test a scenario that spans several weeks. To test it we need to advance the server date by that time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想更改服务器日期或服务器时区吗?
如果是服务器日期,则必须在操作系统级别执行此操作。
如果是时区,您可以为整个数据库实例或仅为您的会话/连接全局更改它。
Do you want to change the server date or the server timezone?
If it is the server date, you have to do it at the OS level.
If it is the time zone, you can change it globally for entire database instance or for your session/connection only.
SET TIMESTAMP 语句影响 NOW() 返回的值,但不影响 SYSDATE() 返回的值
The SET TIMESTAMP statement affects the value returned by NOW() but not by SYSDATE()