
Ultimate access to all questions.
How can you retrieve data from a Delta Lake table as it existed at a specific version?
A
SELECT * FROM table VERSION AS OF <version_number>
B
SELECT * FROM table TIMESTAMP AS OF '<timestamp>'
C
SELECT * FROM table AS OF VERSION <version_number>
D
SELECT * FROM table AS OF TIMESTAMP '<timestamp>'