
SQL相关
rp_renping
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SQL
Note: The UNION operator selects only distinct values by default. To allow duplicate values, use UNION ALL. Using the [charlist] Wildcard Now we want to select the persons with a last name that st...2009-07-17 10:21:16 · 153 阅读 · 0 评论 -
ORACLE分页查询
分页查询还有一个很明显的特点,就是处理的页数越小,效率就越高,越到后面,查询速度越慢。 type 1: 大多数情况下优于type2 select * from ( select temp.*, ROWNUM rn from (select * from tablename) temp where ROWNUM = startRow type...2009-07-20 11:06:30 · 110 阅读 · 0 评论 -
ORACLE导出方式
常规路径导出: exp username/pass@servicename file=/filename.dmp buffer=20480000 直接路径导出方式: exp username/pass@servicename file=/filename.dmp recordlength=65535 direct=y2009-07-20 16:32:45 · 96 阅读 · 0 评论