zoukankan      html  css  js  c++  java
  • MySQL数据库服务器和数据库MySQL字符集。

    查看MySQL数据库服务器和数据库MySQL字符集。

    1. mysql> show variables like '%char%';  
    2. +--------------------------+-------------------------------------+------  
    3. | Variable_name            | Value                               |......  
    4. +--------------------------+-------------------------------------+------  
    5. | character_set_client     | utf8                                |......   -- 客户端字符集  
    6. | character_set_connection | utf8                                |......  
    7. | character_set_database   | utf8                                |......   -- 数据库字符集  
    8. | character_set_filesystem | binary                              |......  
    9. | character_set_results    | utf8                                |......  
    10. | character_set_server     | utf8                                |......   -- 服务器字符集  
    11. | character_set_system     | utf8                                |......  
    12. | character_sets_dir       | D:MySQL Server 5.0sharecharsets |......  
    13. +--------------------------+-------------------------------------+------ 

    二、查看MySQL数据表(table)的MySQL字符集。

    1. mysql> show table status from sqlstudy_db like '%countries%';  
    2. +-----------+--------+---------+------------+------+-----------------+------  
    3. | Name      | Engine | Version | Row_format | Rows | Collation       |......  
    4. +-----------+--------+---------+------------+------+-----------------+------  
    5. | countries | InnoDB |      10 | Compact    |   11 | utf8_general_ci |......  
    6. +-----------+--------+---------+------------+------+-----------------+------ 

    三、查看MySQL数据列(column)的MySQL字符集。

    1. mysql> show full columns from countries;  
    2. +----------------------+-------------+-----------------+--------  
    3. | Field                | Type        | Collation       | .......  
    4. +----------------------+-------------+-----------------+--------  
    5. | countries_id         | int(11)     | NULL            | .......  
    6. | countries_name       | varchar(64) | utf8_general_ci | .......  
    7. | countries_iso_code_2 | char(2)     | utf8_general_ci | .......  
    8. | countries_iso_code_3 | char(3)     | utf8_general_ci | .......  
    9. | address_format_id    | int(11)     | NULL            | .......  
    10. +----------------------+-------------+-----------------+--------  
    11.  
  • 相关阅读:
    纯JavaScripst的全选、全不选、反选 【转】
    Java 文件和byte数组转换
    nc命令使用详解
    mtr 命令详解
    Nginx主动检测方案---Tengine
    Apache相关安全设置
    tomcat APR的配置
    Vsftpd 配置详解
    FTP主动模式和被动模式的区别
    iptables配置详解
  • 原文地址:https://www.cnblogs.com/zjlog/p/5584601.html
Copyright © 2011-2022 走看看