Specify the trigger event
The trigger event is the type of DML statement that activates the trigger. When a statement of this type is performed on the table, the database server executes the SQL statements that make up the triggered action. For tables, the trigger event can be an INSERT, SELECT, DELETE, or UPDATE statement. For UPDATE or SELECT trigger event, you can specify one or more columns in the table to activate the trigger. If you do not specify any columns, then an UPDATE or SELECT of any column in the table activates the trigger. You can define multiple INSERT, DELETE, UPDATE and SELECT triggers on the same table, and multiple INSERT, DELETE, and UPDATE triggers on the same view.
You can only create a trigger on a table or view in the current database. Triggers cannot reference a remote table or view.
CREATE TRIGGER upqty
UPDATE OF quantity ON items -- an UPDATE trigger event
CREATE TRIGGER ins_qty
INSERT ON items -- an INSERT trigger event