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.
我有一个表,其中包含一个名为 的字段creationdate,将 14 天添加到该值,您就有了到期日期。(顺便说一下,所有的都是unix时间戳,所以14天就是creationtime + 1209600)
creationdate
现在我需要构建一个SELECT语句,该语句将从该表中选择此到期日期后 48 小时内的所有行,但我不知道从哪里开始。
SELECT
这个怎么样?你现在得到的是创建日期的 12 天到 14 天之间的所有内容:
SELECT * FROM my_table WHERE UNIX_TIMESTAMP() BETWEEN (creationtime + 1036800) AND (creationtime + 1209600)