I have a simple table with field called "hash" VARCHAR 10 UNIQUE FIELD
Now I would like to run a query and generate automatically the hashes inside the field.
The problem is that the hashes has to be alpha-numeric and has to be long 10 chars and UNIQUE.
table structure:
CREATE TABLE `vouchers` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`hash` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `hash` (`hash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
So I need to INSERT hashes into hash field, they should look like random alphanumeric random hashes, I mean users shouldn't be able to catch the next or previous hash just looking at one hash, also they must be 10 chars long and unique.
Has anyone any clue for this?