在oracle下如何判断一个字段是否含有数字?
脚本代码:
select distinct sub_account_item
from pay_transaction_detail
where trim(translate(sub_account_item, '0123456789', ' ')) is not null
解释:
translate函数将数据列sub_account_item中的数据替换为‘ ’,注意此处必须有空格,否则过滤不生效。如果要过滤纯数字项,则将is not null改为is null
Copyright © 广州京杭网络科技有限公司 2005-2025 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有