位置:首页 > 软件操作教程 > 数据分析 > SQL > 问题详情

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)
返回顶部