Subject Re: [firebird-support] View with parameters in 'where'
Author Helen Borrie
At 11:02 AM 28/04/2004 +0300, you wrote:
>Is it posible to create a view with parameters in 'where' ?

No. A view doesn't work like a SP - at run-time it's not manufactured data
but an actual view of live data. You parameterise it when you access it -
just as with any table:

select blaaaaah from MyView
where aColumn = ?
and bColumn = ?
and so on.

/hb