标签:
需要注意的是,尽量避免潜在的数据类型转换。
如将字符型数据与数值型数据比较,ORACLE会自动将字符型用to_number()函数进行转换,从而导致全表扫描。
例2:表tab1中的列col1是字符型(char),则以下语句存在类型转换:
<span style="font-size:18px;">select col1,col2 from tab1 where col1>10;</span>
应该写为:
<span style="font-size:18px;">select col1,col2 from tab1 where col1>'10';</span>
标签:
原文地址:http://blog.csdn.net/helloboat/article/details/42418085