Re: Complex view question

Поиск
Список
Период
Сортировка
От Glenn MacGregor
Тема Re: Complex view question
Дата
Msg-id 031001c19ed1$754da1e0$4d00a8c0@catamount
обсуждение исходный текст
Ответ на Complex view question  ("Glenn MacGregor" <gtm@oracom.com>)
Ответы Re: Complex view question  ("Josh Berkus" <josh@agliodbs.com>)
Список pgsql-sql
I have simplified this by creating some views that do work, but I still having the same problem.  So what is the difference between the two queries:
 
Query 1:  returns correct number of rows
select * from overperms where username='test' union select * from defaultperms where username='test' and vimname not in (select vimname from overperms where username='test');
 
Query 2:  return incorrect number of rows
create view perms as select * from overperms union select * from defaultperms where vimname not in (select vimname from overperms);
 
select * from perms where username='test';
 
    Thanks
 
            Glenn
 
----- Original Message -----
Sent: Wednesday, January 16, 2002 2:43 PM
Subject: [SQL] Complex view question

Hi All...again,
 
I have this complex query with a union and a not in subselect.
 
Query:

select xpressvim.vimname, xpressvimpermission.commandaccess, xpressvimpermission.eventaccess from xpressvim left join xpressvimpermission using (vimid) left join xpressgroup using (groupid) left join xpressuser using (groupid) where (xpressvimpermission.commandaccess is not null and xpressuser.username = 'gtm@jabber.oracom.com') union select xpressvim.vimname, xpressgroup.commandaccess, xpressgroup.eventaccess from xpressgroup left join xpressuser using (groupid) natural join xpressvim where xpressuser.username = 'gtm@jabber.oracom.com' and xpressgroup.commandaccess != 'n' and xpressvim.vimname not in (select xpressvim.vimname from xpressvim left join xpressvimpermission using (vimid) left join xpressgroup using (groupid) left join xpressuser using (groupid) where (xpressvimpermission.commandaccess is not null and xpressuser.username = 'gtm@jabber.oracom.com'));

 

I want to make that a view where I can change the username = '' to whatever user I need it to be.  So I do the following:

create view tmpview as select xpressvim.vimname, xpressvimpermission.commandaccess, xpressvimpermission.eventaccess, xpressuser.username from xpressvim left join xpressvimpermission using (vimid) left join xpressgroup using (groupid) left join xpressuser using (groupid) union select xpressvim.vimname, xpressgroup.commandaccess, xpressgroup.eventaccess, xpressuser.username from xpressgroup left join xpressuser using (groupid) natural join xpressvim where xpressvim.vimname not in (select xpressvim.vimname from xpressvim left join xpressvimpermission using (vimid) left join xpressgroup using (groupid) left join xpressuser using (groupid));

remove all the where's except for the not in.  If I now select from the view:  select * from tmpview where mailto:username='gtm@jabber.oracom.com'  I get results but it is not the same number of rows as the other one.  The first one has the correct number of rows, the view doesn't.  Did I miss something here?

 

Thanks

        Glenn

В списке pgsql-sql по дате отправления:

Предыдущее
От: "Glenn MacGregor"
Дата:
Сообщение: Complex view question
Следующее
От: "Josh Berkus"
Дата:
Сообщение: Re: Complex view question