Skip to content
Advertisement

Tag: table-valued-parameters

How to pass a user defined table type returned from a function as a parameter to another inline function (without ‘DECLARE’)?

I’m afraid the answer to this is “NO, you can’t”, but since I can’t find this explained anywhere I’m gonna ask anyway. Given a user defined table type: And a function that returns that type: And another function that accepts that type: Since the return value of fnFind fits the value that is accepted by fnName, I’d hoped that I

Advertisement