Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 377 Bytes

see_what_a_record_looked_like.md

File metadata and controls

14 lines (10 loc) · 377 Bytes

See What a Record Looked Like

In Oracle you can retrieve a record in the past, when it has changed:

SELECT * FROM contributors
AS OF TIMESTAMP
TO_TIMESTAMP('1972-01-15 09:30:00', 'YYYY-MM-DD HH24:MI:SS')
WHERE handle = 'jonasbn';

Resources and References

  1. Oracle Docs