1.如果能用union all 尽量避免union。因为union 多一步去重
2.尽量不select 多余字段
3.如果对精度不是很高要求,尽量使用 >= 和<= ,不使用> 和< 。因为> 和< 需要精确到很多小数位,才能判断出<和>
4.