Using named parameters in a table function

Is there a way to use named parameters with table functions? My users insist on using them with their frontend for my db objects.

+3


source to share


1 answer


No, you cannot do this. Unlike stored procedures, in which you can use named parameters, parameters in table functions are strictly positioned.



+2


source







All Articles