Olivier Mascia wrote: > Writing a scalar SQL function, is there a C-level way to call some > other scalar SQL function?
The only way is to build an SQL statement from within the function and execute it. > I think it is obvious I could build a SQL statement from within the > function and execute it. But it sounds costly to involve the parser > (yes, it's fast) for that, isn't it? You can prepare the statement beforehand. Regards, Clemens