How to Create a Random Password in MySQL
Posted in SQL, MySQL on June 7th, 2007 4 Comments »
It is quite simple:
SELECT LEFT(md5(UUID()), 10)
The UUID() function returns a Universal Unique Identifier (UUID). The rest is obvious
If you are looking for the same functionality in MS SQL click here.
MySQL, Random Password, T SQL
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.



