oracle 如何查找特定字母开头的某个字段?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 如何查找特定字母开头的某个字段?相关的知识,希望对你有一定的参考价值。
参考技术A1、创建测试表,
create table test_teacher(teacher_no varchar(30) , teacher_name varchar(30));
2、插入测试数据
insert into test_teacher values('T20150101','陈xx');
insert into test_teacher values('20150101','王xx');
insert into test_teacher values('T20150133','李xx');
insert into test_teacher values('20150122','朱xx');
insert into test_teacher values('T20150156','张xx');
insert into test_teacher values('T20150188','六xx');
commit;
3、查询表中全量数据,select t.* from test_teacher t;
4、编写sql,找出所有的不是T开头的记录; select t.*, rowid from test_teacher t where t.teacher_no not like 'T%';
以上是关于oracle 如何查找特定字母开头的某个字段?的主要内容,如果未能解决你的问题,请参考以下文章