In postgres, how do I change an existing user to be a superuser? I don\'t want to delete the existing user, for various reasons.
# alter user myuser ...?
Run this Command
alter user myuser with superuser;
If you want to see the permission to a user run following command
\du