网站大量收购闲置独家精品文档,联系QQ:2885784924

最基础的db2数据库进修总结.doc

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

db2数据库 1、打开数据库 db2 connect to 数据库名; 2、查看数据库中有哪些表 db2 list tables ; 3、查看数据库中的表结构 db2 describe table 表名; db2 describe table 表名 show detail ;(详细的结构) 4、查看表的索引 db2 describe indexes for table表名 (显示所有索引的标识,但是不会显示字段) db2 describe indexes for table 表名 show detail (显示各种索引的字段名) 5、查询语句 select (1)基本查询语句: db2 select * from table_name 显示所有的字段 db2 select * from table_name where 字段名 = db2 select 列名1,列名from 表名 显示指定的字段 db2 select distinct 列名 ,列名……from 表名 不显示重复行 (2)多表查询语句: A.select 列名1,列名2 from 表名1,表名2 笛卡尔积: 结果是 列名1* 列名2 B.三个以上要将表起别名 错误: select 列名1,列名2 ,列名3 From 表名1,表名2 ,表名3 错误: 将中间的表起别名,其他的不取别名 Select 列名1,别名.列名2 ,列名3 from 表名1,表名2(as)别名,表名3 正确: 将最后的一个表起别名,其他的不起 select 列名1,列名2 ,别名.列名3 from 表名1,表名2 ,表名3 (as)别名 正确: select 列名1,别名。列名2 ,别名.列名3 from 表名1,表名2 别名 ,表名3 (as)别名 6、describe的用法 db2 ? describe 查看帮助文档 7、函数in的用法 db2 select * from 表名 where 列名 =值1 or 列名=值2 || 等价于 db2 select * from 表名 where 列名 in (值1,值2) 错误 :select * from 表名 where in(列名1, 列名2) 8、统计(单函数只能统计一列) (1)简单的 select count(列名1)from 表名 where 列名1 is (not) null 对多表进行查询且统计 db2 select b.bank_id b.sup_bank_id, (select count ( sys_mer_num ) from m_mer ), (select count ( term_id ) from m_term ) from m_bank b ,m_mer m .m_term t Where b.bank_id =m.bank_id and b.bank_id = t.bankid group by b.bank_id b.sup_bank_id 9、Order by select 列名1,列名2 from 表名 order by 列名2 asc /desc (降序) select 列名1,列名2 from 表名 order by 2 (按第2个字段排序) 10、group by 使用原则 select 后面所有的列 除了没有聚合函数的 必须在添在group by 后面 错误: select 列名1,列名2 from 表名1,表名2 group by 列名1 正确: select 列名1,sum(列名2) from 表名1,表名2 group by 列名1 正确: select 列名1,列名2 from 表名1,表名2 group by 列名1 , 列名2 11、select where group order综合使用语法: Select distinct 列名 from 表名 where 行表达式 group by 列名 having order by 列名asc./desc 12、数据的导入导出

文档评论(0)

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

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

版权声明书
用户编号:8000054077000003

1亿VIP精品文档

相关文档