λ€μ μ±
μΌλ‘ 곡λΆν λ΄μ©μ μ 리νλ€. μ λͺ© : λ°μ΄ν°λ² μ΄μ€μμ€ν (Database System Concepts) - 6th Edition μΆνμ¬ : McGraw-Hill Korea |
|
http://www.kyobobook.co.kr/product/detailViewKor.laf?ejkGb=KOR&mallGb=KOR&barcode=9788960552036&orderClick=LAG&Kc= |
4.2. SQL μ§μμμ λ·°μ μ¬μ©
- μΌλ¨ λ·°λ₯Ό μ μνλ©΄, κ·Έ λ·°κ° μμ±νλ κ°μ 릴λ μ΄μ μ μ§μ νκΈ° μν΄μ λ·°μ μ΄λ¦μ μ¬μ©ν μ μλ€.
- physics_fall_2009 λ·°λ₯Ό μ¬μ©ν΄μ 2009λ κ°μμ Watson λΉλ©μμ ν λͺ¨λ μμ μ μ°Ύλ μ§μλ₯Ό μλμ κ°μ΄ μμ±ν μ μλ€.
select course_id
from physics_fall_2009
where building='Watson';
- λ·° μ΄λ¦μ μ§μμμ 릴λ μ΄μ μ΄λ¦μ΄ λ€μ΄κ° μ μλ λͺ¨λ μ리μ μ¬μ©λ μ μλ€.
- μλμ λ·°λ κ° νκ³Όλ³ λͺ¨λ κ΅μμ μ°λ΄μ ν©μ μΆλ ₯νλ€. sum(salary) μ΄ νΉμ μ΄λ¦μ κ°μ§κ³ μμ§ μκΈ° λλ¬Έμ μμ± μ΄λ¦μ λ·° μ μμ μν΄μ λͺ μλκ² λλ€.
create view department_total_salary(dept_name, total_salary) as
select dept_name, sum(salary)
from instructor
group by dept_name;
- νλμ λ·°λ λ λ€λ₯Έ λ·°λ₯Ό μ μνλλ° μ¬μ©λ μ μλ€. μλ₯Ό λ€μ΄ 2009λ κ°μμ WatsonλΉλ©μμ ν λͺ¨λ μμ μ 보μ¬μ£Όλ physics_fall_2009_watson λ·°λ₯Ό λ€μκ³Ό κ°μ΄ μ μν μ μμ κ²μ΄λ€.
create view physics_fall_2009_watson as
select course_id, room_number
from physics_fall_2009
where building='Watson';
- physics_fall_2009 μμ λ·°μ΄λ€. μ΄κ²μ λ€μ μ§μμκ³Ό λλ±νλ€.
create view physics_fall_2009_watson as
(select course_id, room_number
from (select course.course_id, building, room_number
from course, section
where course.course_id=section.course_id
and course.dept_name='Physics'
and section.semester='Fall'
and section.year='2009')
where building='Watson';
4.2.3. μ€μ²΄ν λ·°
- λͺλͺ λ°μ΄ν°λ² μ΄μ€ μμ€ν μ λ·° 릴λ μ΄μ μ μ μ₯νλ λ°©λ²μ μ 곡νλ€.
- μ΄λ¬ν κ²½μ°, λ·°λ₯Ό μ μνλλ° μ¬μ©ν 릴λ μ΄μ μ΄ μμ λμ΄λ λ·°λ μ΅μ μνλ₯Ό μ μ§νλ€.
- μ€μ²΄ν λ·°λ₯Ό μ΅μ μνλ‘ μ μ§νλ κ³Όμ μ μ€μ²΄ν λ·° κ΄λ¦¬ (materialized view maintenance) νΉμ λ·° κ΄λ¦¬ (view maintaenance) λΌκ³ νλ€.
'π κ°λ° > λ°μ΄ν°λ² μ΄μ€' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[λ°μ΄ν°λ² μ΄μ€] ν¨μ(function)μ νλ‘μμ (procedure)μ μ°¨μ΄ (0) | 2021.07.15 |
---|---|
[λ°μ΄ν°λ² μ΄μ€] λ·° (View) - 3 (0) | 2021.07.15 |
[MySQL] MariaDB root λΉλ°λ²νΈ λ³κ²½ (MariaDB 10.4 μ΄μ) (4) | 2021.07.14 |
[MySQL] Windows νκ²½μ MariaDB μ€μΉνκΈ° (0) | 2021.07.14 |
[λ°μ΄ν°λ² μ΄μ€] λ·° (View) - 1 (0) | 2021.07.13 |
λκΈ