I am creating a view with the query shown below:
create view v2 as
(select * from appearance a
where exists (
select p.id from photo p, photographer u, person s
where p.takenBy = u.id
and u.id = s.id
and a.isShownIn = p.id
and s.name = 'Fred'
)
);
The appearance table has 2 columns 'shows' and 'isShownIn' but when i try to insert in the view, it gives me error as Error Code: 1054. Unknown column 'a.isShownIn' in 'where clause'
While browsing over this I cam over that I am mistaking over alias, but everything looks OK to me, could anyone please point out where could be the error?
Thanks!