05 2008 档案
用SQL查看字符串ASCII码
摘要: DECLARE @position int, @nstring nchar(12)SET @position = 1SET @nstring = N'字符串' PRINT 'Character #' + ' ' + 'Unicode Character' + ' ' + 'UNICODE Value' WHILE @position <= DATALENGTH(@nstring) BEGIN...阅读全文

