ホームページ  >  記事  >  データベース  >  输出字符串“SQL Server 2008”中的每一个字符及其ASCII值。

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

WBOY
WBOYオリジナル
2016-06-07 14:56:372225ブラウズ

如题 无 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 までご連絡ください。