Hopefully this is simple question, which i am struggling with.
I have a stored procedure (lets call is sp_1), this will only ever return 1 value.
I want to use this within a normal query, so for example.
Select Column1, Sp_1(Column2) as New_Column2
From Table1
Is this possible?
Many thanks
I have a stored procedure (lets call is sp_1), this will only ever return 1 value.
I want to use this within a normal query, so for example.
Select Column1, Sp_1(Column2) as New_Column2
From Table1
Is this possible?
Many thanks