
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>'*