摘要:
update bpm_biz b set dealer_memo = (select e.ASSIGN_MEMO from BPM_TASK t ,BPM_TASK_EXT e where t.TASK_ID = e.TASK_ID and b.INST_ID = t.INST_D and rown... 阅读全文
摘要:
select * from SCA_WORK_CALENDAR where DAY>=to_date('2015','yyyy') and DAY<to_date('2016','yyyy') and DAY_TYPE='0' order by CALENDAR_ID在公司执行这条sql语句时,得不... 阅读全文
摘要:
sybase在进行group by查询的时候报错:execute error:The current query would generate a key size of 700 for a work table. This exceeds the maximum allowable limit o... 阅读全文
摘要:
语法delete from aa truncate table aa 区别 1.delete from后面可以写条件,truncate不可以。2.delete from记录是一条条删的,所删除的每行记录都会进日志,而truncate一次性删掉整个页,因此日至里面只记录页释放,简言之,delete f... 阅读全文
摘要:
设计模式(Design Patterns) ——可复用面向对象软件的基础设计模式(Design pattern)是一套被反复使用、多数人知晓的、经过分类编目的、代码设计经验的总结。使用设计模式是为了可重用代码、让代码更容易被他人理解、保证代码可靠性。 毫无疑问,设计模式于己于他人于系统都是多赢的,设... 阅读全文