postgresql建表时添加注释
时间: 2023-06-04 21:02:28 浏览: 4181
可以使用以下语句在 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建表查询语句:
```sql
-- 创建info表
CREATE TABLE info (
id SERIAL PRIMARY KEY,
name VARCHAR(50),
email VARCHAR(100),
depart_id INT
);
-- 创建depart表
CREATE TABLE depart (
id SERIAL PRIMARY KEY,
title VARCHAR(50)
);
```
这个示例中,我们创建了两个表:info和depart。info表包含了id、name、email和depart_id四个字段,其中id是主键。depart表包含了id和title两个字段,其中id也是主键。
阅读全文