本文介绍了SQL Server 2008 R2 HASHBYTES SHA2返回null的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图将SHA2_512作为算法使用HASHBYTES。但是,当我尝试在SQL Server Management Studio中执行此操作时,所有我所得到的都是空的。
I am trying to use HASHBYTES with SHA2_512 as the algo. However when I try to do it in SQL Server Management Studio all that I get is null.
SELECT HASHBYTES('SHA1','test') //works
SELECT HASHBYTES('SHA2','test') //returns null
我做错了什么?
有没有一种方法可以查看的返回值SELECT HASHBYTES('SHA2','test')$ c $
What am I doing wrong?
Is there a way to view the return value from SELECT HASHBYTES('SHA2', 'test')
?
谢谢
thanks
推荐答案
,256和512位
DECLARE @HashThis nvarchar(4000);
SELECT @HashThis = CONVERT(nvarchar(4000),'This is a sample string');
SELECT HASHBYTES('SHA1', @HashThis);
SELECT HASHBYTES('SHA2_256', @HashThis);
SELECT HASHBYTES('SHA2_512', @HashThis);
GO
这篇关于SQL Server 2008 R2 HASHBYTES SHA2返回null的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!