AWS Exams GCP Exams Azure Exams GitHub Exams Jira Exams ISC2 Exams

Video: Which of the following correctly depicts databricks video

Question 1 Be Honest
« Back   Next databricks data-engineer-professional Question »
Answer

Full Certification Question

Which of the following correctly depicts the output when the below set of commands is executed: CREATE TABLE versions ( software STRING , version STRING ) TBLPROPERTIES ( delta . enableChangeDataFeed = true ); INSERT INTO versions VALUES ( 'IDE' , '6.2.0' ); UPDATE versions SET version = '5.1.0' WHERE software = 'IDE' ; INSERT INTO versions VALUES ( 'IDE-1' , '1.3.0' ); DELETE FROM versions WHERE version = '1.3.0' ; SELECT max ( _commit_version ), max ( version ) FROM table_changes ( 'versions' , 2 );