|
Function |
Description |
|---|---|
|
LEFT() (or use substring function) | |
|
LENGTH() (also DATALENGTH() or LEN()) | |
|
LOWER() | |
|
LTRIM() (LCASE() if using Access) | |
|
RIGHT() (or use substring function) | |
|
RTRIM() | |
|
SOUNDEX() | |
|
UPPER() (UCASE() if using Access) |
One item in Table requires further explanation. SOUNDEX is an algorithm that converts any string of text into an alphanumeric pattern describing the phonetic representation of that text. SOUNDEX takes into account similar sounding characters and syllables, enabling strings to be compared by how they sound rather than how they have been typed. Although SOUNDEX is not a SQL concept, most DBMSs do offer SOUNDEX support.
本文介绍了一系列常用的文本处理函数,包括从字符串左侧或右侧获取字符、转换大小写、去除空白字符等功能,并详细解释了SOUNDEX算法,该算法可以将文本转换为描述其发音的字母数字模式。
946

被折叠的 条评论
为什么被折叠?



