DB

[Oracle] ์ปค๋ฐ‹ ํ›„ ๋ฐ์ดํ„ฐ ๋ณต์› ํ•˜๋Š” ๋ฐฉ๋ฒ•

natrue 2022. 10. 6. 12:57
728x90

์ปค๋ฐ‹์„ ํ–ˆ์ง€๋งŒ ๋ฐ์ดํ„ฐ๋ฅผ ๋ณต์›ํ•ด์•ผํ•  ๊ฒฝ์šฐ ์‚ฌ์šฉํ•˜๋Š” ๋ฐฉ๋ฒ• 

SELECT * 
FROM ํ…Œ์ด๋ธ”๋ช… AS OF TIMESTAMP(SYSTIMESTAMP-INTERVAL '15' MINUTE) -- 15๋ถ„ 
WHERE ์กฐ๊ฑด

where์ ˆ์— insert, update, delete์— ์‚ฌ์šฉํ–ˆ๋˜ ๊ทธ๋Œ€๋กœ ์กฐ๊ฑด์„ ๊ฑธ์–ด์ฃผ๋ฉด ๋œ๋‹ค. 

-- ๋ถ„ ๋‹จ์œ„ 
select *
  from ํ…Œ์ด๋ธ”๋ช… as of timestamp(systimestamp-interval '10' minute) where..;

-- ์‹œ ๋‹จ์œ„ 
select * 
  from ํ…Œ์ด๋ธ”๋ช… as of timestamp(systimestamp-interval '1' hour) where..;

-- ์ผ ๋‹จ์œ„ 
select * 
  from ํ…Œ์ด๋ธ”๋ช… as of timestamp(systimestamp-interval '1' day) where..;

 

 

 

 

์ถœ์ฒ˜: https://july7k.tistory.com/182 [Coding JOAH:ํ‹ฐ์Šคํ† ๋ฆฌ]