0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【PosgreSQL】データベース作成/削除/移動

Posted at

新規データベースの作成

新規データベースを作成する際は、以下コマンドを実行する。

(create database データベース名)

create database study;

実行後、create databaseが表示されればOK。

スクリーンショット 2018-03-04 20.29.03.png

データベースの移動

データベースを移動する際は、以下コマンドを実行する。
(¥c データベース名)

\c study

実行後、左側に指定したデータベース名を表示されていればOK。
スクリーンショット 2018-03-04 20.36.30.png

データベース一覧表示

データベースを一覧表示する際は、以下コマンドを実行する。

\l
スクリーンショット 2018-03-04 20.42.36.png 一覧表示されればOK。コマンド「q」で抜けれる。 スクリーンショット 2018-03-04 20.42.43.png

データベースの削除

データベースを削除する際は、以下コマンドを実行する。
※開いているデータベースの削除はできない。
(drop database データベース名)

drop database test_database;

実行後、drop databaseが表示されればOK。
スクリーンショット 2018-03-04 20.46.16.png

以上。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?