2
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 3 years have passed since last update.

【postgres】VIEWの使い方

Posted at

目的

VIEWは割と業務で使うようなので、本で学んだ内容をまとめて、実行することで理解を深める。

環境

PostgreSQL 14.1 (Ubuntu 14.1-1.pgdg18.04+1) on x86_64-pc-linux-gnu

大量データの登録方法は「【Postgres】SQLの勉強のために大量のテストデータを登録してみる」にて確認。

VIEWとは

テーブルのようだが、SELECT文を保存するクリップボードのようなものでデータそのものは格納していない

→ 元のテーブルが更新されると自動で更新される 

view vs table

実際にSELECTすると、テーブルが表示されるのは同じ

テーブルを作ってINSERTするとそのデータは記憶装置に保存される。

viewはどこにも保存せず、SELECT文があるだけ。呼び出された時にそれを使って仮想のテーブルのようなものを作って返す。

前提

テーブルは下記のものを用意。
テストテーブルレコードの大量作成はこの記事を確認。


--profileテーブル--

profile_id |  first_name  |  last_name   |  age
----------+--------------+--------------+--------
        1 | 田中1        | 太郎1        | 1
        2 | 田中2        | 太郎2        | 2
        3 | 田中3        | 太郎3        | 3
        4 | 田中4        | 太郎4        | 4
        5 | 田中5        | 太郎5        | 5
        6 | 田中6        | 太郎6        | 6
        7 | 田中7        | 太郎7        | 7
        8 | 田中8        | 太郎8        | 8
        9 | 田中9        | 太郎9        | 9
       10 | 田中10       | 太郎10       | 10
       11 | 田中11       | 太郎11       | 11
       12 | 田中12       | 太郎12       | 12
       13 | 田中13       | 太郎13       | 13
       14 | 田中14       | 太郎14       | 14



       95 | 田中95       | 太郎95       | 95
       96 | 田中96       | 太郎96       | 96
       97 | 田中97       | 太郎97       | 97
       98 | 田中98       | 太郎98       | 98
       99 | 田中99       | 太郎99       | 99
      100 | 田中100      | 太郎100      | 100

VIEWの作成

profileテーブルからVIEWの仮想テーブルを作成する。
全く同じテーブルである必要はなく、条件を絞ったりカラムを絞ったSELECT文で問題ない。

create view test_view (first_name, last_name)
as
select first_name, last_name, count(*)
from profile
group by first_name, last_name;

-- 結果 --
CREATE VIEW

VIEWの確認

select * from test_view;

  first_name  |  last_name   | count
--------------+--------------+-------
 田中46       | 太郎46       |     1
 田中73       | 太郎73       |     1
 田中85       | 太郎85       |     1
 田中95       | 太郎95       |     1
 田中56       | 太郎56       |     1
 田中58       | 太郎58       |     1
 田中70       | 太郎70       |     1
 田中69       | 太郎69       |     1
 田中79       | 太郎79       |     1



RDBのレコードに順序性はないため、めちゃくちゃに登録されているが特に問題はない

from test_view;

ここでは内部的に

create view test_view (first_name, last_name)
as
select first_name, last_name, count(*)
from profile
group by first_name, last_name;

このviewが実行されている。
それが、この一行を書くだけでこれ以降は何度でも実行することができるということだ。

VIEWの削除

DROP VIEW test_view;
2
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
2
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?