oracle varchar来编号
发布时间:2020-12-12 14:04:28 所属栏目:百科 来源:网络整理
导读:如何将oracle varchar值转换为数字 例如 table - exceptionexception_value 555 where exception_value is a varchar type 我想测试exception_value列的值 select * from exception where exception_value = 105 instead ofselect * from exception where ex
如何将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') (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |