| id | operation | name | rows | bytes | cost |
--------------------------------------------------------------------
| 0 | select statement | | | | |
|* 1 | table access full | dept | | | |
--------------------------------------------------------------------
predicate information (identified by operation id):
---------------------------------------------------
1 - filter("dept"."dname"<>'developer')
note: rule based optimization
14 rows selected
将条件修改为“dname <'developer' and dname>'developer'”,则可以使用索引
select deptno from dept where dname <'developer' and dname>'developer';
plan_table_output