1、创建测试表,create table test_condition(id number, value varchar2(200));
4、编辑sql,条件为或者的关系,如,查询id=3或5的记录,
insert into test_condition values(1,1001);
insert into test_condition values(2,1002);
insert into test_condition values(3,1003);
insert into test_condition values(4,1004);
insert into test_condition values(5,1005);
4、编辑sql,条件为或者的关系,如,查询id=3或5的记录,
4、编辑sql,条件为或者的关系,如,查询id=3或5的记录,
select * from test_condition where id = 3 or id = 5,
多个条件是或者的关系,写法如下:
SELECT * FROM table_1 WHERE 条件1 OR 条件2;
或者关系查询,只要满足一个条件就会被查询出来。
如果多个条件都满足才查询出来,需要使用并且的关系:
SELECT * FROM table_1 WHERE 条件1 AND 条件2;
AND 的优先级高于 OR,使用的过程中请注意。
条件用and连接 例如 .....where a.id=1 and a.name='张三'
条件1 or 条件2