随笔分类 -  PostgreSQL

PostgreSQL
摘要:一、前言 1、本文主要内容 PostgreSQL 12 安装(yum) PostgreSQL 12 基础配置 PostgreSQL 12 远程访问配置 PostgreSQL 基础管理 2、本文环境信息与适用范围 环境信息 软件版本 CentOS 7.6 Release PostgreSQL 12.x 阅读全文
posted @ 2022-03-07 16:50 译林 阅读(1091) 评论(0) 推荐(0)
摘要: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 阅读全文
posted @ 2021-12-08 10:23 译林 阅读(2183) 评论(0) 推荐(0)