• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






信恒

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 2 3 4 下一页

2016年8月23日

oracle 有关表的一些操作
该文被密码保护。 阅读全文
posted @ 2016-08-23 10:35 信恒 阅读(3) 评论(0) 推荐(0)
 

2016年8月9日

不自动切换eclipse视图
摘要: 刚开始使用eclipse进行调试时,当弹出"Confir Perspective Switch"视图时,不小心点了“No”。以后每次debug的时候都不切换到debug视图。 后发现设置Window->Preferences->Perspectives将Open the associated whe 阅读全文
posted @ 2016-08-09 10:17 信恒 阅读(597) 评论(1) 推荐(0)
 

2016年8月6日

over 分析函数之 lag() lead()
摘要: eg1: with tmp as(select '1' id ,'aa' name from dual union allselect '2' id ,'bb' name from dualunion allselect '3' id ,'cc' name from dual)select a.*, 阅读全文
posted @ 2016-08-06 16:41 信恒 阅读(1035) 评论(0) 推荐(0)
 

2016年7月23日

oracle行转列函数
摘要: 阅读全文
posted @ 2016-07-23 18:35 信恒 阅读(1039) 评论(0) 推荐(0)
 

2016年7月22日

oracle日期的处理
摘要: 字符长转换为日期,有两种写法 SELECT date'2016-06-03' FROM dualselect to_date('2016-06-03','yyyy-mm-dd') from dual sysdate+1 加一天sysdate+1/24 加1小时sysdate+1/(24*60) 加1 阅读全文
posted @ 2016-07-22 09:20 信恒 阅读(163) 评论(0) 推荐(0)
 

2016年7月21日

表空间的创建
摘要: 方法一. 此方法来自互联网 /*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace yuhang_temp tempfile 'D:\oracledata\yuhang_temp.dbf' size 50m autoextend on next 50 阅读全文
posted @ 2016-07-21 20:38 信恒 阅读(320) 评论(0) 推荐(0)
 
groovy--字符串处理
该文被密码保护。 阅读全文
posted @ 2016-07-21 19:39 信恒 阅读(1) 评论(0) 推荐(0)
 

2016年7月15日

分析函数 over用法 之row_number() runk_number
摘要: 分析函数用于计算基于组的某种聚合值,每个组返回多个行,而聚合函数每个组只返回一个行 表: create table TB_SCORE ( id NUMBER(10), class VARCHAR2(10), sname VARCHAR2(30), score NUMBER(10)) 插入数据代码如下 阅读全文
posted @ 2016-07-15 11:29 信恒 阅读(234) 评论(0) 推荐(0)
 
查询所有的表
该文被密码保护。 阅读全文
posted @ 2016-07-15 10:32 信恒 阅读(2) 评论(0) 推荐(0)
 

2016年7月14日

oracle 序列
摘要: CURRVAL=返回 sequence的当前值 NEXTVAL=增加 sequence的值,然后返回 sequence 值 --建立的序列说明:CREATE OR REPLACE SEQUENCE sequence INCREMENT BY 1 -- 每次加几个 START WITH 1 -- 从1 阅读全文
posted @ 2016-07-14 10:14 信恒 阅读(135) 评论(0) 推荐(0)
 
上一页 1 2 3 4 下一页