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.
相対的/静的な日付と時刻をSQLに入れることは可能ですか?
昨日と翌日の結果を出したいです。
したがって、(current_date-2 06:00:00)と(current_date-1 06:00:00)の間の日付を言いましょう。24時間の範囲から、ただし特定の時間で結果を取得します。私はそれをBIツールに使用しているので、プレーンSQLのみが受け入れられます。
あなたは使用することができます
between trunc(sysdate) - 2 + 6/24 and trunc(sysdate) - 1 + 6/24
Oracle 1は1日であるため、6/24は6時間を意味します。