oracle
iteye_9903
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ORACLE 数据恢复小技巧
1.当在开发测试时,误删除数据,如想恢复,可立即alter table table_name enable row movement;flashback table table_name to timestampto_timestamp('2008070816','yyyymmddhh24');...2008-10-14 15:19:04 · 123 阅读 · 0 评论 -
ORACLE 行转列
SQL: select g.registertime, decode(sum(inner), null, 0, sum(inner)) inner, decode(sum(outer), null, 0, sum(outer)) outer from( SELECT t.registertime, case WHEN ...2008-10-14 15:22:53 · 1346 阅读 · 0 评论
分享