What's the query syntax to determine the exact version number of the MySQL server software?
+5
A:
You can use SHOW VARIABLES
:
SHOW VARIABLES WHERE Variable_name = 'version';
Greg
2008-12-03 10:08:12
This also works very nicely. Thanks!
Tom Juergens
2008-12-04 09:53:11