The following code snippet is intended to create a view named `shares_view` with two columns: `price` (integer) and `quantity` (integer). The `price` column should only be visible to users who are members of the `auditor` group but not the `compliance` group. Which of the following options correctly completes the code? ```sql CREATE VIEW shares_view AS SELECT _______________________________________ quantity FROM shares; | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz