1

在列[Return rate]中,我的值如下:

20.0%
17.1% 
etc

在我的查询中,我想在计算中使用这些值。

因此,首先,我将 替换为'%'空字符串''

REPLACE([Return Rate], '%' ,'') AS [Test]

这行得通,当 [Return rate] 为“20.0%”时,我得到类似“20.0”的值。

然后我尝试在计算中使用这个 [Test] 值,例如:

(REPLACE([Return Rate], '%' ,'') * 10) AS [Test]

但是我在逻辑上得到了一个错误,所以我尝试转换这个文本值来执行我的计算:

CAST ( REPLACE([Current Xelus FE Return Rate], '%' ,'') AS decimal(2,1))  [Decimal Test]

在这里我得到了错误:

Arithmetic overflow error converting varchar to data type numeric.
Warning: Null value is eliminated by an aggregate or other SET operation.

有人回答这个错误吗?非常感谢,

4

2 回答 2

0

如果您的任何行包含空值,您将收到此错误。尝试一个 IsNull,如下所示:

CAST( 
 IsNull( 
  REPLACE([Current Xelus FE Return Rate], '%' ,'') 
 , '0.0')
AS decimal(5,1))  [Decimal Test]

如果您的数据包含非数字值(如您所提到的,诸如“N/A”之类的值),您可以使用 IsNumeric() 函数消除它们:

CAST( 
  CASE WHEN IsNumeric(
    IsNull( 
      REPLACE([Current Xelus FE Return Rate], '%' ,'') 
    , '0.0')
  ) = 1 THEN IsNull(REPLACE([Current Xelus FE Return Rate], '%' ,''),'0.0')
  ELSE '0.0' 
  END
AS decimal(5,1))  [Decimal Test]
于 2013-02-27T14:07:19.993 回答
-1

尝试将其转换为 FLOAT - decimal(2,1) 是不够的:

CAST ( REPLACE([Current Xelus FE Return Rate], '%' ,'') AS FLOAT)

然后你应该能够做进一步的计算

CAST ( REPLACE([Current Xelus FE Return Rate], '%' ,'') AS FLOAT) * 10
于 2013-02-27T14:10:47.690 回答