Kalau pakai XAMPP, buka halaman depan phpMyAdmin, dibagian informasi database server (sebelah kanan) sudah tercantum beberapa informasi database yang dipakai termasuk versi.
Atau bisa juga melalui XAMPP shell dengan menjalankan perintah mysql --version
.
Kalau pakai Ubuntu linux, bisa pakai perintah berikut:
Cek versi MySQL Server:
mysqld --version
# Ver 8.0.36 for Linux on x86_64 (MySQL Community Server - GPL)
Cek versi MySQL Client
mysql --version
# Ver 8.0.36 for Linux on x86_64 (MySQL Community Server - GPL)
Perintah berikut menggunakan SQL SELECT VERSION();
, harus masuk dulu ke MySQL:
mysql> SELECT VERSION();
+-----------+
| VERSION() |
+-----------+
| 8.0.36 |
+-----------+
kalau pengen lihat informasi lengkapnya bisa pakai SQL SHOW VARIABLES LIKE "%version%";
:
mysql> SHOW VARIABLES LIKE "%version%";
+--------------------------+------------------------------+
| Variable_name | Value |
+--------------------------+------------------------------+
| admin_tls_version | TLSv1.2,TLSv1.3 |
| immediate_server_version | 999999 |
| innodb_version | 8.0.36 |
| original_server_version | 999999 |
| protocol_version | 10 |
| replica_type_conversions | |
| slave_type_conversions | |
| tls_version | TLSv1.2,TLSv1.3 |
| version | 8.0.36 |
| version_comment | MySQL Community Server - GPL |
| version_compile_machine | x86_64 |
| version_compile_os | Linux |
| version_compile_zlib | 1.2.13 |
+--------------------------+------------------------------+
Kamu tau jawabannya?
Ayo bergabung bersama lebih dari 200.000 pengguna lainnya!