DB2数据库SELECT语句的三种高级用法

数据库 数据库运维
DB2数据库的SELECT查询语句有很多种形式,这里介绍三种SELECT语句的高级用法,包括创建结果表、物化查询和表结构复制。

SELECT语句是数据库查询的重要语句,这里介绍三种SELECT语句的高级用法。

1、创建结果表
  1. create table new_table_name as   
  2.  
  3. (select * from table_name) definition only

2、创建物化查询表(MQT)

  1. create table new_table_name as   
  2.  
  3. (select * from table_name)   
  4.  
  5. data initially deferred refresh deferred;   
  6.  
  7. refresh table new_table_name;  

注意:物化表SELECT语句类似一个查询,没有真正形成表,类型显示为Query。但它完全可以当表来用。

3、复制表结构

  1. create table new_table_name like table_name; 

 

【编辑推荐】

  1. DB2环境变量管理的两种方法
  2. DB2外部文件格式浅析
  3. 在DB2中正确导出LOB数据
  4. 浅谈DB2 JDBC驱动程序及其支持的功能
  5. DB2数据库设计的三个建议
责任编辑:佚名 来源: 网络转载
相关推荐

2010-07-27 16:54:40

DB2数据库

2010-09-07 10:47:42

DB2数据库

2010-08-18 08:53:23

DB2 SELECT语

2010-08-02 16:10:06

DB2数据库

2010-08-04 17:01:17

DB2数据库

2010-08-26 16:26:19

DB2数据库外部文件

2010-08-27 13:50:12

DB2安全机制

2010-09-30 11:20:35

DB2表静默状态

2010-09-06 13:06:08

DB2 9.7

2010-11-04 11:17:42

DB2 Merge语句

2011-03-16 16:40:00

DB2数据库字符集设置

2011-03-16 10:12:14

DB2数据库常用语句

2010-08-27 10:20:11

DB2数据库优化

2010-11-04 11:39:47

2010-07-27 14:33:24

DB2数据库

2011-03-11 16:02:03

DB2数据库安装

2010-11-01 11:57:18

DB2客户端

2010-08-03 17:23:00

DB2 9.7三种武器

2010-11-02 10:07:46

DB2数据库备份

2009-07-14 09:50:06

DB2数据库设计
点赞
收藏

51CTO技术栈公众号