| mysql | oracle |
| order by id desc limit #{offset},#{pageSize} | where rownum <= #{offset}+#{pageSize} ) where rn >#{offset}) order by id DESC |
| #{startDate} t.createtime |
to_date(‘#{startDate}‘,‘yyyy-mm-dd HH24:MI:SS‘) to_char(t.createtime,‘yyyy-MM-dd‘) as createtime |
| now() | sysdate |
| type在MySQL中不是关键字 | type 在oracle里是关键字 需要在SQL语句中将关键字全部大写并且加上双引号 |
原文:http://blog.csdn.net/baidu_25310663/article/details/46454451