美文网首页
why we want to use index in sql

why we want to use index in sql

作者: 鲸鱼酱375 | 来源:发表于2019-12-04 00:37 被阅读0次

    Let us imagine the index of a book or a dictionary , if we don't have index, we need take a lot of time to find the specific information. In sql server, we call this problem as scan, SQL SERVER engine need go through from the first page to the last page of an offset by offset or row by row. However, if we have index, even clustered index, we can go to the specific node and fetching the information needed

    相关文章

      网友评论

          本文标题:why we want to use index in sql

          本文链接:https://www.haomeiwen.com/subject/jsbqgctx.html