发布网友 发布时间:2022-04-13 19:00
共5个回答
热心网友 时间:2022-04-13 20:29
oracle中有not like及in的写法,并没有not like in放一起的写法。
举例如下:
1、创建测试表,
create table test_name(id varchar2(20),name varchar2(20));
2、插入测试数据;
insert into test_name values(1, '王三');
insert into test_name values(2, '李四');
insert into test_name values(3, '王五');
insert into test_name values(4, '马六');
commit;
3、编写语句,使用not like语法,查询不含'王'的记录;
select * from test_name t where name not like '王%';
4、编写语句,使用not like in语法,查询不含'王'的记录,则会报错;
select * from test_name t where name not like in '王%';
热心网友 时间:2022-04-13 21:47
还真没有,一般来说充其量是not like and not like.......热心网友 时间:2022-04-13 23:22
没有 一个是模糊查询,一个是范围的热心网友 时间:2022-04-14 01:13
oracle的in和like有不同的用法热心网友 时间:2022-04-14 03:21
没有这样的