45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:DB2 数据库SELECT语句的使用技巧

DB2 数据库SELECT语句的使用技巧

2015-06-29 09:11:08 来源:www.45fan.com 【

DB2 数据库SELECT语句的使用技巧

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; 

本文地址:http://www.45fan.com/a/question/12876.html
Tags: 高级 Select DB2
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部