LoginSignup
1
2

More than 3 years have passed since last update.

[PostgreSQL] PostgreSQLの使い方

Posted at

[PostgreSQL] PostgreSQLの使い方

PostgreSQLの使い方について、少し復習してみます。

データベースを作成する

CREATE DATABASE mydb_name

データベース一覧を表示

¥l

データベースへ接続する

¥c mydb_name

テーブル一覧を表示

¥dt

実際にデータベースを作成してみる

027a.png

上の図のように、mydb_iwashi というデータベースを作成してみました!

1
2
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
1
2