LinuxコンソールでMySQLのバージョンを確認する方法
1.LinuxコンソールでMySQLデータベースに接続する。(これだけでも、バージョンは表示される)
2.SQL文として「select version();」を実行する。(これでも確認できる)
《例》
# mysql -umyusername -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 16414252 to server version: 4.0.26-standard
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> select version();
+-----------------+
| version() |
+-----------------+
| 4.0.26-standard |
+-----------------+
1 row in set (0.00 sec)