zoukankan      html  css  js  c++  java
  • MySQL查看版本号的五种方式介绍1111111

    MySQL查看版本号的五种方式介绍

    1 命令行模式登录MySQL

    [root@localhost ~]# mysql -uroot -p
    Enter password: 
    Welcome to the MySQL monitor.  Commands end with ; or g.
    Your MySQL connection id is 13
    Server version: 5.7.12-5 Percona Server (GPL), Release 5, Revision a2f663a
    
    Copyright (c) 2009-2016 Percona LLC and/or its affiliates
    Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
    
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.
    
    Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
    

    2 命令行下使用:status

    mysql> status;
    --------------
    mysql  Ver 14.14 Distrib 5.7.12-5, for Linux (x86_64) using  6.2
    
    Connection id:      13
    Current database:   
    Current user:       root@localhost
    SSL:            Not in use
    Current pager:      stdout
    Using outfile:      ''
    Using delimiter:    ;
    Server version:     5.7.12-5 Percona Server (GPL), Release 5, Revision a2f663a
    Protocol version:   10
    Connection:     Localhost via UNIX socket
    Server characterset:    latin1
    Db     characterset:    latin1
    Client characterset:    utf8
    Conn.  characterset:    utf8
    UNIX socket:        /var/lib/mysql/mysql.sock
    Uptime:         14 days 4 hours 37 min 53 sec
    
    Threads: 1  Questions: 64  Slow queries: 0  Opens: 97  Flush tables: 1  Open tables: 90  Queries per second avg: 0.000
    --------------
    

    3 使用系统函数:version()

    mysql> select version();
    +-----------+
    | version() |
    +-----------+
    | 5.7.12-5  |
    +-----------+
    1 row in set (0.03 sec)
    

    4 mysql --version

    [root@localhost ~]# mysql --version
    mysql  Ver 14.14 Distrib 5.7.12-5, for Linux (x86_64) using  6.2
    

    5 包管理工具(根据不同系统 rh系列或bsd系列)

    rpm -qa|grep mysql
  • 相关阅读:
    SharePoint母板页更改
    SharePoint的一些基本操作
    百度地图
    内存管理
    根据文字的个数,label自动适应高度
    navgationBar
    接收服务器上的图片,可以用webview或者 imageview
    iOS 自带的解析json的类。
    改变uilable uibutton等的字体颜色、大小。
    Nsstring和NSdata的编码转换
  • 原文地址:https://www.cnblogs.com/sz-xioabai/p/6547322.html
Copyright © 2011-2022 走看看