Subject Re: Exec. statement parameters
Author lacakus
> Another possibles syntaxes:
> select * from proc with (x = 1, y = 2)

reading SQL:2003 I would suggest:

select * from proc USING (x = 1, y = 2) --for named parameters
select * from proc (x = 1, y = 2) --for unnamed parameters -> bool
expressions

-Laco.