SQL Server为字段添加默认值 if not exists ( select * from sys.columns as c join sys.objects as o on c.default_object_id = o.[object_id] where c.[object_id] = object_id('DriverTable') and c.name = 'DriverVan' ) begin alter table DriverTable add default(0) for…
新建此表时把ID设为INT类型,然后设Identity为yes,种子为1递增就可以了.如果这张表已经建了,你在最后加一个字段叫ID,然后和上面一样操作,然后保存即可自增.(一定要设置完在保存) alter table student add id int identity(1,1) 保存后新增了一列id,在表 设计 里把原主键删掉,把id移到第一列位置,id设置为主键即可. 注意:identity最好用在所有数据都创建好最后添加,不然序号改变不了还占用内存…