|
|
How to view mysql version in command prompt? - Mysql
|
Views : 652
|
|
Tagged in : Mysql
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
To view mysql version in command prompt,
> Goto command prompt
> start mysql
> then type "mysql --version"
it displays the version of mysql as,
mysql Ver 14.12 Distrib 5.0.45, for Win32 (ia32)
To view mysql version in mysql prompt then use,
mysql>select version();
it displays,
+---------------------+
| version() |
+---------------------+
| 5.0.45-community-nt |
+---------------------+
|
|
By Ramya, On - 2008-05-29 |
|
|
|