select case when deptno=10 then 'aaaa'
when deptno=20 then 'bbbb'
when deptno=30 then 'cccc'
end 别名,sal from 表名
select decode(deptno,10,'aaaa',20,'bbbb',30,'cccc') 别名,sal from 表名
sql效率是sql最难的地方
tablescan 全盘扫描
index range scan 索引扫描
index fast scan 索引快速扫描
nested loop join
merge join
hash join
优化器机制开发者无法掌握