postgres資料庫常用操作 1 使用者操作

2021-07-24 07:18:01 字數 1123 閱讀 3930

連線資料庫

psql -u 使用者名稱 資料庫

切換資料庫

\c dbname

列舉資料庫

\l列舉表

\dt檢視表結構

\d tblname

檢視索引 

\di建立資料庫: 

create database [資料庫名]; 

刪除資料庫: 

drop database [資料庫名];  

*重新命名乙個表: 

alter table [表名a] rename to [表名b]; 

*刪除乙個表: 

drop table [表名]; 

*在已有的表裡新增字段: 

alter table [表名] add column [欄位名] [型別]; 

*刪除表中的字段: 

alter table [表名] drop column [欄位名]; 

*重新命名乙個字段:  

alter table [表名] rename column [欄位名a] to [欄位名b]; 

*給乙個字段設定預設值:  

alter table [表名] alter column [欄位名] set default [新的預設值];

*去除預設值:  

alter table [表名] alter column [欄位名] drop default; 

在表中插入資料: 

insert into 表名 ([欄位名m],[欄位名n],......) values ([列m的值],[列n的值],......); 

修改表中的某行某列的資料: 

update [表名] set [目標欄位名]=[目標值] where [該行特徵]; 

刪除表中某行資料: 

delete from [表名] where [該行特徵]; 

delete from [表名];--刪空整個表 

建立表: 

create table ([欄位名1] [型別1] ;,[欄位名2] [型別2],......<,primary key (欄位名m,欄位名n,...)>;); 

\q             退出 psql

檢視執行時間

\timing

postgres模板資料庫

create database 實際上是通過拷貝乙個現有的資料庫進行工作的。預設時,它拷貝名為 template1 的標準系統資料庫。所以該資料庫是建立新資料庫的 模板 如果你給 template1 增加物件,這些物件將被拷貝到隨後建立的使用者資料庫中。這樣的行為允許節點對資料庫中的標準套件進行修改...

postgres資料庫部署遷移

條件 1.假設從linux a xiaoming 11.11.11.11 遷移至 b xiaoming 11.11.11.12 原資料庫old db,管理使用者xiaoming,密碼123456 2.假定使用者xiaoming,同時已經配置好了ssh到a和b,並且具備sudo許可權.該條未滿足,須學...

解除安裝安裝postgres資料庫

一 postgres的解除安裝 a.centos系統 1.檢視版本號和系統類別 cat etc redhat realease 2.如果是redhat yum install a yum 刪除軟體包 yum remove postgresql 或者 rpm qa grep postgresql 然後...