删除十六进制列中的填充零

发布于 2024-12-04 11:35:29 字数 299 浏览 1 评论 0原文

我有一个 TSQL 数据库,其中包含十六进制列。但是,这些值会用零填充以填充该列。

我需要删除这些零,这样我就有了十六进制字符串。问题是我不能只删除成对的零,因为字符串中间可能有零。

我有一种感觉,我需要将其转换为十进制,然后再转换回来或其他什么,但我尝试的一切都会产生奇怪的结果。

数据库中的列如下所示:

1EBC67E6000000
6B1FE9C7830000
C700DBBF000000

值的长度不同,并且全部用零对填充。

任何想法都会很好!

I have a database in TSQL that contains columns in hexadecimal. However these values are padded with zeroes to fill the column.

I need to remove these zeroes just so I have the hexadecimal string. The problem is I cannot just remove pairs of zeroes as the string may have zeroes in the middle.

I have a feeling I need to convert it to say decimal and then back or something, but everything I try yields strange results.

The column in the database look like this:

1EBC67E6000000
6B1FE9C7830000
C700DBBF000000

The values are different lengths and all padded with pairs of zeroes.

Any ideas would be good!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

婴鹅 2024-12-11 11:35:29

也许这对你有好处:

Select  replace(rtrim(replace('C700DBBF000000','0',' ')),' ','0');

Maybe this will be good for you:

Select  replace(rtrim(replace('C700DBBF000000','0',' ')),' ','0');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文