gpt4 book ai didi

sql - 如何在 T-SQL 中将 int 转换为零填充字符串?

转载 作者:行者123 更新时间:2023-12-03 07:06:34 25 4
gpt4 key购买 nike

假设我有一个值为 1 的 int。如何将该 int 转换为零填充字符串,例如 00000001

最佳答案

Declare @MyInt integer Set @MyInt = 123
Declare @StrLen TinyInt Set @StrLen = 8

Select Replace(Str(@MyInt, @StrLen), ' ' , '0')

关于sql - 如何在 T-SQL 中将 int 转换为零填充字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/309165/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com