SQL操作应用——负向条件查询不能使用索引
提问人:ylm发布时间:2020-09-28
select * from order where status!=0 and stauts!=1
not in/not exists都不是好习惯
可以优化为in查询:
select * from order where status in(2,3)
继续查找其他问题的答案?
相关视频回答
回复(0)
select * from order where status!=0 and stauts!=1
not in/not exists都不是好习惯
可以优化为in查询:
select * from order where status in(2,3)
点击加载更多评论>>