뷰란 ? What is a View? 뷰는 그냥 저장된 쿼리이다. 가상 테이블정도로 생각하면 된다. A view is nothing more than s saved SQL query. A view can also be considered as a virtual table. 뷰 수정 To modify a view ALTER VIEW statement 뷰 삭제 To drop a view DROP VIEW vWName 뷰의 장점 Advantages of views 뷰는 데이터베이스의 스키마의 복잡성을 줄일 수 있다. Views can be used to reduce the complexity of the database schema 뷰는 행과 열의 보안 수준을 구현하는 메커니즘으로 활용 될 수 있다. View..