标签:
例:
select * from record where to_char(ActionTime,'mm')='12';
这个查询的执行计划将是全表查询,如果我们改变nls_date_format,
alert session set nls_date_formate=’MM’;
现在重新修改上面的查询:
select * from record where ActionTime='12';
这样就能使用actiontime上的索引了,它的执行计划将是(INDEX RANGE SCAN)。
oracle 性能优化操作十三: 使用nls_date_format
标签:
原文地址:http://blog.csdn.net/helloboat/article/details/42486727