INSERT INTO [db].[schema].[table1]
([id], [status], [date], [username],
[date2], [username2], [description])
VALUES (1, 'A', '2021-01-01T05:30:44', 'abc',
'2021-04-01T05:30:44', 'xyz', 'DESC')
GO 10
I want to auto increment the primary key so I can insert 10 records with different primary keys of 1,2,3,4...etc.
Is there a way to do this?
The table is already created, I can't change it. Would it be better to create another table and insert the data from there into my table?