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.
Web サイトにニュースを投稿したいのですが、投稿日 ($date としましょう) が 30 日より古い場合は常にニュースを非表示にしたいと考えています。
$date は数字として表示されます。zo 5384054354
誰でも助けることができますか?:)
クエリの結果に表示されないようにするには、次のようにします。
select col1, col2 from yourTable where dateColumn>date_sub(now(), interval 30 day) and ... // Any other criteria you use.
データベースからレコードを完全に削除したい場合は、同様のクエリを使用してレコードを削除することもできます (ただし、後で後悔することになるかもしれません)。