(1)使用命令行鏈接數據庫 psql -U postgres -h localhost -p 5433 (2)列出全部的數據庫 \l -- 查看全部數據庫 (3)進入某個數據庫 \c name -- name是表名 (4)列出數據庫的全部數據表和視圖 \d -- 列出全部的數據表和視圖 \dt \d tablename 刪除表 drop table (5)列出某個數據表的全部字段 \d table name --table name 是表的名稱 (6)列出視圖的規則 \d+ view name -- view name 視圖的規則 (7)退出 \q --退出 下面導出處數據庫 pg_dump -U postgres -h localhost -p 5434 test > testname -- test 須要到出的表名 testname 是導出的文件名 導入已導出的文件(前提要有一個空的數據庫) 刪除整個數據庫 drop database name -- name 數據庫名 建立空數據庫 create database name -- name 是數據庫名 導入 psql -U postgres -h localhost -p 5434 test < testname -- test要導入數據庫的名稱 testname 是以前要導入進來的文件名稱 重啓數據庫服務 sudo service postgresql restart // === 清空某個數據表 ==== truncate table name -- name 是表名 // ==== 重置自增序列 ==== alter sequence name restart with 1 --- name 序列名