Re: How to cascade information like the user roles ?

Поиск
Список
Период
Сортировка
От Filip Rembiałkowski
Тема Re: How to cascade information like the user roles ?
Дата
Msg-id 92869e661001190627i4d42e368nbb0e96bf5c54ca76@mail.gmail.com
обсуждение исходный текст
Ответ на How to cascade information like the user roles ?  (Andreas <maps.on@gmx.net>)
Ответы Re: How to cascade information like the user roles ?
Список pgsql-sql


2010/1/19 Andreas <maps.on@gmx.net>
Hi,

I need something like the user-roles of PG to store options of my users.
I guess i need a table with roles, options and one that stores the refernces from roles to options.

roles (role_id, role_name)
option (option_id, option_name)
role_has_option (role_fk, option_fk)

so far is easy. Now I can let role1 have option1 and option2 ...

But I'd further like to let role2 inherit role1's options and also have option3.
role_inherits_role (parent_role_fk, child_role_fk)
1, 2

What SELECT would deliver all options for role2 inkluding the inherited ones?
like
role_id, option_id
2, 1
2, 2
2, 3


select role_fk as role_id, option_fk as option_id from role_has_option where role_fk = 2
union
select inh.child_role_fk, opt.option_fk from role_has_option opt join role_inherits_role inh on inh.parent_role_fk = opt.role_fk where inh.child_role_fk = 2


?



--
Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql



--
Filip Rembiałkowski
JID,mailto:filip.rembialkowski@gmail.com
http://filip.rembialkowski.net/

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

Предыдущее
От: Andreas
Дата:
Сообщение: How to cascade information like the user roles ?
Следующее
От: Andreas
Дата:
Сообщение: Re: How to cascade information like the user roles ?