本文介绍了将 String 转换为 int 并在 Where 子句中使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何转换字符串字段并用于Where子句.遇到这样的异常,请帮忙找出错误的地方.

How to convert string field and use for Where clause.Am getting exception like this please help to find the wrong thing.

select * from student 
where (cast (nvl(linerevnum,'0') as int)) = 1

linerevnum 是 varchar2

linerevnum is varchar2

异常:无效号码

推荐答案

仅在数字时比较

select * from student 
where 
  (
  case when ISNUMERIC( linerevnum ) 
  then cast (linerevnum as int)
  else null
  end  ) = 1

或简单:

select * from student 
linerevnum = '1'

这篇关于将 String 转换为 int 并在 Where 子句中使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 08:52