首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

创造物化视图

2012-08-14 
创建物化视图Create materialized view MV_TEST_COMMITBuild immediate Refresh fast On commit With rowi

创建物化视图
Create materialized view MV_TEST_COMMIT
Build immediate
Refresh fast
On commit
With rowid
as
Select m1.id,m1.name,m2.ADRESS,m1.rowid m1rowid,m2.rowid m2rowid
from test_m1 m1,test_m2 m2
where m1.id = m2.id;  



create materialized view mv_name refresh force on commit as select * from table_name


热点排行