gpt4 book ai didi

sql - 如何在sql server中将数字转换为前缀为0的字符串

转载 作者:行者123 更新时间:2023-12-01 06:23:01 30 4
gpt4 key购买 nike

在 sql server 中,如果我有一个号码 n , 和 n>=0 and n<=100 ,如何用sql将其转换成字符串?

1 => '01'
2 => '02'
...
10 => '10'
99 => '99'

它类似于 printf 。
printf ('%2d", n);

最佳答案

只要 n 严格小于 100,就可以使用

  RIGHT(100+n,2)

在 SQL Server 2012 中,您还可以使用 FORMAT,以下内容将起作用,并为您提供 100 的“100”。
  FORMAT(n,'00','en-US')

关于sql - 如何在sql server中将数字转换为前缀为0的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15674236/

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