Title:
PostgreSQL
|
edited by
Youngrok Pak
at
10 years, 1 month ago.
<h2>자주 까먹는 명령어</h2>
<p>사용자 생성</p>
<pre>create role <username> with login password <password>;</pre>
<p>권한 지정</p>
<pre>grant usage on schema public to <username>;<br>grant all on schema public to <username>;<br>grant all privileges on database <dbname> to <username>;<br>grant all on all tables in schema public to <username><br>grant select on <table> to <username>;</pre>
<p>커넥션 현황 보기</p>
<pre>SELECT count(*) from pg_stat_activity;</pre>
<h2>파이썬에서 사용하기</h2>
<pre>import psycopg2<br>conn = psycopg2.connect('host=db.com user=youngrok password=blahblah dbname=mydb<br>cursor = conn.cursor()<br>cursor.execute('SELECT * FROM auth_user')<br>print cursor.fetchall()</pre>
<p>