Skip to main content

This version of the product is no longer supported, and this documentation is no longer updated regularly. See the latest version of this content.Opens in a new tab

UpdateColumnList

Specifies one or more columns whose modification causes the trigger to be fired by SQL. Available only for TSQL.

Usage

To specify the columns whose modification fires the trigger, use the following syntax:

Trigger name [ Event = sqlevent, UpdateColumnList = updatecolumnlist ] 
{
   //implementation
}

Where updatecolumnlist is either a column name or comma-separated list of column names, enclosed in parentheses.

Details

This keyword specifies one or more columns whose modification causes the trigger to be fired. Note that this keyword is only available for TSQL.

See Also

FeedbackOpens in a new tab