postgresql建表时添加注释
时间: 2023-06-04 18:02:28 浏览: 4116
可以使用以下语句在 PostgreSQL 中添加表注释:
```
COMMENT ON TABLE table_name IS 'Table comment';
```
其中,table_name 是要添加注释的表名,'Table comment' 是表的注释内容。
相关问题
postgresql建表语句
Sure, I can help you with that. Please provide me with the specifications of the table you want to create so that I can assist you with the PostgreSQL create table statement.
postgresql建表增加备注
在 PostgreSQL 中,可以使用 COMMENT 命令为表、列、约束等对象添加注释。具体的步骤如下:
1. 创建表时,在表名后面使用 WITH 语句添加注释,如下所示:
```
CREATE TABLE table_name (
column1 datatype1,
column2 datatype2,
...
) WITH (OIDS=FALSE) COMMENT 'table comments';
```
2. 为已有表添加注释,可以使用 ALTER TABLE 命令,如下所示:
```
ALTER TABLE table_name
OWNER TO new_owner
COMMENT 'table comments';
```
3. 添加列的注释,可以使用 ALTER TABLE ADD COLUMN 命令,如下所示:
```
ALTER TABLE table_name
ADD COLUMN column_name datatype
COMMENT 'column comments';
```
4. 添加约束的注释,可以使用 ALTER TABLE ADD CONSTRAINT 命令,如下所示:
```
ALTER TABLE table_name
ADD CONSTRAINT constraint_name UNIQUE (column1, column2, ...);
COMMENT ON CONSTRAINT constraint_name ON table_name IS 'constraint comments';
```
阅读全文