oracle 如何查找特定字母开头的某个字段?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 如何查找特定字母开头的某个字段?相关的知识,希望对你有一定的参考价值。

参考技术A

1、创建测试表,

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 如何查找特定字母开头的某个字段?的主要内容,如果未能解决你的问题,请参考以下文章

oracle查找一个字符串里有字母

linux如何查找以某个字母打头的文件或文件夹 比如,/etc目录下很多文件,我想列出所有以c开头的文件或文件

在Oracle中查找以字母数字开头的字符串

Linux如何查找特定字符文件或目录

php里怎么判断字段里是不是以1开头的字段?

SQL中怎样提取纯数字或者纯字母的字段??