-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
be81b0b
commit 7d14bc2
Showing
1 changed file
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
# View | ||
|
||
- DB์์ ๋ทฐ๋ ํ๋ ๋๋ ๊ทธ ์ด์์ ํ ์ด๋ธ์ ์กฐ์ธํ์ฌ ๋ง๋ ์๋ก์ด ๊ฐ์ ํ ์ด๋ธ์ ์๋ฏธํ๋ค. | ||
- ์ค์ ๋ก ํ ์ด๋ธ์ ์์ฑํ ๊ฑด ์๋์ง๋ง, ์ฌ์ฉ์์๊ฒ๋ ์ค์กด ํ ์ด๋ธ๊ณผ ๋์ผํ๊ฒ ์ฌ์ฉ๋๋ค. | ||
- ๋ทฐ๋ฅผ ๊ฐ์ง๊ณ ์๋ก์ด ๋ทฐ๋ฅผ ๋ง๋ค ์๋ ์๋ค. | ||
- ์ด๋ ์ฃผ๋ก ํน์ ์ ๋ณด๋ง ์ ๊ณตํ๊ณ ์ถ์ ๊ฒฝ์ฐ๋ ๋ณต์กํ ์ฟผ๋ฆฌ๋ฅผ ๊ฐ์ ํ ์ด๋ธ๋ก ๋ง๋ค์ด ๊ฐํธํ๊ฒ ํ์ฉํ ์ ์์ด ์ ๋ฌด์์๋ ์์ฃผ ์ด์ฉํ๋ ๊ธฐ๋ฅ์ด๋ค. | ||
|
||
์๋ฅผ ๋ค๋ฉด, | ||
|
||
๋ ๊ฐ์ ํ ์ด๋ธ์ด ์๋ค๊ณ ๊ฐ์ ํ์. | ||
`user`, `payment`. | ||
๊ฐ๋ฐ์๊ฐ ํ์๋ณ ๊ฒฐ์ ์ด๋ ฅ์ ์กฐํํ๊ณ ์ถ์๋ฐ, ํ์ฌ ๊ท์ ์ ๋ฏผ๊ฐํ ๊ฐ์ธ์ ๋ณด๋ ์ ๊ณตํ๊ณ ์ถ์ง ์์ ๊ฒฝ์ฐ ๋ทฐ๋ฅผ ๋ง๋ค์ด์ ์ ๊ณตํ๋ฉด ๋๋ค. | ||
user ํ ์ด๋ธ์ ์๋ ๋ฏผ๊ฐํ ๊ฐ์ธ์ ๋ณด๊ฐ ๋ด๊ธด ์ปฌ๋ผ์ ์ ์ธํ๊ณ payment ํ ์ด๋ธ์๋ ์นด๋ ๋ฒํธ๋ฅผ ์ ์ธํ ์ปฌ๋ผ๋ง ์กฐ์ธํด์ ๋ทฐ๋ฅผ ๋ง๋ค์ด ๊ฐ๋ฐ์๊ฐ ํด๋น ๋ทฐ๋ฅผ ์ ๊ทผํ๋๋ก ํ๋ฉด ๋๋ค. | ||
|
||
# View ์ฌ์ฉ๋ฒ | ||
์) <p> | ||
`user` : id, name, email, phone_number <p> | ||
`payment` : id, user_id, payment_date, amount, card_number | ||
|
||
<br> | ||
|
||
```angular2html | ||
# ๋ทฐ ๋ค์ด๋ฐ ๊ท์น : ์ ๋์ฌ "v"๋ฅผ ๋ถ์ธ๋ค. | ||
CREATE VIEW v_user_payment AS | ||
SELECT | ||
u.id AS user_id, | ||
u.name, | ||
p.payment_date, | ||
p.amount | ||
FROM | ||
user u | ||
JOIN | ||
payment p | ||
ON | ||
u.id = p.user_id; | ||
``` | ||
์์ ๊ฐ์ด, ๋ฏผ๊ฐํ ์ ๋ณด(phone_number, card_number ๋ฑ)๋ฅผ ์ ์ธํ๊ณ , | ||
`user`์ ์ด๋ฆ๊ณผ `payment`์ ๊ฒฐ์ ๋ด์ญ๋ง ํฌํจํ ๋ทฐ๋ฅผ ์์ฑํ ์ ์๋ค. | ||
|
||
<br> | ||
|
||
```angular2html | ||
DROP VIEW v_user_payment | ||
``` | ||
๋ทฐ๋ฅผ ์ญ์ ํ ์ ์๊ณ , | ||
|
||
<br> | ||
|
||
|
||
```angular2html | ||
SELECT name, payment_date, amount | ||
FROM v_user_payment | ||
WHERE user_id = 1234; | ||
``` | ||
์ผ๋ฐ์ ์ผ๋ก ํ ์ด๋ธ์ `SELECT`ํ๋ ๊ฒ๊ณผ ๋์ผํ๊ฒ ๋ทฐ๋ฅผ ์กฐํํ ์ ์๋ค. | ||
|
||
<br> | ||
|
||
๋ทฐ๋ฅผ ์ฝ๊ธฐ ์ ์ฉ์ผ๋ก ๋ง๋ค๊ณ ์ถ์ ๊ฒฝ์ฐ ์ฟผ๋ฆฌ ๋ง์ง๋ง์ `with read only`๋ฅผ ์ถ๊ฐํ๋ฉด ๋๋ค. | ||
๊ทธ๋ฌ๋ฉด `DML(INSERT, UPDATE, DELETE)`์ ์ฌ์ฉํ ์ ์๊ธฐ์ ์ธ๋ถ์ ์ ๊ณตํ ๋ ์ฌ์ฉํ๊ธฐ ์ข์ ์ต์ ์ด๋ค. | ||
```angular2html | ||
ALTER VIEW v_user_payment READ ONLY; | ||
or | ||
CREATE VIEW v_user_payment AS | ||
/* query */ | ||
WITH READ ONLY; | ||
``` | ||
|
||
# View ์ฅ๋จ์ | ||
๋ทฐ์ ์ฅ์ | ||
|
||
- ๋ฐ์ดํฐ ์กฐํ๊ฐ ์ฉ์ดํ๋ค. (๋ณต์กํ ์ฟผ๋ฆฌ๋ฅผ ๋จ์ํ) | ||
- ์ฌ์ฉ์๋ณ ํ์ํ ์ ๋ณด๋ง ์ ๊ณตํ ์ ์๋ค. (๋ณด์ ์ด์ ) | ||
- ๋ฌผ๋ฆฌ์ ์ธ ๊ณต๊ฐ์ ์ฐจ์งํ์ง ์๋๋ค. | ||
|
||
๋ทฐ์ ๋จ์ | ||
|
||
- ๋ทฐ์ ์ธ๋ฑ์ค๋ฅผ ๊ตฌ์ฑํ ์ ์๋ค. | ||
- ๋ทฐ๋ฅผ ํฌํจํ์ฌ ๋ทฐ๋ฅผ ๋ง๋ ๊ฒฝ์ฐ ์ฐ๊ด ๋ทฐ๋ฅผ ์ญ์ ํ๋ฉด ์์ฑ๋ ๋ทฐ๋ ์ญ์ ๋๋ค. | ||
- ํ๋ฒ ์ ์๋ ๋ทฐ๋ ์์ ์ด ๋ถ๊ฐํ๋ค. |