2014年3月12日
摘要: 截取后一段字符: substr(pl.item_description,instr(pl.item_description,'|')+1)截取前一段字符: substr(pl.item_description,1,instr(pl.item_description, '|') - 1) 阅读全文
posted @ 2014-03-12 16:17 love_Jason 阅读(2575) 评论(0) 推荐(0)
  2014年2月12日
摘要: 1. 出现数值为NULL时,sal+common 换成 sal+NVL(common,0)2. order by thing ASC 默认升序 降序为: order by things DESC;当需要使用多列进行排序时,可以如下:order by thing asc, otherthings desc;3. delete from tablename 只是删除表中的数据,表空间不变,truncate table tablename. 能快速删除表数据和表空间,速度更快。 阅读全文
posted @ 2014-02-12 09:25 love_Jason 阅读(142) 评论(0) 推荐(0)
摘要: 1。Form表中的数据可以通过 form 工具栏上的帮助-》历史记录 显示数据表名2. 通过form 工具栏上的 帮助-》诊断-》检查 显示字段名3. Web页面中的数据查询方法:通过Web 页面查询到某个数据,点击左下角的关于此页,然后全部展开,查询某个字段的VO,如果没有VO,在业务组件参考详细资料中找到路径,然后在系统中找到该类,通过反编译,找到数据逻辑。 阅读全文
posted @ 2014-02-12 09:23 love_Jason 阅读(525) 评论(0) 推荐(0)