I have read that indexing columns that are frequently updated can be bad for performance.
But I was wondering if this is case even with columns that are incremental in nature? For example, given a table which sees lots of updates, UpdatedAt column will get updated very frequently. But it would always update to newer values, which can be appended at end of the indexes. The major part of existing indexes will not see any updates. So for use-cases where there are queries using UpdatedAt column, wouldn't having indexes on this column be of least risk in most scenarios?