Magento – Admin password using SQL / Change Database

Today we wanted to change the password of the admin of our Magento store and used the following command, which e.g.. is entered in the phpMyAdmin SQL, after you select the database: UPDATE `admin_user` SET `password` = MD5(‘123456’) WHERE `username` = ‘admin’; “admin-user” here refers to the table in which the users are registered. this is…