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.
对于我的网站,我正在使用 phpmyadmin 作为后端。我的程序中有许多查询写在 mysql 上。
查询工作正常。
> But the problem is i am getting previous date upto 12.30PM.
这是mysql服务器的问题。根据我的时间延迟 12 小时 32 分钟。
要在下午 12:30 之前显示今天的日期,我必须更改所有代码如何在不更改的情况下解决这个问题。
它简单,只需使用now()方法,它是一个原生的mysql方法,它会给你正确的时间戳。猜你想在表中插入一个时间然后使用 like
now()
INSERT INTO X(time) VALUES (NOW());