oracle varchar来编号

前端之家收集整理的这篇文章主要介绍了oracle varchar来编号前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将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'
你必须使用 TO_NUMBER功能
select * from exception where exception_value = to_number('105')
原文链接:https://www.f2er.com/oracle/206409.html

猜你在找的Oracle相关文章