I need to add an auto-updating timestamp column to a vendor-supplied table. Unfortunately, the vendor already has used the [timestamp] name for a custom-column (using the datetime type). If I create a column with a different name, but still use the timestamp type, will SQL still auto-update this field for me?
In other words, when SQL updates a row, does it look for any column with a timestamp type, or specifically for a column named [timestamp] with a timestamp type?
-thanks
In other words, when SQL updates a row, does it look for any column with a timestamp type, or specifically for a column named [timestamp] with a timestamp type?
-thanks