cnblogs.com的html文件

This commit is contained in:
2024-09-24 12:43:01 +08:00
parent 4cd62e360f
commit 5e60d01d9f
192 changed files with 15211 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<div>declare @a int</div>
<div>declare @b int</div>
<div>set @a = 1 --需要显示的数字</div>
<div>set @b = 3 --显示位数</div>
<p>select right(cast(power(10,@b) as varchar)+@a,@b)</p>