Views can be specified in a trigger statement
B
Correct answer
Explanation
Views cannot be specified in trigger statements because triggers require base table events to fire properly. A view is a derived object that doesn't directly support the event-based nature of triggers. Triggers must be associated with actual tables that generate the events (INSERT, UPDATE, DELETE).