Is there a way to call a SQL Server / T-SQL function using parameter names?
Something like:
select dbo.function1 (@par1 = 1, @par2 = 2)
It is possible to do so with stored procedures.
Is there a way to call a SQL Server / T-SQL function using parameter names?
Something like:
select dbo.function1 (@par1 = 1, @par2 = 2)
It is possible to do so with stored procedures.