随笔 - 6  文章 - 129  trackbacks - 0
<2024年5月>
2829301234
567891011
12131415161718
19202122232425
2627282930311
2345678

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 815992
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

10 2009 档案

联想Idea"的评论 小Y装win7后,声音会突然轻一下,1秒钟左右。然后恢复正常
     摘要: 控制面板--硬件和声音--声音--通信选项卡--选最后一个,就OK了   阅读全文

posted @ 2009-10-29 18:30 Ke 阅读(348) | 评论 (0)  编辑

oracle nvl(), cont(), decode()函數, case表達式結合使用的一條SQL語句
     摘要: SELECT nvl(i.tools_model, 'ALL'),
COUNT(decode(r.maintain_no, 'MAINTAIN', 'MAINTAIN','REPAIR', 'REPAIR', null)) as "維修總次數",
COUNT(decode(r.maintain_no, 'MAINTAIN', 'MAINTAIN', null)) as "正常維修次數",
COUNT(decode(r.maintain_no, 'REPAIR', 'REPAIR', null)) as "返修次數",
case COUNT(decode(r.maintain_no, 'MAINTAIN', 'MAINTAIN','REPAIR', 'REPAIR', null))
when 0 then 0
else
COUNT(decode(r.maintain_no, 'REPAI  阅读全文

posted @ 2009-10-29 15:22 Ke 阅读(657) | 评论 (0)  编辑

Ubuntu8.04中添加XP下常用的字体(转)

posted @ 2009-10-23 11:36 Ke 阅读(402) | 评论 (0)  编辑

ubuntu里打开rar文件
     摘要: 安装 rar 解压缩文件: sudo apt-get install rar
安装 7zip 解压缩工具:sudo apt-get install p7zip   阅读全文

posted @ 2009-10-23 10:24 Ke 阅读(756) | 评论 (0)  编辑

慎用Oracle的not in (轉)
     摘要: oracle中和null比较的返回值是unkown  阅读全文

posted @ 2009-10-20 16:05 Ke 阅读(249) | 评论 (0)  编辑

oracle使用Decode函數統計次數
     摘要: count(*) "總次數",
count(decode(c.status,0,0,null)) "通過次數",
count(decode(c.status,1,1,null)) "異常次數"   阅读全文

posted @ 2009-10-16 14:03 Ke 阅读(618) | 评论 (0)  编辑