postgreSql 入門常用命令

來源:互聯網
上載者:User

標籤:

1. 命令列登入資料庫
psql -U username -d dbname -h hostip -p port
2. 列出所有資料庫
\l 
3. 切換資料庫
\c dbname
4. 列出當前資料庫的所有表
\d 
5. 查看指定表的所有欄位
\d  tablename

6. 查看指定表的基本情況
\d+  tablename

7. 退出操作
q
8. 建立表
create table REL_CROSS_NODE(ID integer, CROSS_ID integer);
9. 刪除表
drop table REL_CROSS_NODE;
10. 添加欄位
alter table [表名] add column [欄位名] [類型];
11. 更改欄位
alter table [表名] rename column [舊欄位名] to [新欄位名];
12. 刪除欄位
alter table [表名] drop column [欄位名];
13. 表中加入一行資料
insert into [表名] (欄位1,欄位2) values (值1,值2);
14. 表中刪除一行資料
 delete from [表名] where [該行特徵]; 
15. 修改表中資料
update [表名] set [目標欄位名]=[目標值] where [該行特徵]
16. 刪除表
drop table [表名];
17. 退出postgreSql
\q
18. 兩個查詢結果做差 except
(select node_id from node where node_id=1 or node_id=2) except (select node_id from node where node_id=1); node_id ---------       2(1 row)

 

postgreSql 入門常用命令

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.