T-Sql更新问题
Update Inv01 Set PrintStat = 1 where Inv_No = '335059'
这个查询花费了太多时间,甚至九分钟就完成了。请帮助我
Update Inv01 Set PrintStat = 1 where Inv_No = '335059'
This query taking too much time even nine minutes finished.Please help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
Inv_No
列上为Inv01
表建立索引,这是加快速度的唯一方法;没有办法改进查询本身。Index your
Inv01
table on theInv_No
column, that's the only way you're going to speed it up; there's no way to improve the query itself.