Answers

Question and Answer:

  Home  SQL

⟩ Read the following code and explain

Read the following code:

22. CREATE OR REPLACE TRIGGER update_show_gross

23. {trigger information}

24. BEGIN

25. {additional code}

26. END;

The trigger code should only execute when the column, COST_PER_TICKET, is greater than $3. Which trigger information will you add?

1. WHEN (new.cost_per_ticket > 3.75)

2. WHEN (:new.cost_per_ticket > 3.75

3. WHERE (new.cost_per_ticket > 3.75)

4. WHERE (:new.cost_per_ticket > 3.75)

 132 views

More Questions for you: