用T-SQL语句求五位数以内的所有回文数!高人来

类似12321 45654这样的回文数 有多少个 代码敲下来
2025-01-04 05:17:19
推荐回答(1个)
回答1:

Declare @A Int=10000
Declare @Cnt int=0
While @A<=99999
Begin
if @A=REVERSE(@A)
Begin
Set @Cnt=@Cnt+1
Print @A
End
Set @A=@A+1
End
select @Cnt