PostgreSQL資料庫建立 刪除

2021-09-09 04:31:03 字數 500 閱讀 4068

方法1 - 系統命令

sudo su - postgres #切換到postgres使用者(系統使用者)

createdb weichen #建立資料庫

psql #直接訪問資料庫(預設進入本地postgres資料庫)

\l --檢視資料庫列表

:q --退出列表頁面

\q --退出client

dropdb weichen #刪除資料庫

方法2 - psql命令列

sudo -u postgres psql #登入client

create database weichen; --建立資料庫

create database sz owner postgres; --建立資料庫

select oid,datname from pg_database; --檢視資料庫列表

drop database weichen; --刪除資料庫

drop database sz; --刪除資料庫

PostgreSQL建立資料庫使用者

注 版本不同,命令的執行路徑可能有些不同。一.建立資料庫使用者freeswitch sudo u postgres usr pgsql 9.5 bin createuser s e freeswitch 二.建立pg資料庫freeswitch,所有者為使用者freeswitch sudo u pos...

postgresql模板資料庫

template0和template1為postgresql資料庫的模板資料庫,新建的資料庫預設使用template1作為模板。template0和template1的區別在於template0無法修改,因此你可以修改template1資料庫以定製新建立的資料庫。template資料庫無法被刪除 d...

postgresql資料庫安裝

安裝並初始化 1 解壓資料庫並放到指定目錄 在opt目錄下 tar xvzf postgresql 10.1 1 linux x64 binaries.tar.gz 解壓出來之後目錄為pgsql 2 mv pgsql usr local pgsql 3 建立pgsql使用者並設定密碼 useradd...