I want to add 100 entry to users table numbers field, random characters length is 10, all entry should be unique as well. How can i achieve this using MYSQL query code ?
UPDATE TABLE users SET number_field = MD5(RAND());