如何将 oracle varchar 值转换为数字
例如
table - exception
exception_value 555 where exception_value is a varchar type
我想测试 exception_value 列的值
select * from exception where exception_value = 105 instead of
select * from exception where exception_value = '105'