Subject | Re: [ib-support] Please help. View is empty, but the same SELECT works! |
---|---|
Author | Andrew Guts |
Post date | 2002-09-16T12:49:37Z |
Alan McDonald wrote:
>can you try these without the castThe same odd thing. View is still empty.
>and with just a where instead of join
>to see what happens
>create view vDeps2(DepID, Descr) as
>select d.DepID, d.Bank||' '||d.AccountNo Descr
>from DepRights r, departments d where r.DepID = d.DepID
>
>and
>select d.DepID, d.Bank||' '||d.AccountNo Descr
>from DepRights r, departments d where r.DepID = d.DepID
>
>
>