有没有办法调用sql Server函数转换/转换而不使它们抛出异常?
基本上,我有一列包含字母数字数据,我从字段中提取值,我想显示数据为一个整数值.有时提取的数据不是数字,在这种情况下,我希望sql Server跳过该行(返回null或0).
现在,当将nvarchar值’xxxxx’转换为数据类型int时,sql select语句失败,并导致转换失败.
我想要的是类似于C#的int.TryParse.
建议?
解决方法
select case when isnumeric(YourColumn + '.0e0') = 1 then cast(YourColumn as int) else NULL end /* case */ from YourTable