Jump to content

Convert an existing column to md5


n8w

Recommended Posts

There is no need to loop or write any code in order to update all the columns in a table. A single UPDATE query, that can be executed through your favorite database management utility, with no WHERE clause will update all the rows in the table to set the (new or existing) column to any value you want.

 

 

UPDATE your_table SET your_existing_or_new_column_name = md5(your_existing_column_name)

 

Edit: And since you should be SALTING your value to help prevent database lookups of common md5 values -

 

UPDATE your_table SET your_existing_or_new_column_name = md5(CONCAT(your_existing_column_name,'some random string that you will use when you test values as well'))

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.