How to check existing roles in Postgres? Scripts to check existing roles in Postgres?
Ezana Answered question 17/04/2023
We can check the existing roles of Postgresql database using the following query:
SELECT rolname FROM pg_roles;
Ezana Answered question 17/04/2023