Subject Re: [firebird-support] call a stored procedure
Author Anderson Farias
Hi,


> select
> document.id_document,
> DOC_IESIRE_MOD_CALC_6(document.id_document) /*all the fields */
> from document

just JOIN them, example:


select
document.id_document,
dc.*
from document
left join DOC_IESIRE_MOD_CALC_6(document.id_document) dc
on (1=1)



Regards,
Anderson