How to check the database version? Connect to the database. Right-click the database name and select Properties. View the database version in the Version field.
How to use Navicat to check the database version
Step 1: Connect to the database
In the connection dialog box, enter your database connection information, including:
Step 2: Check the database version
For example:
<code>版本:5.7.29</code>
Details
You can also use the following method to view the database version:
Use SQL query:
<code>SELECT version();</code>
Use the command line:
<code>mysql -V</code>
The above is the detailed content of How to check the database version in navicat. For more information, please follow other related articles on the PHP Chinese website!