This function is used to return the hash value of a.
javahash(string a)
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
a |
Yes |
STRING |
Data whose hash value needs to be returned |
The return value is of the STRING type.
The hash value is returned. If the value of a is null, an error is reported.
The value 48690 is returned.
select javahash("123");
The value 123 is returned.
select javahash(123);