SHA1 my password fields all at once by running a query, I need to know how to write the query
What I want to do is update all password fields in my database to be SHA1
Can anyone help me to run a query to update all fields as I dont want to do this manually as it wll take forever to do.
SELECT * FROM `tblclients` WHERE 1`password` = SHA1
I have a table in mydatbase called `tblclients` and A password field called `password` all the passwords are plain text I need them to be SHA1 and update them all at once and need to run a command to update this.
Can anyone help or advise?