I had defined a variable Test which is @[User::Test] with string value "abc".
My question is can I set the sql command that update my table where my column value = my variable ?
example.
update tableA set ValueB = '1pm' where ValueA = '" + @[User::Test] + "'
But this is not working for me. How to solve it ?