Multiple choice technology How is a trigger created or replaced if it already exist? DROP OR REPLACE ‘trigger_name’; CREATE OR RENAME TRIGGER ‘trigger_name’; CREATE OR REPLACE TRIGGER ‘trigger_name’; CREATE OR RECREATE TRIGGER ‘trigger_name’; Reveal answer Fill a bubble to check yourself C Correct answer Explanation The SQL syntax for creating a new trigger or replacing an existing one is CREATE OR REPLACE TRIGGER followed by the trigger name. This allows modifying a trigger without first dropping it.