Oracle SQL - 열 값의 "이전" 상태를 반환할 수 있습니까? myTable에서 다음 행을 가정합니다. id = 1 letter = 'a' Oracle에서는 다음을 쉽게 수행할 수 있습니다. update myTable set letter = 'b' where id = 1 returning letter into myVariable; 그러면 myVariable이 'b' 값을 보유하게 됩니다. 제가 찾고 있는 것은 편지의 "이전" 값을 반환하는 방법입니다. 즉, 이전 업데이트를 다음과 같이 바꿉니다. update myTable set letter = 'b' where id = 1 returning letter "before the update" into myVariable; 그러면 myVariable은..