How to find Moodle version from Database
Sometimes you may need to find what version of Moodle database you have. To find the version of moodle from the database, check in table mdl_config SELECT * FROM `mdl_config` WHERE `name` LIKE ‘%release%’; SELECT * FROM `mdl_config` WHERE `name` LIKE ‘%version%’; These SQL commands will give information about the version of Moodle you are … Read more