
db2
beyondsanli
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
An agent could not be started to service this requ
An agent could not be started to service this request 很可怕不知道为什么 :cry:2008-04-12 15:13:16 · 159 阅读 · 0 评论 -
db2知识积累
(1): cast 是进行类型转换的 select cast('2222' as integer) from table select cast('222231' as decimal(10,2)) from table (2)decimal 1 select cast('2222314.996' as decimal(10,2)) from table 这个加在...2008-04-17 20:14:17 · 112 阅读 · 0 评论 -
db2基础
1:IBM DB2/TOADFEE/COMMAND LINE TOOLS/COMMAND WINDOWS db2 connect to bssdb user etl using etlah22 用这个方式进行连接和查询操作! 2:? sql00204 完成sqlcode 原因分析2008-04-30 07:45:09 · 101 阅读 · 0 评论 -
db2 和oracle下的分页操作
select * from (select t.CLICK_ID,t.MENUID,t.CREAT_TIME,rownumber() over(order by t.CREAT_TIME desc) as rn from PAPP.T_SYS_WEB_CLICK t ) as al where al.rn<=10 and al.rn>=0 oracle 中是用rownum r...2008-05-24 15:34:09 · 119 阅读 · 0 评论