oracle怎么查询不包含指定字符

方法:1、利用“select from 表名 where order_no not like 字符”语句查询;2、利用“select from 表名 where not regexp_like(order_no,字符)”语句查询。 本教程操作环境:Windows10系统、Oracle 11g版、

方法:1、利用“select * from 表名 where order_no not like 字符”语句查询;2、利用“select * from 表名 where not regexp_like(order_no,字符)”语句查询。

本教程操作环境:Windows10系统、Oracle 11g版、Dell G3电脑。

oracle怎么查询不包含指定字符

开发过程中遇到个需求,用户要提取的数据列中不包含 YF、ZF、JD的字符串,

方法1:

方法2:

推荐教程:《Oracle视频教程》

以上就是oracle怎么查询不包含指定字符的详细内容,更多请关注每日运维其它相关文章!