This is a dedicated watch page for a single video.
The data engineering team has a Delta Lake table named ‘daily_activities’ that is completely overwritten each night with new data received from the source system. For auditing purposes, the team wants to set up a post-processing task that uses Delta Lake Time Travel functionality to determine the difference between the new version and the previous version of the table. They start by getting the current table version via this code: current_version = spark . sql ( "SELECT max(version) FROM (DESCRIBE HISTORY daily_activities)" ). collect ()[ 0 ][ 0 ] Which of the following queries can be used by the team to complete this task ?