DB2常用SQL语句集.doc

  1. 1、本文档共3页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
DB2常用SQL语句集

DB2常用SQL语句集 查看表结构: describe table tablename describe select * from tablename 列出系统数据库目录的内容: list database directory 查看数据库配置文件的内容: get database configuration for DBNAME 启动数据库: restart database DBNAME 关闭表的日志 alter table TBLNAME active not logged inially 重命名表 rename TBLNAME1 to TBLNAME2 取当前时间 select current time stamp from sysibm.sysdummy1 创建别名 create alias ALIASNAME for PRONAME(table、view、alias、nickname) 查询前几条记录 select?*?from?TBLNAME??fetch?first?N?rows? 联接数据库 db2?connect?to?DB?user?db2?using?PWD 绑定存储过程命令 db2?bind?BND.bnd 整理优化表 db2 reorgchk on table TBLNAME db2 reorg table TBLNAME db2?runstats?on?table?TBNAME?with?distribution?and?indexes?all 导出表 db2?export?to?TBL.txt?of?del?select?*?from?TBLNAME db2?export?to?TBL.ixf?of?ixf?select?*?from?TBLNAME 以指定分隔符‘|’下载数据: db2?export?to?cmmcode.txt?of?del?modified?by?coldel|?select?*?from?cmmcode” 导入表 db2 import?from?TBL.txt?of?del??insert?into?TBLNAME db2 import?from?TBL.txt?of?del commitcount?5000??insert?into?TBLNAME db2?import?from?TBL.ixf?of?ixf?commitcount?5000?insert?into?TBLNAME db2?import?from?TBL.ixf?of?ixf?commitcount?5000?insert_update?into?TBLNAME db2?import?from?TBL.ixf?of?ixf?commitcount?5000?replace?into?TBLNAME db2?import?from?TBL.ixf?of?ixf?commitcount?5000?create?into?TBLNAME?(仅IXF)db2?import?from?TBL.ixf?of?ixf?commitcount?5000?replace_create?into?TBLNAME?(仅IXF) 以指定分隔符“|”加载db2?import?from?btpoper.txt?of?del?modified?by?coldel|?insert?into?btpoper 显示当前用户所有表命令 db2 “list tables” 查看锁情况命令: db2?get?snapshot?for?locks?on?DBNAME list?applications?for?db?DBNAME?show?detail 打开锁的监视开关命令 db2?update?monisor?switches?using?lock?on 游标的使用: declare cursorN cursor with hold for select CHAR from TBNAME for update; for update不能和GROUP BY、 DISTINCT、 ORDER BY、 FOR READ ONLY及UNION, EXCEPT, or INTERSECT(但 UNION ALL除外)一起使用 。 update TBNAME set CHAR=0 where current of cursorN; decode的转码操作: decode(A1,1,n1,2,n2,n3) AA1 from TBNAME; 计算两个日期的相差天数: days(date(‘2001-06-05’)) – days(date(‘2001-04-01’)) days 返回的是从 0001-01-01 开始计算的天数; 取得处理的记录数

文档评论(0)

2017ll + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档