I have a table table_A, it has ten rows, id_Row of table from 1 to 10. And I set id_Row is "Identity Increment = true" - Obligate. But now, I want to copy the 7th row => table_A will have 11 rows (and paste into this table_A). I wrote:
INSERT INTO table_A SELECT * FROM table_A WHERE id_Row = '7'
But I got an error:
An explicit value for the identity column in table 'table_A' can only be specified when a column list is used and IDENTITY_INSERT is ON.
Can someone please let me know how to fix it?