Create a table add the values to it, or you can hard code each variable or do dynamic. Those are the only options I know of.Create Table Mytable(Make varchar(40))insert into MytableSelect 'Ford' Union AllSelect 'BMW' Union AllSelect 'Infinity'
THen just referance that table in your code.To return a valuedeclare @myval intExec @Myval = Get_LMCost
or if you are returning a tablecreate table T_MyResults(MyValues Varchar(20))Insert INto T_MyResultsexec Get_LMCost