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.
我想在我的网站上发布新闻,但我希望它们在发布日期(比如说 $date)超过 30 天时消失。
$date 将显示为数字,zo 5384054354
任何人都可以帮忙吗?:)
如果您不希望它们出现在查询结果中,请使用以下内容:
select col1, col2 from yourTable where dateColumn>date_sub(now(), interval 30 day) and ... // Any other criteria you use.
如果您想从数据库中完全删除记录,您可以偶尔使用类似的查询来删除记录(尽管这可能会让您稍后后悔)