程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL轉換Oracle的注意事項

MySQL轉換Oracle的注意事項

編輯:MySQL綜合教程

MySQL轉換Oracle的注意事項


limit--->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語句中將關鍵字全部大寫並且加上雙引號

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved