Multiple choice technology databases which command do u used to remove trigger(business_hour) in iSQL environment ? DELETE TRIGGER business_hour DROP TRIGGER business_hour REMOVE TRIGGER business_hour ALTER TRIGGER business_hour remove Reveal answer Fill a bubble to check yourself B Correct answer Explanation The standard SQL command to remove a trigger is DROP TRIGGER trigger_name. DELETE is for data rows, REMOVE is not valid SQL, and ALTER TRIGGER ... REMOVE is not valid syntax.