ORACLE经验分享

来源:互联网 发布:js 获取点击对象的id 编辑:程序博客网 时间:2024/05/11 18:12

一、像‘&value’字符串无法插入oralce数据库的解决方法:

      1.set define off;2. 分拆‘&’||‘value’;3. '&'->chr(38)转义

二、 Oracle中的空字符串‘’基本上是被当成空NULL来处理的

三、 oracle分页sql语句  select *
    from (select a.*, rownum rn from table a where rownum <= 10)
   where rn >=1

原创粉丝点击