<bdo id='x8PQh'></bdo><ul id='x8PQh'></ul>

      <small id='x8PQh'></small><noframes id='x8PQh'>

      1. <i id='x8PQh'><tr id='x8PQh'><dt id='x8PQh'><q id='x8PQh'><span id='x8PQh'><b id='x8PQh'><form id='x8PQh'><ins id='x8PQh'></ins><ul id='x8PQh'></ul><sub id='x8PQh'></sub></form><legend id='x8PQh'></legend><bdo id='x8PQh'><pre id='x8PQh'><center id='x8PQh'></center></pre></bdo></b><th id='x8PQh'></th></span></q></dt></tr></i><div id='x8PQh'><tfoot id='x8PQh'></tfoot><dl id='x8PQh'><fieldset id='x8PQh'></fieldset></dl></div>
      2. <legend id='x8PQh'><style id='x8PQh'><dir id='x8PQh'><q id='x8PQh'></q></dir></style></legend>
        <tfoot id='x8PQh'></tfoot>
      3. 删除后重置 SQL Server 中的自动增量

        时间:2023-07-17

        • <bdo id='egzNc'></bdo><ul id='egzNc'></ul>
            <tfoot id='egzNc'></tfoot>

              <small id='egzNc'></small><noframes id='egzNc'>

                <i id='egzNc'><tr id='egzNc'><dt id='egzNc'><q id='egzNc'><span id='egzNc'><b id='egzNc'><form id='egzNc'><ins id='egzNc'></ins><ul id='egzNc'></ul><sub id='egzNc'></sub></form><legend id='egzNc'></legend><bdo id='egzNc'><pre id='egzNc'><center id='egzNc'></center></pre></bdo></b><th id='egzNc'></th></span></q></dt></tr></i><div id='egzNc'><tfoot id='egzNc'></tfoot><dl id='egzNc'><fieldset id='egzNc'></fieldset></dl></div>

                  <tbody id='egzNc'></tbody>
                <legend id='egzNc'><style id='egzNc'><dir id='egzNc'><q id='egzNc'></q></dir></style></legend>
                • 本文介绍了删除后重置 SQL Server 中的自动增量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我从 SQL Server 数据库的表中删除了一些记录.

                  I've deleted some records from a table in a SQL Server database.

                  表中的 ID 如下所示:

                  The IDs in the table look like this:

                  9910010112001201……

                  99 100 101 1200 1201...

                  我想删除后面的记录(ID > 1200),然后我想重置自动增量,这样下一个自动生成的 ID 将是 102.所以我的记录是连续的,有没有办法在 SQL Server 中做到这一点?

                  I want to delete the later records (IDs >1200), then I want to reset the auto increment so the next autogenerated ID will be 102. So my records are sequential, Is there a way to do this in SQL Server?

                  推荐答案

                  发出以下命令以重新播种 mytable 以从 1 开始:

                  Issue the following command to reseed mytable to start at 1:

                  DBCC CHECKIDENT (mytable, RESEED, 0)
                  

                  在在线书籍(BOL、SQL 帮助)中阅读有关它的信息.还要注意您的记录不要高于您设置的种子.

                  Read about it in the Books on Line (BOL, SQL help). Also be careful that you don't have records higher than the seed you are setting.

                  这篇关于删除后重置 SQL Server 中的自动增量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:SQL Server,如何在不丢失数据的情况下创建表后设置自动增量? 下一篇:如何从 SQLite 表中检索最后一个自动递增的 ID?

                  相关文章

                    <bdo id='v7Q4B'></bdo><ul id='v7Q4B'></ul>
                • <small id='v7Q4B'></small><noframes id='v7Q4B'>

                  <tfoot id='v7Q4B'></tfoot>

                  <i id='v7Q4B'><tr id='v7Q4B'><dt id='v7Q4B'><q id='v7Q4B'><span id='v7Q4B'><b id='v7Q4B'><form id='v7Q4B'><ins id='v7Q4B'></ins><ul id='v7Q4B'></ul><sub id='v7Q4B'></sub></form><legend id='v7Q4B'></legend><bdo id='v7Q4B'><pre id='v7Q4B'><center id='v7Q4B'></center></pre></bdo></b><th id='v7Q4B'></th></span></q></dt></tr></i><div id='v7Q4B'><tfoot id='v7Q4B'></tfoot><dl id='v7Q4B'><fieldset id='v7Q4B'></fieldset></dl></div>
                • <legend id='v7Q4B'><style id='v7Q4B'><dir id='v7Q4B'><q id='v7Q4B'></q></dir></style></legend>