摘要: 建表语句 -- sys_dict_type create table sys_dict_type( id bigint primary key, name varchar(100), type varchar(100), group_code varchar(100), status char(1) 阅读全文
posted @ 2024-06-09 10:40 潼关路边的一只野鬼 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 逻辑结构 PostgreSQL教程--逻辑结构:实例、数据库、schema、表之间的关系 数据库基本管理 -- 查询所有数据库 select datname from pg_catalog.pg_database ; -- 创建数据库 create database jx with encoding 阅读全文
posted @ 2024-06-09 10:21 潼关路边的一只野鬼 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 建表语句 序列 create sequence seq_jx increment by 1 start with 1 nomaxvalue nominvalue cache 10; 字典类型表 create table sys_dict_type( id number(20) primary key 阅读全文
posted @ 2024-06-09 03:26 潼关路边的一只野鬼 阅读(6) 评论(0) 推荐(0) 编辑