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 表中插入一行,其中一个值应该是现在(MySQL 服务器的)时间加上 5 秒。
我看到 MySQL 识别的 NOW() 函数,但我可以在该值上添加秒吗?
SELECT NOW() + INTERVAL 5 SECOND
也可以:
SELECT date_add(NOW(), INTERVAL 5 SECOND)
有关文档,请参见此处。
希望这可以帮助。