Subject | English | Russian |
d.b.. | computed column | вычисляемый столбец (напр., столбец с длиной не более 450 символов определяется на языке T-SQL следующим образом: ALTER TABLE YourTableName ADD ShortColumnName AS LEFT(LongColumnName, 450) ssn) |
SAP.fin. | computed column | производный столбец |
comp., MS | computed column | вычисляемый столбец (A virtual column in a table whose value is computed at run time) |
comp., MS | persisted computed column | материализованный вычисляемый столбец (A computed column of a table that is physically stored, and whose values are updated when any other columns that are part of its computation change. Applying the persisted property to a computed column allows for indexes to be created on it when the column is deterministic, but not precise) |