Use the below sql query to list all the users of a group where groupname is the name of the group.
select u.usename from pg_user u , pg_group gwhere u.usesysid = g.grolistand g.groname='groupname';
Use the below sql query to list all the users of a group where groupname is the name of the group.
select u.usename from pg_user u , pg_group gwhere u.usesysid = g.grolistand g.groname='groupname';