当前位置:网站首页>Oracle/PLSQL: Soundex Function
Oracle/PLSQL: Soundex Function
2022-06-27 01:45:00 【yuanlnet】
In Oracle/PLSQL, the soundex function returns a phonetic representation (the way it sounds) of a string.
Syntax
The syntax for the soundex function is:
soundex( string1 )
string1 is the string whose phonetic value will be returned.
Note
The Soundex algorithm is as follows:
- The soundex return value will always begin with the first letter of string1.
- The soundex function uses only the first 5 consonants to determine the NUMERIC portion of the return value, except if the first letter of string1 is a vowel.
- The soundex function is not case-sensitive. What this means is that both uppercase and lowercase characters will generate the same soundex return value.
Applies To
- Oracle 11g, Oracle 10g, Oracle 9i, Oracle 8i
For Example
soundex('tech on the net'); | would return 'T253' |
soundex('TECH ON THE NET'); | would return 'T253' |
soundex('apples'); | would return 'A142' |
soundex('apples are great'); | would return 'A142' |
soundex('applus'); | would return 'A142' |
边栏推荐
- 两个页面之间传参方法
- Arbre binaire OJ sujet
- 通过Rust语言计算加速技术突破图片识别性能瓶颈
- Oracle/PLSQL: Length Function
- 别被洗脑了,这才是90%中国人的工资真相
- Interface test framework practice (I) | requests and interface request construction
- d的appendTo包装
- Memcached foundation 4
- Ml: a detailed introduction to the division of the top ten roles, backgrounds, responsibilities and outputs of the machine learning engineering team
- 递归是会更秀strtok
猜你喜欢
随机推荐
UVM in UVM_ config_ Setting and obtaining DB non-linear
30 MySQL tutorial MySQL storage engine overview
Oracle/PLSQL: Rpad Function
Memcached foundation 4
Kept to implement redis autofailover (redisha) 14
Kept to implement redis autofailover (redisha) 17
markdown表格(合并)
Memcached foundation 3
The listing of Fuyuan pharmaceutical is imminent: the net amount raised will reach 1.6 billion yuan, and hubaifan is the actual controller
UVM in UVM_ config_ Use of DB in sequence
Oracle/PLSQL: NumToYMInterval Function
On the operation mechanism of numpy array
memcached基础9
UVM中config_db机制的使用方法
George Washington University: Hanhan Zhou | PAC: auxiliary value factor decomposition with counterfactual prediction in Multi-Agent Reinforcement Learning
Oracle/PLSQL: Lower Function
Custom class loader encrypts and decrypts classes
Amazon elasticache quickly builds a cache service cluster, which is fast
1.44寸TFT-LCD显示屏取模教程
Kept to implement redis autofailover (redisha) 11









