Ultimate access to all questions.
What will be the outcome of executing the following set of statements in a Databricks notebook, assuming 'viewer' is a pre-defined delta table with columns 'name' and 'age'?
CREATE VIEW viewing AS SELECT age FROM viewer; CREATE TEMP VIEW viewing AS SELECT name FROM viewer; CREATE VIEW viewing AS SELECT age FROM viewer; SELECT * FROM viewing;