PostgreSQL常用命令

2021-09-29 04:30:19 字數 660 閱讀 1202

create user 使用者名稱 superuser password 『密碼』;

新增使用者

\c tablename

切換資料庫

\l列舉資料庫,相當於mysql的 show database

\dt列舉表,相當於 mysql 的show tables

\d tablename

檢視表結構,相當於 mysql的desc tablename

\di檢視索引

\q推出

create database [資料庫名];

建立資料庫

刪除資料庫

drop database 資料庫名

重新命名乙個表:

alter table 表名a rename to 表名b

刪除乙個表

drop table 表名

在已有的表裡新增字段

alter table 表名 add column 欄位名 型別

刪除表中的字段

alter table 表名 drop column 欄位名

修改資料庫中列的屬性

alter table 表名 alter 列名 type 型別名(350)

重新命名乙個字段

alter table 表名 rename column 欄位名a to 欄位名b

postgresql常用命令

最近一直在學習postgresql,下面是自己整理的postgresql的常用命令 連線資料庫,預設的使用者和資料庫是postgres psql u user d dbname 切換資料庫,相當於mysql的use dbname c dbname 列舉資料庫,相當於mysql的show databa...

postgresql常用命令

最近一直在學習postgresql,下面是自己整理的postgresql的常用命令 連線資料庫,預設的使用者和資料庫是postgres psql u user d dbname 切換資料庫,相當於mysql的use dbname c dbname 列舉資料庫,相當於mysql的show databa...

postgresql常用命令

最近一直在學習postgresql,下面是自己整理的postgresql的常用命令 連線資料庫,預設的使用者和資料庫是postgres psql u user d dbname 切換資料庫,相當於mysql的use dbname c dbname 列舉資料庫,相當於mysql的show databa...