Log in to OceanBase Developer Center (ODC) and click the name of the target connection to go to the corresponding connection management page. You can click
To create a trigger, perform the following three steps:
Specify the basic information.
Configure the advanced settings.
Verify the SQL statement.

Specify the basic information
This is Step 1. The
Trigger Name : specifies the name of the trigger.Base Object Mode: specifies the schema where the object that the trigger works on is located.
Base Object Type : specifies the type of the object that the trigger works on. The current version supports only TABLE objects.Base Object Name : specifies the name of the object that the trigger works on.Trigger Status : specifies the state of the trigger. Valid value: On orDisable .
Configure the advanced settings
This is Step 2. The
Trigger Type : specifies the type of the trigger. The current version supports only SIMPLE triggers.Trigger : specifies whether the trigger is activated before or after the triggering event. Valid value: BEFORE or AFTER.Level : specifies the level of the trigger. The current version supports only row-level triggers.Event : specifies the type of operation that activates the trigger. Valid value: INSERT, UPDATE, or DELETE.Column (Optional) : specifies the range that the event specified inEvent applies to. This parameter is displayed when you setEvent to UPDATE. The current version allows you to create only row-level triggers in a table. Therefore, the range here is the columns that the event applies to.Referencing Old (Optional) : specifies an alias for the referenced object that corresponds to the value specified forREFERENCEING OLDin the trigger creation statement.Referencing New (Optional) : specifies an alias for the referenced object that corresponds to the value specified forREFERENCEING NEWin the trigger creation statement.Clause Condition (Optional) : specifies a logical expression for the trigger. After you specify a clause condition, the action specified by the trigger is executed only if the value of the expression is True.
Verify the SQL statement
After you specify all the information in the
The trigger definition statement is generated on the statement editing page based on the information that you specified in the
In addition, the toolbar on the editing page provides the following buttons:
| Button | Description |
|---|---|
| Format | Click this button to apply formatting, such as indentation, line break, and keyword highlighting, to the selected SQL statements or all the SQL statements in the current SQL window. |
| Find and Replace | You can specify search criteria in the search box to find specific content in the script and enter other content in the replacement box to replace the content found. |
| Undo | Click this button to undo the last operation. |
| Redo | Click this button to reverse an
|
| Case Sensitivity | The system supports three configurations:
|
| Indent | The
|
| Comment | The
|
| Previous | Click this button to go back to the
|