how to change a drupal user's password directly in the db

Joeri Poesen //

update users set pass=md5(‘your-new-password’) where uid = 1

So simple. Thanks, occy.