1. ホーム
  2. データベース
  3. デービーツー

DB2 SELECT ステートメントの高度な使用法

2022-01-08 23:34:08
1. 結果テーブルの作成
テーブル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;
Note: The materialized table is similar to a query, not really forming a table and showing the type as Query, but it works perfectly as a table.

3. テーブル構造をコピーする
create table new_table_name like table_name;