PostgreSQL資料庫建立/刪除,postgresql資料庫

來源:互聯網
上載者:User

PostgreSQL資料庫建立/刪除,postgresql資料庫
方法1 - 系統命令
sudo su - postgres #切換到postgres使用者(系統使用者)
createdb weichen #建立資料庫
psql #直接存取資料庫(預設進入本地postgres資料庫)
\l --查看資料庫列表
:q --退出列表頁面
\q --退出用戶端
dropdb weichen #刪除資料庫

方法2 - psql命令列
sudo -u postgres psql #登入用戶端
create database weichen; --建立資料庫
create database sz owner postgres; --建立資料庫
select oid,datname from pg_database; --查看資料庫列表
drop database weichen; --刪除資料庫
drop database sz; --刪除資料庫

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.