|
试试这样看看
增加自定义函数Adj
- <div><font style="background-color: rgb(255, 255, 255);">Public Function Adj(py As String) As String</font></div><div><font style="background-color: rgb(255, 255, 255);"> Dim CNChr As New Charter</font></div><div><font style="background-color: rgb(255, 255, 255);"> CNChr.UseSeperator = True
- CNChr.Seperator = " "</font></div><div><font style="background-color: rgb(255, 255, 255);"> If Not IsNull(py) Then
- Adj = CNChr.GetPinYin(py)
- Adj = CNChr.AdjustPhoneticNotation(Adj, False)
- Else
- Adj = ""
- End If</font></div><div><font style="background-color: rgb(255, 255, 255);">End Function</font></div>
复制代码 查询中直接调用
- SELECT 表1.姓名, Adj([姓名]) AS aa
- FROM 表1;
复制代码
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|