摘要:
oracle 优化 1.尽量使用有索引的字段进行条件判断 2.like索引字段 尽量 使用 'XXX%',前面不要加% 加了走全表 3.使用多表查询 in 的 语句 改成使用exists not in 改成 not exists 4.不要使用 != 或者 <> 这会直接全表扫描 5.or 不要使用 阅读全文
摘要:
当取值 取到string类型的时候 要bigdecimal类型时 string str= “20.8699999999999996”;bigdecimal a = new Bigdecimal(str).setScale(2,Bigdecimal.round_half_up)注解 :2 保留两位小数 阅读全文