A data analyst who is **not** a member of the `sales` group queries a view named `email_lifetimevalue`. This view is built upon the `user_lifetimevalue` table, which contains the following schema: - `email`: STRING - `age`: INT - `ltv`: INT The view was created using the following SQL statement: ```sql CREATE VIEW email_lifetimevalue AS SELECT CASE WHEN is_member('sales') THEN email ELSE 'REDACTED' END AS email, ltv FROM user_lifetimevalue ``` What will the analyst see when they execute the query `SELECT * FROM email_lifetimevalue`? | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz