Subject | Re[2]: [firebird-support] Re: Stored Procedure as a Function? |
---|---|
Author | Nando Dessena |
Post date | 2003-09-26T11:28:37Z |
Helen, Martijn,
select foo.col1, xy.outputparam
from foo
join someproc(...) xy on foo.col2 = xy.outputparam
I second the idea of CREATE FUNCTION, even though it's only syntactic
sugar AFAICT.
Ciao
--
Nando mailto:nandod@...
>> > select foo.col1, xy.outputparamThis should work instead:
>> > from foo
>> > join xy on foo.col2 = xy.inputparam
>>I've never seen that syntax and according to my
>>Firebird install, it doesn't work either.
select foo.col1, xy.outputparam
from foo
join someproc(...) xy on foo.col2 = xy.outputparam
I second the idea of CREATE FUNCTION, even though it's only syntactic
sugar AFAICT.
Ciao
--
Nando mailto:nandod@...