Why do you create a View in a database?

前端 未结 25 1964
一个人的身影
一个人的身影 2020-11-28 17:10

When and Why does some one decide that they need to create a View in their database? Why not just run a normal stored procedure or select?

25条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-28 17:36

    Views also break down very complex configuration and tables into managable chunks that are easily queried against. In our database, our entire table managment system is broken down into views from one large table.

提交回复
热议问题