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.2 KiB
4.2 KiB
soundex
This function is used to return the soundex string from str, for example, soundex('Miller') = M460.
Syntax
soundex(string <str>)
Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
str |
Yes |
STRING |
String to be converted |
Example Code
The value M460 is returned.
SELECT soundex('Miller');
Parent topic: String Functions