轉MySQL遇到的語法差異及解決方案

来源:https://www.cnblogs.com/tonqiang/archive/2018/09/28/9716800.html
-Advertisement-
Play Games

最近公司項目需要從SQL Server轉到MySQL, 在轉的過程中遇到兩者語法之間的一些差異,在網上找瞭解決方案後,特記錄在此。由於解決方案可能有很多種,我只記錄了自己使用過的,僅作參考。 1. 拼接字元串 使用 方法 MSSQL MySQL 2. MySQL中和update set select ...


最近公司項目需要從SQL Server轉到MySQL, 在轉的過程中遇到兩者語法之間的一些差異,在網上找瞭解決方案後,特記錄在此。由於解決方案可能有很多種,我只記錄了自己使用過的,僅作參考。

1. 拼接字元串

使用group_concat方法

  • MSSQL

    ( SELECT    LEFT(dal.DeliveryAreaList,
                     LEN(dal.DeliveryAreaList) - 1)
      FROM      ( SELECT    ( SELECT    CAST(DeliveryArea AS VARCHAR)
                                        + '|'
                              FROM      Rel_MainCommodityDeliveryArea
                              WHERE     MainCommodityId = a.MainCommodityId
                                        AND DeliveryArea <> 0
                                        AND Disabled = 0
                            ORDER BY DeliveryArea ASC
                            FOR
                              XML PATH('')
                            ) AS DeliveryAreaList
                ) dal
    ) AS DeliveryAreasList
  • MySQL

    (select 
     group_concat(rmcda.DeliveryArea order by rmcda.DeliveryArea desc separator '|')
    from Rel_MainCommodityDeliveryArea rmcda
    where rmcda.MainCommodityId = a.MainCommodityId and rmcda.DeliveryArea <> 0 and rmcda.Disabled = 0) as DeliveryAreasList

2. MySQL中和update set select語法

MySQL中update set selectfrom,需要使用更新多表的語法

  • MSSQL

    update fc
    set fc.UseScenarios   = (ISNULL(fc.InheritName, '')
                               + ISNULL(fmc.MainCommodityName_Postfix, '')
                               + '-' + ISNULL(cn.ChannelAlias, '')
                               + ISNULL(fc.CommodityName_Postfix, '')),
      fc.UseScenariosEn   = (ISNULL(fc.CommodityName_Prefix, '')
                               + ISNULL(fc.InheritName, '')
                               + ISNULL(fmc.MainCommodityName_Postfix,
                                        '')
                               + ISNULL(fc.CommodityName_Postfix, '')),
      fc.[Rec_ModifyBy]   = '{updateUser}',
      fc.[Rec_ModifyTime] = now(3)
    from Fct_Commodity as fc
      inner join Fct_MainCommodity as fmc on fc.MainCommodityId = fmc.MainCommodityId
      inner join Dim_Channel as cn on fc.ChannelId = cn.ChannelId
    where fc.Disabled = 0
          and fmc.Disabled = 0
          and fc.InheritName is not null
          and fc.InheritName <> ''
          and fmc.[MainCommodityCode] in ({codeList})
  • MySQL

    update Fct_Commodity fc, Fct_MainCommodity fmc, Dim_Channel cn
    set fc.UseScenarios = (ifnull(fc.InheritName, '')
                           + ifnull(fmc.MainCommodityName_Postfix, '')
                           + '-' + ifnull(cn.ChannelAlias, '')
                           + ifnull(fc.CommodityName_Postfix, '')),
      fc.UseScenariosEn = (ifnull(fc.CommodityName_Prefix, '')
                           + ifnull(fc.InheritName, '')
                           + ifnull(fmc.MainCommodityName_Postfix,
                                    '')
                           + ifnull(fc.CommodityName_Postfix, '')),
      fc.Rec_ModifyBy   = '{updateUser}',
      fc.Rec_ModifyTime = now(3)
    where
      fc.MainCommodityId = fmc.MainCommodityId
      and fc.ChannelId = cn.ChannelId
      and fc.Disabled = 0
      and fmc.Disabled = 0
      and fc.InheritName is not null
      and fc.InheritName <> ''
      and fmc.MainCommodityCode in ({codeList})

3. MySQL子查詢中使用limit

MySQL中子某些子查詢不允許limit, 如需要使用,需要用select再包一層

  • MSSQL

    SELECT UnitId,UnitName
    FROM Dim_Unit
    WHERE UnitName IN (
                      SELECT TOP 6 fmc.Unit
                      FROM Fct_MainCommodity fmc INNER JOIN Dim_Unit du ON fmc.Unit=du.UnitName
                      WHERE fmc.Disabled=0 AND du.Disabled=0
                      GROUP BY fmc.Unit
                      ORDER BY COUNT(fmc.Unit) DESC
                     )
  • MySQL

    select
      UnitId,
      UnitName
    from Dim_Unit
    where UnitName in (
      select temp.Unit
      from
        (select fmc.Unit
         from Fct_MainCommodity fmc inner join Dim_Unit du on fmc.Unit = du.UnitName
         where fmc.Disabled = 0 and du.Disabled = 0
         group by fmc.Unit
         order by COUNT(fmc.Unit) desc
         limit 6) temp)

4. Parameter '@Rec_CreateTime' must be defined

