Difference between View and table in sql

后端 未结 7 1461
别那么骄傲
别那么骄傲 2020-12-02 05:45

Possible Duplicate:
Difference Between Views and Tables in Performance

What is the main difference between vi

7条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-02 05:53

    SQL Views:

    View is a virtual table based on the result-set of an SQL statement and that is Stored in the database with some name.

    SQL Table:

    SQL table is database instance consists of fields (columns), and rows.

    Check following post, author listed around seven differences between views and table

    https://codechef4u.com/post/2015/09/03/sql-views-vs-tables

提交回复
热议问题