标签:
--生成guid () 去掉‘-’并转成小写 declare @guid varchar(50) select @guid = NEWID() select len(@guid) select REPLACE(@guid,‘-‘,‘‘) select len( REPLACE(@guid,‘-‘,‘‘))
sqlserver 生成guid以及一些字串操作
原文地址:http://www.cnblogs.com/start-x/p/5640965.html