使用 <> 0 效率高还是 < 0 AND > 0,为什么?
前者效率更高,因为不等于判断是指令级别的
select * from order_order where o_id<>0 执行时间要比 select* from order_order where o_id0 用时间长