I have this code in one of my PHP routines.
$ret = sha1(microtime());
I'm trying to convert the whole thing to use stored procs/functions.
Is it possible to convert the above code to mySQL?
set mycolumn = sha1(unix_timestamp())
is equivalent to the above PHP code.