Hi,
I have a parameter called @version which can be 1, 2, 3, 4, 5
I have 5 columns in my table, price_1, price_2, etc.
I have a stored procedure to get a price which has a parameter called @version
So depending on the value, I have to get price_1, _2, etc.
Right now I build an SQL string and...