How I will make every password in my user table encrypted(md5()) except one particular row using a single query?
Concerning you edit: do you have an ID or username that identifies this row?
UPDATE mytable SET password = MD5(password) WHERE id <> 123