在unicode列sql server上使用聚合函数[执行计算]
我在 sql server 数据库中有一个 unicode 列 nvarchar 。 我将数值存储在本地化的“印度语言古吉拉蒂语”的该列中。 我如何在 nvarchar 列上使用 sum、avg 等聚合函数。
注意:该 nvarchar 列包含本地化语言的 unicode 数据。
I have one unicode column nvarchar in sql server database.
I am storing numeric values in that column in my localized "Indian Language GUJARATI".
How can i use aggregate functions like sum,avg on that nvarchar column.
Note : That nvarchar column contains unicode data in localized language.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 sql server 和 .net 中都得到了以下过程。
将英语转换为古吉拉特语 Unicode 并
将古吉拉特语 Unicode 转换为英文数字
.net 代码
sql server 代码
传递数值并获取 unicode 值
传递 unicode 值并获取数值
希望这有帮助。
I got following procedure in both sql server and .net.
Convert English to Gujarati Unicode and
Convert Gujarati Unicode to English numbers
.net Code
sql server code
pass numeric value and get unicode value
Pass unicode value and get Numeric value
Hope this helps.