1.3 查找满足多个条件的行
select * from emp
where deptno = 10
or comm is not null
or sal <= 2000 and deptno = 20 select * from EMP
where deptno = 10
or comm is not null
or (SAL <= 2000 and deptno = 20);最后更新于
select * from emp
where deptno = 10
or comm is not null
or sal <= 2000 and deptno = 20 select * from EMP
where deptno = 10
or comm is not null
or (SAL <= 2000 and deptno = 20);最后更新于