sybase

    技术2022-05-20  31

    向表中添加一个identity字段。

    alter table 表 add 字段 int identity not null go

    添加自增长列

    ALTER TABLE 表 ADD 字段 INT IDENTITY 

     

    删除

    alter table 表 drop 字段 


    最新回复(0)