create table session_log
(
   userid      int not null,
   phonenumber int
);

1. 테이블 코멘트

comment on column session_log is '세션 로그';

2. 컬럼 코멘트

comment on column session_log.userid      is 'The user ID';
comment on column session_log.phonenumber is 'The phone number including the area code';