熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> DB2 >> 正文

DB2 SELECT語句高級用法

2022-06-13   來源: DB2 
1、創建結果表

create table new_table_nameas

( select * from table_name ) definitiononly;

  2、創建物化查詢表(MQT)

create table new_table_nameas

( select * from table_name )

datainitially deferred refresh deferred;

refresh table new_table_name;

注意:物化表類似一個查詢,沒有真正形成表,類型顯示為Query。但它完全可以當表來用。

  3、復制表結構

create table new_table_name like table_name;


From:http://tw.wingwit.com/Article/program/DB2/201404/30293.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.