MySQL转换Oracle的注意事项
dateformat--->oracle日期格式化,
now()---->获取系统时间,
在MySQL里不是关键字到oracle里就是关键字了
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语句中将关键字全部大写并且加上双引号 |
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。