You cannot use the SELECT into statement to add an identity column to the table ' #tb, which already has the column ' ID ' that inherits the identity attribute.
Source: Internet
Author: User
You
cannot use the SELECT into statement to add an identity column to the table ' #tb, which already has the column ' ID ' that inherits the identity attribute. "cannot use the SELECT into statement to add an identity column to the table ' #tb ' in which the column ' ID ' that inherits the identity attribute is already in the table. ”
This is wrong. Regardless of the index.
No matter what. You came across this source table with an ID. If you want to insert into a table with an ID, you can convert the self-added column property of the source table. For example:
Select Nid=identity (int,0,1), convert (INT,ID) as ID into # from table 1 (table 2)
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.