会员
周边
新闻
博问
闪存
众包
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
love_Jason
博客园
首页
新随笔
联系
订阅
管理
2014年3月12日
PL/SQL 中截取某个字符串的前或者后一段字符的方法
摘要: 截取后一段字符: 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日
PL/SQL 中部分使用小技巧
摘要: 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)
ERP中查找Form的表名和数据字段名称
摘要: 1。Form表中的数据可以通过 form 工具栏上的帮助-》历史记录 显示数据表名2. 通过form 工具栏上的 帮助-》诊断-》检查 显示字段名3. Web页面中的数据查询方法:通过Web 页面查询到某个数据,点击左下角的关于此页,然后全部展开,查询某个字段的VO,如果没有VO,在业务组件参考详细资料中找到路径,然后在系统中找到该类,通过反编译,找到数据逻辑。
阅读全文
posted @ 2014-02-12 09:23 love_Jason
阅读(525)
评论(0)
推荐(0)