I am trying to execute an update query in a stored procedure. The problem is that the name of the column to be set is not settled but defined by a variable.
UPDATE TBL_TEST SET variable = value
I generate the query dynamically and put it in a string but now I do not know how to execute it.
All ideas is welcome.
Thanks is advance.
Manue