How to create t-sql scalar value function that input string multivalued and that sould
return string1 + string2 + string3.
How to create scarlar value function that input multivalue function
sql-server-2005
sql-server-2005
How to create t-sql scalar value function that input string multivalued and that sould
return string1 + string2 + string3.
Best Solution
If you are not looking for this please let me know (Just an example)
First create a table with some values
like
To execute the function select dbo.fn_TestFunc(1)
Output:
1 more example
Output