It is necessary when adding an entry to the table, calculate the last column.
For example, if inserted
(ID | UserName | CreatedTime | AsText)
then insert value set
DECLARE @new_str = 'Новое сообщение: ' + UserName + ', создано: '+CreatedTime; AsText = @new_str
The remaining values remain the same. Maybe there is an example! Thank!