如何在SQL Server中创建View更新
问题描述:
如何在SQL Server中创建View更新?可以创建多个表.
Hi,
How to create View update in sql server?? Is possible to create more than one table.
答
您无法在SQL Server的视图中进行更新或插入.
视图仅用于获取给定格式的数据(可能用于报告等).
You cannot do updates or inserts inside a view in SQL Server.
Views are meant only to fetch data in a given format (possibly for reporting etc).