Outdated version of the documentation. Find the latest one here.

16.6. 규칙

규칙을 쓰면 입력 받은 쿼리의 “쿼리 트리”를 재작성할 수 있다. 흔히 업데이트 가능한 뷰를 포한한 뷰를 시행하는 데 쓰인다. - 위키백과

이 강의의 목표: 데이터베이스에 대해 새 규칙을 생성하는 방법을 배우기.

16.6.1. Materialised Views (Rule based views)

Say you want to log every change of phone_no in your people table in to a people_log table. So you set up a new table:

create table people_log (name text, time timestamp default NOW());

In the next step, create a rule that logs every change of a phone_no in the people table into the people_log table:

create rule people_log as on update to people
  where NEW.phone_no <> OLD.phone_no
  do insert into people_log values (OLD.name);

To test that the rule works, let’s modify a phone number:

update people set phone_no = '082 555 1234' where id = 2;

Check that the people table was updated correctly:

select * from people where id=2;

 id |    name    | house_no | street_id |   phone_no
----+------------+----------+-----------+--------------
  2 | Joe Bloggs |        3 |         2 | 082 555 1234
(1 row)

Now, thanks to the rule we created, the people_log table will look like this:

select * from people_log;

    name    |            time
------------+----------------------------
 Joe Bloggs | 2014-01-11 14:15:11.953141
(1 row)

주석

time 필드의 값은 현재 날짜와 시간에 따라 달라집니다.

16.6.2. In Conclusion

규칙을 사용하면 사용자 데이터베이스에 자동적으로 데이터베이스의 다른 부분에서 일어난 변경 사항을 반영하는 데이터를 추가하거나 변경하도록 할 수 있습니다.

16.6.3. What’s Next?

다음 모듈에서 PostGIS를 사용한 공간 데이터베이스를 소개할 것입니다. 이번 모듈에서 배운 데이터베이스의 개념들을 GIS 데이터에 적용하는 단계입니다.