Changing password for user 1 looks like this:
UPDATE `mydb`.`wp_users`
SET `user_pass` = MD5( 'password' )
WHERE `wp_users`.`ID` = 1;
Now, I have text file with such format:
user30 pass30
...
user2 pass2
user1 pass1
How can I change passwords for all these users without doing it manually? Maybe some sql command that could import it from this file? Or some other method? I'm using phpmyadmin, maybe I can import that data into these specific fields somehow?
I want to only import password 5 and greater.