SQL 查询中的 uniqueidentifier 显示转换失败错误

Conversion failed error is showing for uniqueidentifier in SQL query

我有一个 SQL 服务器 table,其中包含类型 uniqueidentifier 的列 userid 并且列值为 9EBC02CE-FA3A-4A62-A3B7-B9B6CFD33B7E.

当我这样查询时:

 WHERE userid = '9EBC02CE-FA3A-4A62-A3B7-B9B6CFD33B7E'

查询运行成功。如果我在字符串的末尾添加额外的字符,它也可以正常工作,如下所示

WHERE userid = '9EBC02CE-FA3A-4A62-A3B7-B9B6CFD33B7Eqweqweqwemmmmmmmmmm'

但问题是当我在字符串的开头添加额外的字符时,查询显示错误。

WHERE userid = 'A9EBC02CE-FA3A-4A62-A3B7-B9B6CFD33B7E'

错误显示为

Conversion failed when converting from a character string to uniqueidentifier

我的问题是为什么仅在字符串开头添加字符时显示错误以及如何在存储过程中跟踪此错误

根据微软文档:

The uniqueidentifier type is considered a character type for the purposes of conversion from a character expression, and therefore is subject to the truncation rules for converting to a character type. That is, when character expressions are converted to a character data type of a different size, values that are too long for the new data type are truncated. See the Examples section.

这就解释了为什么在第 36 个位置后附加字符会正常工作。

当您在 guid 前面添加字符时,您违反了 guid 的格式设置规则,然后转换失败。

在存储过程中,您可以使用 TRY_CONVERT 验证 GUID。如果无法转换,它将 return NULL:

IF TRY_CONVERT(UNIQUEIDENTIFIER,@userId) IS NULL
   BEGIN
      .... report error ...
   END

TRY_CONVERT 仅适用于 SQL Server 2012。如果您需要在旧版本上转换为 UNIQUEIDENTIFIER 之前验证字符串,您可以使用以下代码:

IF NOT @userId LIKE REPLACE('00000000-0000-0000-0000-000000000000', '0', '[0-9a-fA-F]')+'%'
    BEGIN
          .... report error ...
    END