Difference between View and table in sql

后端 未结 7 1499
别那么骄傲
别那么骄傲 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:57

    A view helps us in get rid of utilizing database space all the time. If you create a table it is stored in database and holds some space throughout its existence. Instead view is utilized when a query runs hence saving the db space. And we cannot create big tables all the time joining different tables though we could but its depends how big the table is to save the space. So view just temporarily create a table with joining different table at the run time. Experts,Please correct me if I am wrong.

提交回复
热议问题