首頁 > 資料庫 > mysql教程 > 什么是Oracle Key-Preserved Table和什么样的视图可以进行DML操作

什么是Oracle Key-Preserved Table和什么样的视图可以进行DML操作

WBOY
發布: 2016-06-07 16:46:21
原創
1034 人瀏覽過

在通过DML操作Oracle的视图的时候,有一个很重要的条件是操作的base表必须是Key-Preserved Table.那么,什么是Key-Preserved Table

在通过DML操作Oracle的视图的时候,有一个很重要的条件是操作的base表必须是Key-Preserved Table.
那么,什么是Key-Preserved Table呢.Oracle给出的定义是:
A table is key preserved if every key of  the table can also be a key of the result of the join.
It is not necessary that the key or keys of a table be selected for it to be key preserved.

It is sufficient that if the key or keys were selected, then they would also be key(s) of the result of the join.

如果某一个表的主键可以作为这个join结果(view通常是几个表的join结果)的主键,那么这个表就是key preserved table.

这个表的主键并非一定要出现在select出来的结果集中(select list里面),但是如果其出现在结果集中,那么它必须可以满足作为这个结果集的主键的要求.

来看一个例子,有这样两个表,dept和employee,以及基于这两个表的testv视图

  •   
  •   
  •   
  • 查询这个视图:select * from testv


    在testv这个视图中,employee就是一个key preserved table,而dept不是.
    那么这个视图可以进行的DML为
    delete from testv where empid=1(操作的结果是将employee表中的empid=1的记录delete了,dept表不会有改变)
    delete from testv where deptid=1(操作的结果是将employee表中的empid=1和2的记录都delete了,dept表不会有改变)
    update testv set empname='empx' where edeptid=1
    update testv set empname='empx' where empid=1
    update testv set empname='empx' where deptid=1
    insert into testv(empid,empname,edeptid) values(4,'emp4',2)
    这个视图不可以进行的DML为
    update testv set deptname='deptx' where deptid=1
    update testv set deptname='deptx' where empid=1
    insert into testv(deptid,deptname) values(4,'dept4')
    ORA-01779: cannot modify a column which maps to a non key-preserved table

    linux

  • 來源:php.cn
    本網站聲明
    本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
    熱門教學
    更多>
    最新下載
    更多>
    網站特效
    網站源碼
    網站素材
    前端模板