Can I tell what version (32 bit or 64 bit) of MySQL I am running by using Terminal?
相关问题
- sqlyog export query result as csv
- NOT DISTINCT query in mySQL
- MySQL: conduct a basic search
- Why sometimes there is one of more gap(s) in the v
- mySQL alter table on update, current timestamp
You can use
version()
:See more information here :)
Running the command-line MySQL client:
OR
which is an alias for:
Get mysql version In Windows with --version parameter:
Get mysql version In Windows with custom query:
Get mysql version in Windows with server variable:
Get mysql version in Windows with
\s
flag.