The following code intends to create a view that has 2 columns - price(int) and quantity(int) , where the price column should be visible to all the users who are members of the auditor group but not the compliance group. Which of the following options will complete the code? CREATE VIEW shares_view AS SELECT _____________ _____________ _____________ quantity FROM shares ;