db 생성
create database simpleboard;
db 삭제
drop database post;
역할 생성
create role seung with login password '1234' createdb;
table 생성
create table post (
id serial,
title text,
content text,
author text,
primary key(id)
);
현재 db 테이블 목록 조회
\dt