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

问题描述

朋友们,
我想将标识列的起始值设置为111而不是0.
如何设置此值?
谢谢大家

Hi friends,
I want to set starting value for identity column as 111 rather than 0.
How can I set this value ?
Thank you all

推荐答案


DBCC CHECKIDENT (<tablename>, RESEED, <newvalue>)


将该字段设置为您想要的任何内容.例如:


to set the field to whatever you want. For your example:

DBCC CHECKIDENT (<tablename>, RESEED, 110)



请注意,这只会影响新记录.已经存在的记录将不会受到影响.



Note that this will only affect new records. Already existing records will not be affected.


这篇关于如何从我们期望的值中设置标识列的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 02:16