mysql移至oracle小結

來源:互聯網
上載者:User

  一、大體感覺,oracle更加成熟,更加嚴謹。

 具體問題 1. date 對應mysql的datetime類型,具體到分,但是oracle中格式為YYYY-MM-DD HH24:MI:SS。 轉化 to_date(‘YYYY-MM-DD HH:mm:ss’,‘YYYY-MM-DD HH24:MI:SS’)

 2. 擷取系統時間sysdate,不能大寫。

 3. int對應number。

 4. 驗證值為"YYYY-MM-DD HH:mm:ss"型的資料Regex

    Pattern p1 = Pattern.compile("^(?:19|20)[0-9][0-9]-(?:(?:0[1-9])|(?:1[0-2]))-(?:(?:[0-2][1-9])|(?:[1-3][0-1])) (?:(?:[0-2][0-3])|(?:[0-1][0-9])):[0-5][0-9]:[0-5][0-9]$");                                  

   if(p1.matcher(a).matches()){

   

  }

 5.

Oracle建立表時各欄位,標識符,表名等單引號,雙引號,不加等均可以,建立自增序列時序列名不能加單引號,可以不加也可以雙引號。


相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.