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.
我想知道有没有办法只选择自纪元以来的时间和“now()”大于一定秒数的行。
我用一个字段来存储行,该字段包含自 php 函数创建的纪元以来的秒数time()。
time()
所以是这样的:
SELECT * FROM table WHERE (now - field_time) > 60 seconds
NOW()返回一个 SQL DateTime,UNIX_TIMESTAMP()如果您不提供任何日期作为参数,您现在需要的是返回自纪元以来的秒数(unix 时间戳)。
NOW()
UNIX_TIMESTAMP()