What are the magic tables available in SQL Server 2000?

后端 未结 3 675
夕颜
夕颜 2020-12-11 12:49

What are the magic tables available in SQL Server 2000?

I wonder, why they are \'magic\' tables?

3条回答
  •  眼角桃花
    2020-12-11 13:31

    • Magic tables are nothing but inserted and deleted which are temporary objects created by the server internally to hold recently inserted values in the case of insert and to hold recently deleted values in the case of delete, to hold before updating values or after updating values in the case of update.

    • These two tables, inserted and deleted, are called magic tables.

提交回复
热议问题