Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
select 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;