Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 4 Current »

List out personnel with system roles

select system_role.id as system_role_id, person.id as person_id, name, username, role_id, role, system_role.office_id, campus.description  
from person, system_role, role, campus, office
where person.id=system_role.person_id and
role.id=system_role.role_id and
office.id=system_role.office_id and
campus.id=office.campus_id order by person_id;
  • No labels