So I have a table in SQL server that is defined as such create table test(value varchar(200), Reverse(value) as valueReverse); now when I insert something in this t
create table test(value varchar(200), Reverse(value) as valueReverse);