Hi guys,
I would like to know if it's possible to call a inline function with an output parameter from a scalar function?
For example:
My inline function is called test_1(input parameter format bigint), the following example works great:
SELECT * FROM MM.test_1(4679)
But now I would like to use it with an output parameter from a scalar function called dbo.test_2(output parameter format bigint) to make it more dynamically, but it don't works?
SELECT (SELECT * FROM MM.test_1(dbo.test_2(kp.id)))
FROM kp kp
WHERE id = 4679
I receive the following error message:
"Error in list of function arguments: '.' not recognized.
Incomplete parameters list.
Missing FROM clause.
Unable to parse query text."
Any suggestions?
Any help will be appreciated!
Thx forward, Best Regards Andreas