Call a function from a SELECT statement
Hi,
I want to add a column in my result with a result I get when calling a function. First q - is it possible to call a function inside a SELECT statement? The function requires parameters so my question would be (if it works) something like
SELECT A, B, C, functionX(B, C)
FROM TableY
Is above possible at all? If, pls advice syntax/query.