「PostgreSQL」:修訂間差異
跳至導覽
跳至搜尋
第1行: | 第1行: | ||
'''PostgreSQL'''是一套[[RDBMS]]。 | '''PostgreSQL'''是一套[[RDBMS]]。 | ||
== 安裝 == | |||
<syntaxhighlight lang="bash"> | |||
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'; wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -; sudo apt update; sudo apt install -y postgresql | |||
</syntaxhighlight> | |||
== 常用指令 == | == 常用指令 == |
於 2020年8月14日 (五) 08:38 的修訂
PostgreSQL是一套RDBMS。
安裝
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'; wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -; sudo apt update; sudo apt install -y postgresql
常用指令
建立資料庫與帳號:
CREATE DATABASE exampledb;
CREATE USER exampleuser WITH ENCRYPTED PASSWORD 'password';
GRANT ALL PRIVILEGES ON DATABASE exampledb TO exampleuser;
外部連結
- 官方網站 (英文)