Postgresql drop role command not working

drop role command not working in my postgresql 11. I can't delete the role named 'ckdev' .

 Role name | Attributes | Member of
-----------+------------------------------------------------------------+----------- ckdev | | {} postgres | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
postgres-# drop role ckdev
postgres-# \du List of roles Role name | Attributes | Member of
-----------+------------------------------------------------------------+----------- ckdev | | {} postgres | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
0

1 Answer

Missing ; at the end of sql command?

drop role ckdev;
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like