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.
私は私の質問をよりよく説明します:
私は次のようなテーブルを持っています:
|ID|DATE|DAYS|
サイトのユーザーはデータベース内の日付の範囲を検索できるため、ユーザーが選択した最小日付が列の日付よりも大きいDATEかどうか、およびDATE転送DAYSがユーザーが選択した最大日付よりも小さいか等しいかどうかを確認する必要があります。その方法はありますか?誰かが私を助けることができますか?ありがとう!!:)
DATE
DAYS
以下を試すことができます:
SELECT * FROM your_table WHERE date < 'your_input_min_date' AND 'your_input_max_date' >= DATE_ADD(date, INTERVAL days DAY)