如何重置我的主键

如何重置我的主键

本文介绍了如何重置我的主键的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我如何重置我的主键而不被截断?需要帮助.

谢谢!!!

hi all,

how do i reset my primary key without truncating? need help pls.

Thanks!!!

推荐答案

DBCC CHECKIDENT(tablename, RESEED, 1)



其中1是表的新起始identity.

问候,
爱德华



Where 1 is the new starting identity of the table.

Regards,
Eduard


这篇关于如何重置我的主键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 17:52