筆記: 環境 - Postgre從安裝到使用

阿賀呀發表於2019-02-11

Postgre基本使用

  • 安裝

    利用homebrew安裝 brew install postgresql

  • 啟動

    利用命令列pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start

    注意,postgrel預設啟動埠為:5432,如果想要修改的話,就在後面加引數-p[port]

  • 基本命令

    • 進入環境 psql
    • 切換資料庫 \c databasename
    • 顯示資料表結構 \d tablename
    • 設定自增列 columnname SERIAL
    • 檢視當前時區 show time zone
    • 新增表
      create table "xxxx" (
         "id" bigint SERIAL,
        "column1" timestamp without time zone NOT NULL
      );
      複製程式碼
    • 查詢 select * from tablename
    • 新增 insert into tablename(column1) values(value1)
    • 刪除 delete from tablename where condition
    • 更新 update tablename set column1 = value1 where condition
    • 格式化表資料 turncate tablename ...

相關文章