參數化拼sql, 不要用now(3), 直接在代碼裡面獲取當前時間

  • MSSQL

    public static Hashtable CreateByCheck(Hashtable htValue,string userID)
    {
        if (!htValue.Contains("Rec_CreateTime"))
        {
            htValue.Add("Rec_CreateTime", "now(3)");
        }
        if (!htValue.Contains("Rec_CreateBy"))
        {
            htValue.Add("Rec_CreateBy", HttpContext.Current == null ? "admin" : userID);
        }
        return htValue;
    }
  • MySQL

    public static Hashtable CreateByCheck(Hashtable htValue,string userID)
    {
        if (!htValue.Contains("Rec_CreateTime"))
        {
            htValue.Add("Rec_CreateTime", DateTime.Now);
        }
        if (!htValue.Contains("Rec_CreateBy"))
        {
            htValue.Add("Rec_CreateBy", HttpContext.Current == null ? "admin" : userID);
        }
        return htValue;
    }

5 拼接字元串+字元集

  1. (MainCommodityName + ifnull(MainCommodityName_Postfix, ''))拼接得不到想要的結果

  2. [HY000][1267] Illegal mix of collations (utf8_bin,NONE) and (utf8_general_ci,COERCIBLE) for operation '=': 需要加 collate utf8_general_ci 統一字元集

  • MSSQL

    select MainCommodityName
    from Fct_MainCommodity
    where (MainCommodityName + ifnull(MainCommodityName_Postfix, '')) = '附件上傳原料A進A出1003' and Disabled = 0 and
          ifnull(IsAutoHide, 0) != 1 and MainCommodityId != '27135417-a42b-453f-a1cc-1617d6fc471e';
  • MySQL

    select MainCommodityName
    from Fct_MainCommodity
    where CONCAT(MainCommodityName, cast(ifnull(MainCommodityName_Postfix, '') as nchar(50))) collate utf8_general_ci =
          '附件上傳原料A進A出1003'
          and Disabled = 0 and ifnull(IsAutoHide, 0) != 1 and MainCommodityId != '27135417-a42b-453f-a1cc-1617d6fc471e';

6 SQL中使用正則

MSSQL中LIKE後面可以使用正則,但是MYSQL需要使用REGEXP

  • MSSQL
 select isnull( MAX(BrandCode),99999)+1 as BrandCode from Fct_Brand 
                where BrandCode like '[0-9][0-9][0-9][0-9][0-9][0-9]'
  • MySQL
select ifnull( MAX(BrandCode),99999)+1 as BrandCode from Fct_Brand 
                where BrandCode regexp '[0-9][0-9][0-9][0-9][0-9][0-9]'

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 關於消息中間件,我找了一些比較好玩的討論主題,覺得對於深入理解一些技術問題非常有幫助:https://www.slidestalk.com/s/kafka_vs_rabbitmq_fmwmi4 (怎麼比較消息中間件?應該從哪幾個緯度來關註其特點,kafka和rabbitmq有比較的意義麽?)http ...
  • 在開發過程中有時候會遇到sql相關的問題,但是有時候代碼中不會直接看到真實的sql,想要看到mysql中實際執行的是什麼sql,可以通過開啟日誌跟蹤方式查看。 1 開啟日誌跟蹤 開啟之後可以查看系統參數是否已經修改成功: 2 跟蹤日誌保存位置 跟蹤日誌可以有兩種方式保存:(1) 保存到文件預設情況下 ...
  • 即將發佈的 Apache Spark 2.4 版本是 2.x 系列的第五個版本。 本文對 Apache Spark 2.4 的主要功能和增強功能進行了概述。 新的調度模型(Barrier Scheduling),使用戶能夠將分散式深度學習訓練恰當地嵌入到 Spark 的 stage 中,以簡化分佈... ...
  • 1、windows圖標右鍵,選擇“電腦管理”; 2、展開左邊的“ 服務和應用程式” 選項,點擊“服務",找到 MySQL 伺服器,點擊左側的 "啟動",即可完成 MySQL伺服器的開啟。 PS: 1、未開啟MySQL伺服器之前,cmd命令行切換到MySQL目錄下的bin文件下,mysql -u r ...
  • 一、 選擇適合自己的Linux發行版 談到linux的發行版別,太多了,可能誰也不能給出一個準確的數字,但是有一點是能夠必定的,linux正在變得越來越盛行, 面臨這麼多的Linux 發行版,打算從別的體系轉到linux體系來的初學者可能會感到迷惑,即便是忠誠的 Linux 用戶也沒有時刻和精力去挨 ...
  • 絕大部分寫業務的程式員,在實際開發中使用 Redis 的時候,只會 Set Value 和 Get Value 兩個操作,對 Redis 整體缺乏一個認知。這裡對 Redis 常見問題做一個總結,解決大家的知識盲點。 1、為什麼使用 Redis 在項目中使用 Redis,主要考慮兩個角度:性能和併發 ...
  • MongoDB 是什麼 MongoDB 是一種非關係型資料庫(NoSQL)。 MongoDB中的術語解釋 文檔(document):形如 { name: "sue", 區分大小寫 field唯一 , 不可重覆 文檔可嵌套 鍵值對是有序的 集合:集合就是一組文檔 SQL 與 MongoDB 術語比較 ...
  • 自己的庫里有索引在用insert導入數據時會變慢很多 使用事務+批量導入 可以配置使用spring+mybatis整合的方式關閉自動提交事務(地址),選擇批量導入每一百條導入使用list存儲值傳入到mybatis中 http://x125858805.iteye.com/blog/2369243 或 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...