Homebrew で PostgreSQL を操作する

Homebrewを使ってインストールしたPostgreSQLを操作するときのコマンドの覚え書きです。

PostgreSQL の起動・終了

PostgreSQL を起動する

brew services start postgresql

PostgreSQL を終了する

brew services stop postgresql

起動状況を確認する

brew services list

データベースの操作

データベース一覧の表示


This content originally appeared on DEV Community and was authored by Mako

Homebrewを使ってインストールしたPostgreSQLを操作するときのコマンドの覚え書きです。

PostgreSQL の起動・終了

  • PostgreSQL を起動する
brew services start postgresql
  • PostgreSQL を終了する
brew services stop postgresql
  • 起動状況を確認する
brew services list

データベースの操作

  • データベース一覧の表示
psql -l
  • データベースを作成する
createdb [database name]
  • データベースを削除する
dropdb [database name]
  • データベースにアクセスする
psql [database name]

データベース内の操作

  • データテーブル一覧
\dt
  • データベースを切り替える
\c [database name]
  • データベースへのアクセスを終了する
\q
  • 列を追加
INSERT INTO table (column1, column2) VALUES (value1, value2)


This content originally appeared on DEV Community and was authored by Mako


Print Share Comment Cite Upload Translate Updates
APA

Mako | Sciencx (2021-06-27T00:20:11+00:00) Homebrew で PostgreSQL を操作する. Retrieved from https://www.scien.cx/2021/06/27/homebrew-%e3%81%a7-postgresql-%e3%82%92%e6%93%8d%e4%bd%9c%e3%81%99%e3%82%8b/

MLA
" » Homebrew で PostgreSQL を操作する." Mako | Sciencx - Sunday June 27, 2021, https://www.scien.cx/2021/06/27/homebrew-%e3%81%a7-postgresql-%e3%82%92%e6%93%8d%e4%bd%9c%e3%81%99%e3%82%8b/
HARVARD
Mako | Sciencx Sunday June 27, 2021 » Homebrew で PostgreSQL を操作する., viewed ,<https://www.scien.cx/2021/06/27/homebrew-%e3%81%a7-postgresql-%e3%82%92%e6%93%8d%e4%bd%9c%e3%81%99%e3%82%8b/>
VANCOUVER
Mako | Sciencx - » Homebrew で PostgreSQL を操作する. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/06/27/homebrew-%e3%81%a7-postgresql-%e3%82%92%e6%93%8d%e4%bd%9c%e3%81%99%e3%82%8b/
CHICAGO
" » Homebrew で PostgreSQL を操作する." Mako | Sciencx - Accessed . https://www.scien.cx/2021/06/27/homebrew-%e3%81%a7-postgresql-%e3%82%92%e6%93%8d%e4%bd%9c%e3%81%99%e3%82%8b/
IEEE
" » Homebrew で PostgreSQL を操作する." Mako | Sciencx [Online]. Available: https://www.scien.cx/2021/06/27/homebrew-%e3%81%a7-postgresql-%e3%82%92%e6%93%8d%e4%bd%9c%e3%81%99%e3%82%8b/. [Accessed: ]
rf:citation
» Homebrew で PostgreSQL を操作する | Mako | Sciencx | https://www.scien.cx/2021/06/27/homebrew-%e3%81%a7-postgresql-%e3%82%92%e6%93%8d%e4%bd%9c%e3%81%99%e3%82%8b/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.