首页 >数据库 >mysql教程 >输出字符串“SQL Server 2008”中的每一个字符及其ASCII值。

输出字符串“SQL Server 2008”中的每一个字符及其ASCII值。

WBOY
WBOY原创
2016-06-07 14:56:372258浏览

如题 无 declare @len intset @len = LEN('SQL Server 2008')declare @n intset @n = 1while @n = @lenBEGINprint ascii(SUBSTRING('SQL Server 2008',@n,1))set @n = @n +1END

如题
declare @len int
set @len = LEN('SQL Server 2008')
declare @n int
set @n = 1
while @n <= @len
	BEGIN
		print ascii(SUBSTRING('SQL Server 2008',@n,1))
		set @n = @n +1
	END
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn