Since you cannot alter an identity column in SQL Server once it's been created, you'd really only have the option of creating a new table with the new desired structure (including the INT IDENTITY
column that increments by 2), then copying over the existing data from the existing table, drop the existing table and rename the new table to the table name desired.
Of course, if you have any other tables referencing your existing table with a foreign key constraint, this would make things ever more challenging and involved.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…