Новости | FAQ | Авторы | Документация | В действии | Библиотека |
Инструменты | Полезные ссылки | Хостинги | Скачать | Примеры | Форум |
Никита Козин 21.12.2005 13:14
^MAIN:pSQL.table{
SELECT
acl.object_id,
acl.rights,
auser.auser_id,
auser.name,
auser.description,
auser.auser_type_id,
auser.rights AS user_rights
FROM
acl,
auser
WHERE
acl.auser_id = auser.auser_id
AND acl.object_id IN ()
AND acl.auser_id IN (1,2,3)
ORDER BY
auser.name
}