1
0

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.

初心者がDBを確認するときに必要なコマンド

Last updated at Posted at 2020-02-02

railsのscaffoldでアプリケション作成したけど、データベースの見方やデータの確認のやり方はどうすればいいの?と疑問を持っている初心者の方にこの記事を参考にしていただきたいです。

データベース接続(作成したアプリケーションディレクトリで)

rails dbconsole

scaffold_app_development=#
↑などが出てれば接続成功です

テーブル確認(usersはテーブル名です)

\d users

Column | Type | Collation | Nullable | Default
------------+-----------------------------+-----------+----------+-----------------------------------
id | bigint | | not null | nextval('users_id_seq'::regclass)
name | character varying | | |
address | character varying | | |
age | integer | | |
created_at | timestamp without time zone | | not null |
updated_at | timestamp without time zone | | not null |

データ確認

SELECT * FROM users;

id | name | address | age | created_at | updated_at
----+----------+---------+-----+----------------------------+----------------------------
1 | ユーザー | 埼玉 | 26 | 2020-01-23 22:33:28.970248 | 2020-01-23 22:34:42.532767
2 | test | 東京 | 20 | 2020-01-26 07:41:44.803812 | 2020-01-26 07:41:44.803812

exit

DB接続を切断することができます


ちなみにRailsコンソールでallメソッドを使ってもデータの確認できます。

rails console
irb(main):001:0> User.all           (Userはモデル名)
  User Load (0.5ms)  SELECT  "users".* FROM "users" LIMIT $1  [["LIMIT", 11]]
=> #<ActiveRecord::Relation 
[#<User id: 1, name: "ユーザー", address: "埼玉県", age: 26, created_at: "2020-01-23 22:33:28", updated_at: "2020-01-23 22:34:42">, 
# <User id: 2, name: "test", address: "東京", age: 20, created_at: "2020-01-26 07:41:44", updated_at: "2020-01-26 07:41:44">]>
1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?