gpt4 book ai didi

php - 我可以在 sql 查询中使用 php 函数 strtotime()

转载 作者:行者123 更新时间:2023-11-29 04:07:42 25 4
gpt4 key购买 nike

id     time       lastTime
1 08:02
2 08:04
3 08:30

我将此查询与 strtotime() 一起使用,但它不起作用。

UPDATE table
SET lastTime = strtotime(time) - strtotime('08:00');

如何实现?

最佳答案

试试这个

UPDATE table
SET lastTime = UNIX_TIMESTAMP(time) - UNIX_TIMESTAMP('08:00')

关于php - 我可以在 sql 查询中使用 php 函数 strtotime(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25566660/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com