postgresql的安装与基础语法
Posted rockluoye
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgresql的安装与基础语法相关的知识,希望对你有一定的参考价值。
查看用户
postgres-# du
角色名称 | 属性 | 成员属于
----------+--------------------------------------------+----------
postgres | 超级用户, 建立角色, 建立 DB, 复制, 绕过RLS | {}
查看所有数据库
postgres-# l
名称 | 拥有者 | 字元编码 | 校对规则 | Ctype | 存取权限
-----------+----------+----------+--------------------------------+--------------------------------+-----------------------
postgres | postgres | UTF8 | Chinese (Simplified)_China.936 | Chinese (Simplified)_China.936 |
template0 | postgres | UTF8 | Chinese (Simplified)_China.936 | Chinese (Simplified)_China.936 | =c/postgres +
| | | | | postgres=CTc/postgres
template1 | postgres | UTF8 | Chinese (Simplified)_China.936 | Chinese (Simplified)_China.936 | =c/postgres +
| | | | | postgres=CTc/postgres
(3 行记录)
创建数据库
postgres=# create database mydb;
CREATE DATABASE
以上是关于postgresql的安装与基础语法的主要内容,如果未能解决你的问题,请参考以下文章