如何在PostgreSQL的列中添加注释?
create table session_log (
UserId int index not null,
PhoneNumber int index);
如何在PostgreSQL的列中添加注释?
create table session_log (
UserId int index not null,
PhoneNumber int index);
Answers:
使用以下comment
语句将注释附加到列:
create table session_log
(
userid int not null,
phonenumber int
);
comment on column session_log.userid is 'The user ID';
comment on column session_log.phonenumber is 'The phone number including the area code';
您还可以在表中添加评论:
comment on table session_log is 'Our session logs';
另外:int index
无效。
如果要在列上创建索引,请使用以下create index
语句:
create index on session_log(phonenumber);
如果要在两个列上都使用索引,请使用:
create index on session_log(userid, phonenumber);
您可能想将用户标识定义为主键。使用以下语法(而不是使用int index
)完成此操作:
create table session_log
(
UserId int primary key,
PhoneNumber int
);
将列定义为主键隐式地使其成为主键 not null