TechTricks
Technical answers from the trenches 
 
 
 
 

     
   
MySQL: How do I determine the version I'm using?
 
   
 Posted: 23 January 2002
 
   
 
Audience: Beginner
 
       
   

Question: How do I tell which version of MySQL that I'm using?

Answer: The easiest way is to start the mysql command-line utility and then issue one of the following queries:

select version; 

or

show variables like 'version'; 

While both commands return single-record answers, the first returns a single field showing the current version while the second returns a two column table. The first column shows the name of the selected variable (version) and the second holds the version number itself.

 

       

Top

Feedback About Paradox Delphi Assorted Web Stuff
 
 
Copyright © 2000-2004, techtricks.com; All Rights Reserved.
Acknowledgements, Disclaimers, Terms and Conditions.
Article last updated on 31 May 2003

 

Other Sites: Paradox, Delphi, Perl, Web Stuff, and More


 

[- End -]