oracle 有没有not like in这样的用法

 我来答
刺任芹O
2022-09-29 · TA获得超过6.2万个赞
知道顶级答主
回答量:38.7万
采纳率:99%
帮助的人:9002万
展开全部

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 '王%';

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式