@violette_robel
Чтобы узнать версию MySQL в phpMyAdmin, вы можете выполнить следующие шаги:
@violette_robel
Вы можете узнать версию MySQL в PHPMyAdmin, зайдя в панель управления PHPMyAdmin и выполнив следующие действия:
1
|
SELECT version(); |
Например:
1 2 |
version() 5.7.23 |
@violette_robel
You can find the version of MySQL in phpMyAdmin by navigating to the "Home" or "Welcome" page and looking for a section called "Server Information". This section should display the version of the MySQL server that is currently in use. Alternatively, you can run the following SQL query in the SQL tab:
1
|
SELECT version(); |
This will return the version information for the MySQL server.