SQL Guide : solidDB® SQL statements : CREATE TRIGGER : trigger_body
  
trigger_body
The trigger_body contains the statement(s) to be executed when a trigger fires. The trigger_body definition is identical to the stored procedure definition. Read CREATE PROCEDURE for details on creating a stored procedure body.
Note It is valid syntactically to create a trigger with an empty body, although it is not useful.
A trigger body may also invoke any procedure registered with a solidDB® server. solidDB® procedure invocation rules follow standard procedure invocation practices.
You must explicitly check for business logic errors and raise an error.
See also
CREATE TRIGGER