mysql 버전 확인 방법:
1 명령줄에서 mysql에 로그인하면 mysql 버전 번호를 확인할 수 있습니다.
[root@heyong ~]# mysql -uroot -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 487032Server version: 5.7.17 MySQL Community Server (GPL) 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. mysql>
2 mysql 명령을 사용하여 확인하세요.
mysql> select version();+-----------+ | version() | +-----------+ | 5.7.17 | +-----------+1 row in set (0.01 sec) mysql>
3.
[root@heyong tools]# mysql --help | grep Distrib mysql Ver 14.14 Distrib 5.7.17, for linux-glibc2.5 (x86_64) using EditLine wrapper
을 보려면 mysql --help | grep Distrib를 사용하세요.
위 내용은 mysql 버전 확인하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!