如何在sql server 2008中使用base32对int进行编码
我希望在 SQL Server 2008 中将 INT 编码为 BASE32 字符串。
有内置函数或自定义函数的建议吗?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我希望在 SQL Server 2008 中将 INT 编码为 BASE32 字符串。
有内置函数或自定义函数的建议吗?
谢谢
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
很确定这需要一些调试,但应该接近。我从 ac# 函数翻译过来,发现它可以将 base10 转换为 base32。
Pretty sure this will need some debugging but should be close. I translated from a c# function I found that converts base10 to base32.
如果您正在寻找人类可读的 base32,请查看 Crockford 的:http://www.crockford。 com/wrmg/base32.html
看起来像戴尔服务标签 - 避免 1 0 IL 等之间的混淆...
If you're looking for human-readable base32, check out Crockford's: http://www.crockford.com/wrmg/base32.html
Looks like a Dell service tag -- avoids confusion between 1 0 I L etc...
以下是一些实现:
http://dpatrickcaldwell.blogspot .com/2009/05/converting-decimal-to-hexadecimal-with.html
http://snippets.dzone.com/posts/show/707
http://geekswithblogs.net/bbiales/archive/2009/05/04/131732.aspx
Here are a few implementations:
http://dpatrickcaldwell.blogspot.com/2009/05/converting-decimal-to-hexadecimal-with.html
http://snippets.dzone.com/posts/show/707
http://geekswithblogs.net/bbiales/archive/2009/05/04/131732.aspx