forked from docs/doc-exports
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com> Co-authored-by: Su, Xiaomeng <suxiaomeng1@huawei.com> Co-committed-by: Su, Xiaomeng <suxiaomeng1@huawei.com>
4.3 KiB
4.3 KiB
javahash
This function is used to return the hash value of a.
Syntax
javahash(string a)
Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
a |
Yes |
STRING |
Data whose hash value needs to be returned |
Return Values
The return value is of the STRING type.
Example Code
The value 48690 is returned.
select javahash("123");
The value 123 is returned.
select javahash(123);
Parent topic: Other Functions