久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <tfoot id='qG9Qb'></tfoot>
  • <small id='qG9Qb'></small><noframes id='qG9Qb'>

    <legend id='qG9Qb'><style id='qG9Qb'><dir id='qG9Qb'><q id='qG9Qb'></q></dir></style></legend>

    • <bdo id='qG9Qb'></bdo><ul id='qG9Qb'></ul>

      1. <i id='qG9Qb'><tr id='qG9Qb'><dt id='qG9Qb'><q id='qG9Qb'><span id='qG9Qb'><b id='qG9Qb'><form id='qG9Qb'><ins id='qG9Qb'></ins><ul id='qG9Qb'></ul><sub id='qG9Qb'></sub></form><legend id='qG9Qb'></legend><bdo id='qG9Qb'><pre id='qG9Qb'><center id='qG9Qb'></center></pre></bdo></b><th id='qG9Qb'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='qG9Qb'><tfoot id='qG9Qb'></tfoot><dl id='qG9Qb'><fieldset id='qG9Qb'></fieldset></dl></div>

        排查“非法混合排序規則"mysql 中的錯誤

        Troubleshooting quot;Illegal mix of collationsquot; error in mysql(排查“非法混合排序規則mysql 中的錯誤)
        <legend id='S19Lo'><style id='S19Lo'><dir id='S19Lo'><q id='S19Lo'></q></dir></style></legend>

          <small id='S19Lo'></small><noframes id='S19Lo'>

                <tbody id='S19Lo'></tbody>
            • <tfoot id='S19Lo'></tfoot>

            • <i id='S19Lo'><tr id='S19Lo'><dt id='S19Lo'><q id='S19Lo'><span id='S19Lo'><b id='S19Lo'><form id='S19Lo'><ins id='S19Lo'></ins><ul id='S19Lo'></ul><sub id='S19Lo'></sub></form><legend id='S19Lo'></legend><bdo id='S19Lo'><pre id='S19Lo'><center id='S19Lo'></center></pre></bdo></b><th id='S19Lo'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='S19Lo'><tfoot id='S19Lo'></tfoot><dl id='S19Lo'><fieldset id='S19Lo'></fieldset></dl></div>

                • <bdo id='S19Lo'></bdo><ul id='S19Lo'></ul>
                  本文介紹了排查“非法混合排序規則"mysql 中的錯誤的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  嘗試通過 MySQL 中的存儲過程進行選擇時出現以下錯誤.

                  Am getting the below error when trying to do a select through a stored procedure in MySQL.

                  排序規則 (latin1_general_cs,IMPLICIT) 和 (latin1_general_ci,IMPLICIT) 的非法混合用于操作 '='

                  Illegal mix of collations (latin1_general_cs,IMPLICIT) and (latin1_general_ci,IMPLICIT) for operation '='

                  知道這里可能出了什么問題嗎?

                  Any idea on what might be going wrong here?

                  表的排序規則是latin1_general_ci,where子句中列的排序規則是latin1_general_cs.

                  The collation of the table is latin1_general_ci and that of the column in the where clause is latin1_general_cs.

                  推薦答案

                  這通常是由于比較兩個不兼容的排序規則的字符串或嘗試將不同排序規則的數據選擇到組合列中引起的.

                  This is generally caused by comparing two strings of incompatible collation or by attempting to select data of different collation into a combined column.

                  子句 COLLATE 允許您指定查詢中使用的排序規則.

                  The clause COLLATE allows you to specify the collation used in the query.

                  例如,以下 WHERE 子句將始終給出您發布的錯誤:

                  For example, the following WHERE clause will always give the error you posted:

                  WHERE 'A' COLLATE latin1_general_ci = 'A' COLLATE latin1_general_cs
                  

                  您的解決方案是為查詢中的兩列指定共享排序規則.下面是一個使用 COLLATE 子句的例子:

                  Your solution is to specify a shared collation for the two columns within the query. Here is an example that uses the COLLATE clause:

                  SELECT * FROM table ORDER BY key COLLATE latin1_general_ci;
                  

                  另一種選擇是使用 BINARY 運算符:

                  Another option is to use the BINARY operator:

                  BINARY str 是 CAST(str AS BINARY) 的簡寫.

                  BINARY str is the shorthand for CAST(str AS BINARY).

                  您的解決方案可能如下所示:

                  Your solution might look something like this:

                  SELECT * FROM table WHERE BINARY a = BINARY b;
                  

                  或者,

                  SELECT * FROM table ORDER BY BINARY a;
                  

                  這篇關于排查“非法混合排序規則"mysql 中的錯誤的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  How to use windowing functions efficiently to decide next N number of rows based on N number of previous values(如何有效地使用窗口函數根據 N 個先前值來決定接下來的 N 個行)
                  reuse the result of a select expression in the quot;GROUP BYquot; clause?(在“GROUP BY中重用選擇表達式的結果;條款?)
                  Does ignore option of Pyspark DataFrameWriter jdbc function ignore entire transaction or just offending rows?(Pyspark DataFrameWriter jdbc 函數的 ignore 選項是忽略整個事務還是只是有問題的行?) - IT屋-程序員軟件開發技
                  Error while using INSERT INTO table ON DUPLICATE KEY, using a for loop array(使用 INSERT INTO table ON DUPLICATE KEY 時出錯,使用 for 循環數組)
                  pyspark mysql jdbc load An error occurred while calling o23.load No suitable driver(pyspark mysql jdbc load 調用 o23.load 時發生錯誤 沒有合適的驅動程序)
                  How to integrate Apache Spark with MySQL for reading database tables as a spark dataframe?(如何將 Apache Spark 與 MySQL 集成以將數據庫表作為 Spark 數據幀讀取?)

                    <tfoot id='IWnjM'></tfoot>

                    <small id='IWnjM'></small><noframes id='IWnjM'>

                    <legend id='IWnjM'><style id='IWnjM'><dir id='IWnjM'><q id='IWnjM'></q></dir></style></legend>
                        <tbody id='IWnjM'></tbody>
                      <i id='IWnjM'><tr id='IWnjM'><dt id='IWnjM'><q id='IWnjM'><span id='IWnjM'><b id='IWnjM'><form id='IWnjM'><ins id='IWnjM'></ins><ul id='IWnjM'></ul><sub id='IWnjM'></sub></form><legend id='IWnjM'></legend><bdo id='IWnjM'><pre id='IWnjM'><center id='IWnjM'></center></pre></bdo></b><th id='IWnjM'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='IWnjM'><tfoot id='IWnjM'></tfoot><dl id='IWnjM'><fieldset id='IWnjM'></fieldset></dl></div>

                        • <bdo id='IWnjM'></bdo><ul id='IWnjM'></ul>
                          1. 主站蜘蛛池模板: 夜夜爽99久久国产综合精品女不卡 | 国产精品久久久久久一区二区三区 | 最新中文字幕 | 日韩二区三区 | 99热成人在线| 欧美久久视频 | 国产一区二区三区四区五区加勒比 | 91精品一区 | 欧美影院 | 国产欧美日韩一区二区三区在线观看 | 黄色av免费网站 | 孰女乱色一区二区三区 | 美女在线观看国产 | 免费看91 | 九色91视频 | h视频免费在线观看 | 亚洲日韩欧美一区二区在线 | 欧美日韩大片 | 91国产精品 | 国产日韩一区 | 日本中文字幕在线视频 | 久久99国产精一区二区三区 | 99久久99热这里只有精品 | 亚洲香蕉 | 中文字幕av在线一二三区 | 天天搞天天搞 | 国产激情视频网址 | 精品国产乱码久久久久久牛牛 | 在线国产小视频 | 久久青 | 97免费视频在线观看 | 男人天堂网站 | a级大片 | 91精品一区二区三区久久久久久 | 日韩欧美在线一区 | 久久久久久国产精品免费免费狐狸 | 一级a毛片| 国产高清久久久 | 国产精品视频一区二区三区 | 久久久一区二区三区四区 | 黄色三级免费网站 |