
Ultimate access to all questions.
DESCRIBE HISTORY students;
The Delta transaction log for the 'students' table is shown using the DESCRIBE HISTORY students command. A Data Engineer needs to query the table as it existed before the UPDATE operation listed in the log.
Which command should the Data Engineer use to achieve this? (Choose two.)

A
SELECT * FROM students@v4
B
SELECT * FROM students TIMESTAMP AS OF ‘2024-04-22T 14:32:47.000+00:00’
C
SELECT * FROM students FROM HISTORY VERSION AS OF 3
D
SELECT * FROM students VERSION AS OF 5
E
SELECT * FROM students TIMESTAMP AS OF ‘2024-04-22T 14:32:58.000+00:00’