程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 教您如何將不同的MySQL字符集轉化成統一的字符集

教您如何將不同的MySQL字符集轉化成統一的字符集

編輯:MySQL綜合教程

下面為您介紹的MySQL字符集處理方法是將不同的MySQL字符集,轉化成統一的字符集。 該方法供您參考,希望對您學習MySQL字符集方面能有所啟迪。

  1. After   an   upgrade   to   MySQL   4.1,   the   statement   fails:        
  2.  
  3. mysql>   SELECT   SUBSTRING_INDEX(USER(),'@',1);      
  4.  
  5. ERROR   1267   (HY000):   Illegal   mix   of   collations      
  6.  
  7. (utf8_general_ci,IMPLICIT)   and   (latin1_swedish_ci,COERCIBLE)      
  8.  
  9. for   operation   'substr_index'      
  10.  
  11. The   reason   this   occurs   is   that   usernames   are   stored   using   UTF8   (see   section   11.6   UTF8   for   Metadata).   As   a   result,   the   USER()   function   and   the   literal   string   '@'   have   different   character   sets   (and   thus   different   collations):        
  12.  
  13. mysql>   SELECT   COLLATION(USER()),   COLLATION('@');      
  14.  
  15. +-------------------+-------------------+      
  16.  
  17. |   COLLATION(USER())   |   COLLATION('@')         |      
  18.  
  19. +-------------------+-------------------+      
  20.  
  21. |   utf8_general_ci       |   latin1_swedish_ci   |      
  22.  
  23. +-------------------+-------------------+      
  24.  
  25. One   way   to   deal   with   this   is   to   tell   MySQL to   interpret   the   literal   string   as   utf8:        
  26.  
  27. mysql>   SELECT   SUBSTRING_INDEX(USER(),_utf8'@',1);      
  28.  
  29. +------------------------------------+      
  30.  
  31. |   SUBSTRING_INDEX(USER(),_utf8'@',1)   |      
  32.  
  33. +------------------------------------+      
  34.  
  35. |   root                                                               |      
  36.  
  37. +------------------------------------+      
  38.  
  39. Another   way   is   to   change   the   connection   character   set   and   collation   to   utf8.   You   can   do   that   with   SET   NAMES   'utf8'   or   by   setting   the   character_set_connection   and   collation_connection   system   variables   directly.        
  40.  

表的編碼轉換可以用:MySQL   Version   >   4.12)   

  1. ALTER   TABLE   tbl_name   CONVERT   TO   CHARACTER   SET   charset_name;      
  2.  

之前的版本可以用:   

  1. ALTER   TABLE   tbl_name   CHARACTER   SET   charset_name;   
  2.  

深入研究MySQL刪除多表數據

多個MySQL表結果集組合

MySQL分表處理的實現方法

MySQL授權表使用示例

MySQL內存表的弊端

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