chevron_left
Getting started
check_circle
Mark as learned thumb_up
0
thumb_down
0
chat_bubble_outline
0
auto_stories new
settings
Checking version in MySQL
Database
chevron_rightMySQL
chevron_rightCommon questions
chevron_rightGetting started
schedule Jul 1, 2022
Last updated local_offer MySQL
Tags tocTable of Contents
expand_more Check out the interactive map of data science
In your terminal, type in the following command:
mysql --version
Note that the following will not work:
mysql -v mysql --v
If you are connected to the MySQL server, then use the following:
mysql> SHOW VARIABLES LIKE "%version%";
+--------------------------+-------------------------------+| Variable_name | Value |+--------------------------+-------------------------------+| immediate_server_version | 999999 || innodb_version | 8.0.19 || original_server_version | 999999 || protocol_version | 10 || slave_type_conversions | || tls_version | TLSv1,TLSv1.1,TLSv1.2,TLSv1.3 || version | 8.0.19 || version_comment | MySQL Community Server - GPL || version_compile_machine | x86_64 || version_compile_os | macos10.15 || version_compile_zlib | 1.2.11 |+--------------------------+-------------------------------+
Published by Arthur Yanagisawa
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Ask a question or leave a feedback...
thumb_up
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!