gpt4 book ai didi

oracle - oracle varchar转换为数字

转载 作者:行者123 更新时间:2023-12-03 09:18:00 30 4
gpt4 key购买 nike

如何将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')

关于oracle - oracle varchar转换为数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1154612/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com