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的安装与基础语法的主要内容,如果未能解决你的问题,请参考以下文章

python基础-编码环境安装与基本语法

SQL语法基础

PostgreSQL 基础知识:psql 提示和技巧

[python 基础系列] 辅助函数,语法基础和变量

flutter基础入门教程(Dart语法+UI布局+页面路由+后端连接)

python实战-02-基础语法及pip安装