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.
我有一个应用程序,用户可以在其中为帖子投票,但我想限制他们,以便他们每 24 小时只能投票一次。
如何从数据库中选择行来检查时间戳字段是否早于 24 小时?
我想您正在寻找mysql 的日期/时间函数。这里作为一个例子供您扩展:
… WHERE timestamp_column < NOW() - INTERVAL 24 HOUR;