PostgreSQL教程

postgresql 创建表

本文主要是介绍postgresql 创建表,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1、创建表

CREATE table tb_user
(
    id serial primary key not null ,
    name varchar(20) not null default '' 
) ;


comment on column tb_user.id is '主键id';

comment on column tb_user.name is '用户名';

comment on table tb_user is '用户表';

-- 设置主键自增  serial

-- 设置表的备注信息

  comment on 表名 is '表注释';

  comment on table tb_user is '用户表';

-- 设置列名备注

  comment on column 表名.字段名 is '字段注释';

  comment on column tb_user.name is '用户名';

这篇关于postgresql 创建表的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!