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.
在我的登录脚本中,我有一个密码重置功能,它创建一个记录,其中包含一个唯一令牌和一个从请求密码重置起 48 小时的到期日期(日期时间字段)。
如何创建一个 SQL 语句来检查令牌是否仍然有效,仅在到期日期未到期时获取记录,例如
SELECT * FROM resetpasstable WHERE expires > now()
我对这一切都很陌生,所以任何帮助表示赞赏。