只要符合某些条件,SQL服务器的视图就可更新,仿佛是一张单一的表格。
http://msdn.microsoft.com/en-us/library/ms 18795.aspx" rel="nofollow" 文档 :
平坦视图
You can modify the data of an underlying base table through a view, as
long as the following conditions are true:
Any modifications, including UPDATE, INSERT, and DELETE statements,
must reference columns from only one base table.
The columns being modified in the view must directly reference the
underlying data in the table columns. The columns cannot be derived in
any other way, such as through the following:
An aggregate function: AVG, COUNT, SUM, MIN, MAX, GROUPING, STDEV,
STDEVP, VAR, and VARP.
A computation. The column cannot be computed from an expression that
uses other columns. Columns that are formed by using the set operators
UNION, UNION ALL, CROSSJOIN, EXCEPT, and INTERSECT amount to a
computation and are also not updatable.
The columns being modified are not affected by GROUP BY, HAVING, or
DISTINCT clauses.
TOP is not used anywhere in the select_statement of the view together
with the WITH CHECK OPTION clause.
The previous restrictions apply to any subqueries in the FROM clause
of the view, just as they apply to the view itself. Generally, the
Database Engine must be able to unambiguously trace modifications from
the view definition to one base table. For more information, see
Modify Data Through a View.
我并不认为SSMS正在做任何特殊的事情 — 编辑视图的内容可以提供与编辑表格内容完全相同的功能。 如果用户试图做出不符合上述条件的更改, SSMS 可能会显示错误 。
SSMS如何推断使用哪一种主要钥匙,即使没有钥匙在视图中?
SQL 服务器没有这样做,因为每次只能编辑一个基本表格。
SSMS 如何确定视图中的哪一列可以或不能编辑/插入/删除等?
同样,它是由 SQL 服务器决定的,而不是由SSMS 确定。
在.NET 应用程序中复制这个最佳选择是什么?
只要您的所有观点都符合上述条件,只需做与您在表格上所做的相同的事情,但准备处理用户在做他们可以做的事情时的错误(这意味着需要一些用户培训,正如他们直接使用SSMS系统一样)。