"PostgreSQL 계정 삭제"의 두 판 사이의 차이

(새 문서: ==개요== ;PostgreSQL DROP ROLE ;PostgreSQL 계정 삭제 <source lang='sql'> DROP ROLE 계정명; </source> ==실행예시== <source lang='cli'> template1=# \du;...)
 
16번째 줄: 16번째 줄:
  testuser  | Cannot login                                  | {}
  testuser  | Cannot login                                  | {}
</source>
</source>
<source lang='cli'>
template1=# DROP ROLE testuser;
template1=# DROP ROLE testuser;
DROP ROLE
DROP ROLE
26번째 줄: 27번째 줄:
  postgres  | Superuser, Create role, Create DB, Replication | {}
  postgres  | Superuser, Create role, Create DB, Replication | {}
</source>
</source>
<source lang='cli'>


==같이 보기==
==같이 보기==

2016년 3월 23일 (수) 20:38 판

1 개요

PostgreSQL DROP ROLE
PostgreSQL 계정 삭제
DROP ROLE 계정명;

2 실행예시

template1=# \du;
                             List of roles
 Role name |                   Attributes                   | Member of 
-----------+------------------------------------------------+-----------
 postgres  | Superuser, Create role, Create DB, Replication | {}
 testuser  | Cannot login                                   | {}
template1=# DROP ROLE testuser;
DROP ROLE
template1=# \du;
                             List of roles
 Role name |                   Attributes                   | Member of 
-----------+------------------------------------------------+-----------
 postgres  | Superuser, Create role, Create DB, Replication | {}

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}