且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何使用视图将值插入多个表?

更新时间:2022-04-02 08:35:33

视图不能用于操作数据-顾名思义,它可以帮助您查询数据.
但是,您可以查看 [
A view cannot be used to manipulate data - as the name suggests it helps you query data.
However, you could look at this[^] - the link uses a view to select data and then insert it into a table.


View通常用于显示一个或多个表中的数据,具体取决于给定的"where"条件.


视图不能用于在任何一个或多个表中插入数据.您将必须使用过程或触发器来插入值.
Hi, View is generally used show the data in a table or tables depending on the ''where '' condition given.


View cannot be used to insert data in any table or tables.You will have to use either procedure or trigger to insert values.